Data Caching | Dagster Glossary

Back to Glossary Index

Data Caching

Store expensive computation results so they can be reused, not recomputed.

Definition of caching

Caching is the process of storing the result of an expensive computation so that it can be reused in future instead of being calculated each time it is needed. This is a very important concept in data engineering, particularly when dealing with large datasets or complex transformations.

The main purpose of caching is to increase performance and reduce the computational load on your system. It reduces the time required for data processing tasks by storing frequently accessed data or results of expensive computations in a cache memory, which is a high-speed storage layer.

If you are doing a data-intensive task like running a complex SQL query on a huge dataset, the first time you run it, it might take a considerable amount of time. But if you cache the result, the next time you run the same query, instead of actually running the computation again, you can just retrieve the result from the cache. This way, you can drastically reduce the execution time for the repeated task.

Example of caching in Python

In Python, there are several ways to implement caching. The simplest one is to use the functools.lru_cache decorator from the Python Standard Library. LRU stands for Least Recently Used, and the functools.lru_cache decorator implements a LRU caching algorithm for your functions.

Here's a very basic example:

Let's consider a function that calculates the n th Fibonacci number, which is a common example for demonstrating the use of caching. The Fibonacci sequence is a series of numbers where a number is the sum of the two preceding ones. The sequence looks like this: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ...

The recursive approach to calculating the nth Fibonacci number is quite inefficient because it ends up recalculating smaller Fibonacci numbers multiple times. Let's see how much we can speed it up by using caching.

Here's the Fibonacci function without caching:

def fib_no_cache(n):
    if n < 2:
        return n
    else:
        return fib_no_cache(n-1) + fib_no_cache(n-2)

# Let's see how long it takes to calculate the 35th Fibonacci number
import time
start = time.time()
print(fib_no_cache(35))
end = time.time()
print('Time without caching:', round(end - start,2), 'seconds')

Running this on your local computer might yield this type of output:

9227465
Time without caching: 1.87 seconds

And here's the same function with caching using the functools.lru_cache decorator:

from functools import lru_cache
import time

@lru_cache(maxsize=None)
def fib_with_cache(n):
    if n < 2:
        return n
    else:
        return fib_with_cache(n-1) + fib_with_cache(n-2)

# Let's see how long it takes to calculate the 35th Fibonacci number
start = time.time()
print(fib_with_cache(35))
end = time.time()
print('Time with caching:', round(end - start,6), 'seconds')

Which will yield something like this:

9227465
Time with caching: 2.8e-05 seconds

Note: These times will vary based on the hardware and other running processes on your machine.

Clearly, the version with caching is significantly faster, especially as n increases. This is because with caching, each Fibonacci number is only calculated once and then stored for future use, whereas the version without caching recalculates each Fibonacci number many times.

For more advanced caching needs, such as distributed caching or disk-based caching, you might need to use more sophisticated tools, such as joblib for disk caching or Redis and Memcached for distributed caching.

Remember that caching is not always the best solution and it's not free. Caching uses memory or disk space to store results, and it can also make your code more complex, and debugging more time consuming. You should use caching wisely and only for operations that are actually expensive and are likely to be repeated with the same input.


Other data engineering terms related to
Data Management:
Dagster Glossary code icon

Append

Adding or attaching new records or data items to the end of an existing dataset, database table, file, or list.
An image representing the data engineering concept of 'Append'

Archive

Move rarely accessed data to a low-cost, long-term storage solution to reduce costs. Store data for long-term retention and compliance.
An image representing the data engineering concept of 'Archive'
Dagster Glossary code icon

Augment

Add new data or information to an existing dataset to enhance its value.
An image representing the data engineering concept of 'Augment'

Auto-materialize

The automatic execution of computations and the persistence of their results.
An image representing the data engineering concept of 'Auto-materialize'

Backup

Create a copy of data to protect against loss or corruption.
An image representing the data engineering concept of 'Backup'
Dagster Glossary code icon

Batch Processing

Process large volumes of data all at once in a single operation or batch.
An image representing the data engineering concept of 'Batch Processing'
Dagster Glossary code icon

Categorize

Organizing and classifying data into different categories, groups, or segments.
An image representing the data engineering concept of 'Categorize'
Dagster Glossary code icon

