Incremental Delta Compression With Dynamic Reference Values
Find Innovative SolutionsGenerate Solutions
Solution Overview
Problem
Current data compression methods are inefficient in terms of memory usage and bandwidth, especially for data sets with monotonic or sequential values, as they store each value separately rather than utilizing incremental differences.
Innovation Solution
The method employs a variable reference value that is updated as values are added to the compressed data set, calculating deltas between consecutive values and storing only these deltas, with the last value stored as the reference, allowing for more compact representation and faster access.
Engineering Contradictions & Design Principles
Engineering Contradiction Analysis
1Quantity of substance
If each value is stored separately in the data set, then the data can be easily accessed and retrieved, but the storage requirements and bandwidth usage increase significantly
Solution Approach 1:
The patent segments the data storage into two distinct components: a reference value stored separately and delta values stored in a compressed format. This segmentation allows the reference value to be accessed directly while delta values consume minimal space, resolving the contradiction between reduced storage requirements and maintained data accessibility.
Solution Approach 2:
The patent introduces delta values as an intermediary representation between the original data values and the stored format. Instead of storing actual values, the system stores differences (deltas) from a reference point, which significantly reduces storage requirements while enabling efficient data reconstruction through simple arithmetic operations.
2Quantity of substance
If incremental deltas are used to compress the data set, then storage efficiency and bandwidth usage improve, but the complexity of data compression and decompression increases
Solution Approach 1:
The patent changes the parameter representation from absolute values to relative differences (deltas). By storing the difference between consecutive values rather than the values themselves, the system achieves significant compression for sequential or monotonic data while keeping the compression algorithm simple—essentially a matter of subtracting the reference value from each subsequent value.
3Device complexity
If a single reference value is used for compression, then the compression structure remains simple, but the ability to handle large variations in data values is limited
Solution Approach 1:
The patent implements a dynamic reference value system where the reference value can be updated as new data arrives or as the data distribution changes. This dynamic approach allows the compression system to adapt to varying data ranges and patterns while maintaining a relatively simple compression structure, resolving the contradiction between structural simplicity and adaptability.
Data Source
AI summary
An apparatus comprises a processor to receive a plurality of values of a data set, the data set comprising a first value, a second value, and a third value; calculate and store a first delta corresponding to the first value, wherein the first delta is equal to the difference between the first value and the second value; and calculate and store a second delta corresponding to the second value, wherein the second delta is equal to the difference between the second value and the third value.