Deduplicate

Identify and remove duplicate records or entries to improve data quality.
An image representing the data engineering concept of 'Deduplicate'

Deserialize

Deserialization is essentially the reverse process of serialization. See: 'Serialize'.
An image representing the data engineering concept of 'Deserialize'
Dagster Glossary code icon

Dimensionality

Analyzing the number of features or attributes in the data to improve performance.
An image representing the data engineering concept of 'Dimensionality'
Dagster Glossary code icon

Encapsulate

The bundling of data with the methods that operate on that data.
An image representing the data engineering concept of 'Encapsulate'
Dagster Glossary code icon

Enrich

Enhance data with additional information from external sources.
An image representing the data engineering concept of 'Enrich'

Export

Extract data from a system for use in another system or application.
An image representing the data engineering concept of 'Export'
Dagster Glossary code icon

Graph Theory

A powerful tool to model and understand intricate relationships within our data systems.
An image representing the data engineering concept of 'Graph Theory'
Dagster Glossary code icon

Idempotent

An operation that produces the same result each time it is performed.
An image representing the data engineering concept of 'Idempotent'
Dagster Glossary code icon

Index

Create an optimized data structure for fast search and retrieval.
An image representing the data engineering concept of 'Index'
Dagster Glossary code icon

Integrate

Combine data from different sources to create a unified view for analysis or reporting.
An image representing the data engineering concept of 'Integrate'
Dagster Glossary code icon

Lineage

Understand how data moves through a pipeline, including its origin, transformations, dependencies, and ultimate consumption.
An image representing the data engineering concept of 'Lineage'
Dagster Glossary code icon

Linearizability

Ensure that each individual operation on a distributed system appear to occur instantaneously.
An image representing the data engineering concept of 'Linearizability'
Dagster Glossary code icon

Materialize

Executing a computation and persisting the results into storage.
An image representing the data engineering concept of 'Materialize'
Dagster Glossary code icon

Memoize

Store the results of expensive function calls and reusing them when the same inputs occur again.
An image representing the data engineering concept of 'Memoize'
Dagster Glossary code icon

Merge

Combine data from multiple datasets into a single dataset.
An image representing the data engineering concept of 'Merge'
Dagster Glossary code icon

Model

Create a conceptual representation of data objects.
An image representing the data engineering concept of 'Model'

Monitor

Track data processing metrics and system health to ensure high availability and performance.
An image representing the data engineering concept of 'Monitor'
Dagster Glossary code icon

Named Entity Recognition

Locate and classify named entities in text into pre-defined categories.
An image representing the data engineering concept of 'Named Entity Recognition'
Dagster Glossary code icon

Parse

Interpret and convert data from one format to another.
Dagster Glossary code icon

Partition

Data partitioning is a technique that data engineers and ML engineers use to divide data into smaller subsets for improved performance.
An image representing the data engineering concept of 'Partition'
Dagster Glossary code icon

Prep

Transform your data so it is fit-for-purpose.
An image representing the data engineering concept of 'Prep'
Dagster Glossary code icon

Preprocess

Transform raw data before data analysis or machine learning modeling.
Dagster Glossary code icon

Replicate

Create a copy of data for redundancy or distributed processing.

Scaling

Increasing the capacity or performance of a system to handle more data or traffic.
Dagster Glossary code icon

Schema Inference

Automatically identify the structure of a dataset.
An image representing the data engineering concept of 'Schema Inference'
Dagster Glossary code icon

Schema Mapping

Translate data from one schema or structure to another to facilitate data integration.
Dagster Glossary code icon

Secondary Index

Improve the efficiency of data retrieval in a database or storage system.
An image representing the data engineering concept of 'Secondary Index'
Dagster Glossary code icon

Software-defined Asset

A declarative design pattern that represents a data asset through code.
An image representing the data engineering concept of 'Software-defined Asset'

Synchronize

Ensure that data in different systems or databases are in sync and up-to-date.
Dagster Glossary code icon

Validate

Check data for completeness, accuracy, and consistency.
An image representing the data engineering concept of 'Validate'
Dagster Glossary code icon

Version

Maintain a history of changes to data for auditing and tracking purposes.
An image representing the data engineering concept of 'Version'