PERFORMING SET OPERATIONS ON VARIABLE-LENGTH DATA SEQUENTIALLY STORED AND INDEXED TO FACILITATE REVERSE READING

Information

  • Patent Application
  • 20180039663
  • Publication Number
    20180039663
  • Date Filed
    August 03, 2016
    8 years ago
  • Date Published
    February 08, 2018
    6 years ago
Abstract
A system, method, and apparatus are provided for performing set operations on variable-length data that has been stored and indexed to facilitate reverse reading. The set operation is performed on data records having any or all of multiple key/value pairs—such as a union of all data records having the key/value pairs, an intersection, or a difference. For each key/value pair, a tracking entity is initialized to identify a most recently stored record that has the key/value pair. Each record contains a key offset for each key that is common to the records, and the key offset stores an identity (e.g., offset to) the next most recently stored record that has the same value for the key. Each tracking entity is used to support traversal of the data records having the associated key/value pair, during which the set operation is performed to add qualifying records to a result.
Description
BACKGROUND

This disclosure relates to the field of computer systems and data storage. More particularly, a system, method, and apparatus are provided for performing set operations on variable-length data that has been indexed and sequentially stored in a manner that facilitates reverse reading of the data.


Variable-length data are stored in many types of applications and computing environments. For example, events that occur on a computer system, perhaps during execution of a particular application, are often logged and stored sequentially (e.g., according to timestamps indicating when they occurred) in log files, log-structured databases, and/or other repositories. Because different information is typically recorded for different events (e.g., different system metrics or application metrics), the records often have varying lengths.


When reading the recorded data in the same order it was written, it is relatively easy to quickly navigate the data and proceed from one record to the next, to find a requested record or for some other purpose. However, when attempting to scan the data in reverse order (e.g., to find the most recent record of a particular type or matching specified criteria), the task is more difficult because the storage schemes typically are not designed to enhance reverse navigation or scanning.


Snapshots of stored data may support concurrent access to the data. For example, multiple queries may target the data at the same time, possibly in the midst of write operations that change the data and/or add new data. To ensure accurate results, it may be preferable for each query to be executed against a copy or version of the data as it existed at the time of the query (e.g., to avoid tainting the data with the effect of write operations conducted after the query was received or initiated). However, making separate copies of stored data for different queries would be prohibitively expensive.


Performing set operations (e.g., union, intersection, difference) on variable-length data that has been stored and indexed to facilitate reverse reading is necessary in order to satisfy complex queries efficiently. Because the data are formatted for reverse reading, typical methods of searching for particular data (e.g., data records that have specified values for multiple key fields) will not be efficient and may not be useful. In addition, key/value databases have traditionally not supported such operations, which prevents them from supporting some complex queries.





DESCRIPTION OF THE FIGURES


FIG. 1 is a block diagram depicting a system in which variable-length data is sequentially stored in a manner that facilitates reverse reading, in accordance with some embodiments.



FIGS. 2A-B comprise a flow chart illustrating a method of facilitating reverse reading of sequentially stored variable-length data, in accordance with some embodiments.



FIG. 3 is a block diagram depicting sequential storing of variable-length data to facilitate reverse reading, in accordance with some embodiments.



FIG. 4 is a block diagram depicting indexed storage of variable-length data to facilitate reverse reading, in accordance with some embodiments.



FIG. 5 is a flow chart illustrating a method of appending a new entry to a data repository of sequentially stored, variable-length data, in accordance with some embodiments.



FIG. 6 is a flow chart illustrating a method of retrieving one or more sequentially stored variable-length records having a particular key value, in accordance with some embodiments.



FIG. 7 is a flow chart illustrating a method of capturing a snapshot of variable-length data records stored and indexed for reverse reading, in accordance with some embodiments.



FIG. 8 is a block diagram illustrating how references may be used to determine whether two records are the same record, in accordance with some embodiments.



FIG. 9 is a flow chart illustrating a method of performing a set operation on variable-length data that has been stored and indexed to facilitate reverse reading, in accordance with some embodiments.



FIG. 10 depicts an apparatus for facilitating reverse reading of sequentially stored variable-length data and/or indexing and sequentially storing such data, in accordance with some embodiments.





DETAILED DESCRIPTION

The following description is presented to enable any person skilled in the art to make and use the disclosed embodiments, and is provided in the context of one or more particular applications and their requirements. Various modifications to the disclosed embodiments will be readily apparent to those skilled in the art, and the general principles defined herein may be applied to other embodiments and applications without departing from the scope of those that are disclosed. Thus, the present invention or inventions are not intended to be limited to the embodiments shown, but rather are to be accorded the widest scope consistent with the disclosure.


In some embodiments, a system, method, and apparatus are provided for facilitating reverse reading of sequentially stored variable-length data records. Reading the data in reverse means reading, scanning, or otherwise navigating through the records in the reverse order from which they were stored. Because the records are of variable lengths, there may be wide variation in the sizes of the records.


In some embodiments, a system, method, and apparatus are provided for indexing and sequentially storing variable-length data records. In these embodiments, the index is stored with the stored data and facilitates rapid key-based data retrieval.


In some embodiments, a system, method, and apparatus are provided for taking snapshots of variable-length data records that have been stored and indexed to facilitate reverse reading. In these embodiments, a final record within the snapshot (e.g., based on time) is identified, and the index is copied and pruned as necessary to omit records not consistent with the snapshot (e.g., to omit data records stored after a final time corresponding to the snapshot).


In some embodiments, a system, method, and apparatus are provided for performing set operations (e.g., union, intersection, difference) on variable-length data records that have been stored and indexed to facilitate reverse reading. In these embodiments, an index is used to quickly scan the data records to find records that satisfy a query involving values for multiple key fields of the data.


Facilitating Reverse Reading of Sequentially Stored Variable-Length Data

In embodiments for facilitating reverse reading of sequentially stored variable-length data records, an efficient scheme is implemented to make it easier and faster to determine the size of a record, thereby allowing a reverse reader to quickly move to the beginning of the record in order to read the record and/or to continue the reverse reading process at the next record in reverse order.


In particular, after the record is stored in sequential order, the length of the record is stored with variable-length quantity (VLQ) encoding. With VLQ encoding, a binary representation of the record length (in bytes) is divided into 7-bit partitions. Each partition is stored in an 8-bit octet in which the most significant (or highest-order) bit indicates whether another octet follows the current one.


Specifically, if the record length requires more than one octet (i.e., at least 128 (or 27) bytes were needed to store the record), every octet except the last octet, which stores the least significant bits of the record length, will have a first value (e.g., 1) as the most significant bit (MSB), while the last octet has a second value (e.g., 0) as the most significant bit. If the record length requires only one octet to store (i.e., the record is less than 128 bytes long), that length is stored with the second value (e.g., 0) as the most significant bit.


However, records that are 128 bytes long, or longer, will still be of varying lengths, and current computing systems will require up to a total of ten octets (or bytes) to store a value representing the length (or size) of a given data record. In particular, a computer or other device that features a 64-bit processor will require up to ten octets to store a 64-bit value (with each octet containing up to 7 of the 64 bits).


This scheme works fine when reading or scanning sequentially stored variable-length data records in the order in which they were stored, because each octet storing a portion of the record's length can be consumed in order and the most significant bits will indicate when the record length value is complete. However, when reading the data in reverse order, the most significant bit of the final octet in the record length (i.e., the first octet that would be encountered when reading in reverse order) will always be 0 and the reader cannot immediately determine how many octets were used to store the record length.


Therefore, in some embodiments, when a variable-length record is stored, the record's length is stored afterward with VLQ encoding, and one additional byte is conditionally formatted and stored after the record length. Specifically, if the record length was stored in one octet/byte (i.e., the record is less than 128 bytes long), which has 0 as the most significant bit, nothing further is done. However, if more than one octet/byte was required to store the record length, then one additional byte is configured and stored after the record length. This additional byte stores the size (in bytes) of the record length, and the value 1 in its most significant bit. This additional byte may be said to store a “size of the size” value, because it stores the size (or length) of the value that identifies the size (or length) of the corresponding record. The “size of the size” byte and the VLQ-encoded record length may be collectively termed ‘size metadata’ for the accompanying record (i.e., the record that precedes the metadata).


When reverse-reading the sequentially stored variable-length data, from the end of the collection of records (e.g., at the end-of-file marker) or at the starting location of the most recently read record, the next byte in reverse order from the current offset is read. If its most significant bit is 0, the byte stores the size of the preceding record (the next record in reverse order) and the reader can identify the beginning of the record by subtracting that size (in bytes) from its current offset. If the most significant bit is 1, the lower seven bits identify the size of the record length value (in bytes). By subtracting that size from the current offset, the reader can identify the start of the VLQ-encoded record length. The record length can then be read to identify the length of the record (in bytes), which can be subtracted from the offset of the start of the VLQ-encoded record length to find the start of the record.



FIG. 1 is a block diagram depicting a system in which variable-length data is sequentially stored in a manner that facilitates reverse reading, in accordance with some embodiments.


System 110 of FIG. 1 includes data repository 112, which may be a log-structured database, a sequential log file, or some other entity. Of note, the repository specifically stores variable-length records in sequential manner (e.g., based on timestamps and/or other indicia). The records may contain different types of data in different implementations, without exceeding the scope of embodiments described herein.


System 110 also includes writer 114 and reader 116. Writer 114 writes new records to data repository 112 in response to write requests, with each new record being stored (immediately) after the previously stored record. Reader 116 traverses (e.g., and reads) records in reverse order from the data repository in response to read requests. Reader 116 may also traverse, navigate, and/or read records in the order in which they are stored, but in current embodiments the reader frequently or regularly is tasked to reverse-navigate the stored data. The reader may navigate the stored data (in either direction) not only to search for one or more desired records, but also to construct (or help construct) an index, linked list, or other structure, or for some other purpose (e.g., to purge stale data, to compress the stored data). Writer 114 and reader 116 may be separate code blocks, computer processes, or other logic entities, or may be separate portions of a single entity.


Write requests and read requests may be received from various entities, including computing devices co-located with and/or separate from system 110, other processes (e.g., applications, services) executing on the same computer system(s) that include system 110, and/or other entities.


For example, system 110 of FIG. 1 may be part of a data center or other cooperative collection of computing resources, and include additional or different components in different embodiments. Thus, the system may include storage components other than data repository 112, and may include processing components, communication resources, and so on. Although only a single instance of a particular component of system 110 may be illustrated in FIG. 1, it should be understood that multiple instances of some or all components may be employed. In particular, system 110 may be replicated within a given computing environment, and/or multiple instances of a component of the system may be employed.



FIGS. 2A-B comprise a flow chart illustrating a method of facilitating reverse reading of sequentially stored variable-length data, according to some embodiments. In other embodiments, one or more of the illustrated operations may be omitted, repeated, and/or performed in a different order. Accordingly, the specific arrangement of steps shown in FIG. 2 should not be construed as limiting the scope of the embodiments.


In these embodiments, one or more data repositories (e.g., databases, files or file systems) sequentially store the variable-length data as individual records, each of which has a corresponding length (or size) that can be measured in terms of bytes (or other units). The manner in which the records are stored facilitates their reading in reverse order, and the manner in which they are reverse-read (i.e., read in reverse order) depends on how they are stored.


In operation 202 of the illustrated method, a new set of data is received for storage. If not already in a form to be stored, it may be assembled into a record, which may involve compressing the data, encoding or decoding it, encrypting or decrypting it, and/or some other pre-processing. In some implementations, no pre-processing is required because the data can be stored in the same form in which it is received.


In operation 204, the end of the previously stored record is identified (including associated size metadata), which may be readily available in the form of a pointer or other reference that identifies a current write offset within the data repository. If the data are to be stored in a new data repository that contains no other records, this current write offset may be the first storage location of the repository.


In operation 206, the data are written with suitable encoding, which may vary from one implementation to another. Before, after, or as the data are written, the length of the written data record is determined (e.g., as a number of bytes occupied by the record).


In operation 208, the record length is written with variable-length quantity (VLQ) encoding, which is described above. Specifically, the binary representation of the record length is divided into 7-bit groups, starting from the least significant bit, so that if the length is 128 bytes or greater (i.e., length ≧27) only the group containing the most significant bits may contain less than 7 bits, which is padded with zeros to form a 7-bit group.


Each 7-bit group is stored after the data record in a separate octet (or byte), in order, from the most significant to least significant. The most significant bits (or sign bits) of all but the last (least significant) octet are set to 1 to indicate, when the record length is read in the same order in which it was written, that there is at least one more octet to be read in order to assemble the record length. The most significant bit of the last octet is set to 0 to indicate that it is the final portion of the record length. Similarly, if the record length is less than 128 bytes, and can be stored in a single octet, the most significant bit of that octet is set to 0.


In some alternative embodiments, however, the order of the octets is reversed so that the least significant octet is written first and the most significant octet is written last. In these embodiments, the most significant bits of the octets are coded in the same manner. That is, when multiple octets are written, the most significant bits in all but the final octet are 1, while the most significant bit of the final octet (or the only octet, if only one is required) is 0.


In operation 210, the data writer (e.g., writer 112 of system 110 of FIG. 1) or a process/entity that controls the writer determines whether the record length was 128 bytes or more or, in other words, whether more than one octet or byte was used to store the record length. If so, the method continues at operation 212; otherwise, the method advances to operation 220.


In operation 212, the ‘size of the size’, or the number of bytes needed to store the record length, is stored in the least significant bits of an additional octet/byte, and the value 1 is stored in the most significant bit. Because this ‘size of the size’ byte can store a value of up to 127 (in base-10), it can report a record length of up to 127 bytes, which corresponds to a record that is far larger than existing computer architectures can (or need to) accommodate (i.e., 2(127×7)−1).


In operation 220, a new data request is received—either a request to store a new set of data or a request to retrieve a previously stored set of data. If the request is a write request, the method returns to operation 202; if the request is a read request, the method advances to operation 222 (FIG. 2B). In some embodiments, such as when separate processes handle the different types of data requests, some operations may be handled in parallel.


In operation 222, the current read offset is identified or located (e.g., with a read pointer), which may be the end of the size metadata of the final record that was stored in the repository, or the end of some other set of size metadata. The value of one byte is subtracted from the current offset and that byte (which is the final byte of the size metadata of the previous or preceding record in the repository) is read.


In operation 224, the most significant bit of the current byte is identified. If the MSB has the value 0, the method continues at operation 226; otherwise, the method advances to operation 228.


In operation 226, the current byte stores the length (or size) of the preceding record (the ‘next’ record in reverse order), in bytes, and that value (up to 127 in decimal notation) is subtracted from the current offset in order to reach the start of the preceding record. The method then advances to operation 232.


In operation 228, the lower 7 bits of the current byte are extracted, which store the size of the length of the preceding record, in bytes. That value (up to 127 in decimal notation) is subtracted from the current read offset to identify the offset of the VLQ-encoded record length.


In operation 230, the record length is read and subtracted from the current offset to identify and reach the start of the preceding record (which makes it the ‘current’ record).


In operation 232, if the reverse navigation/traversal of the data records is finished (e.g., the current record is the last/only record sought in the read request), the method ends or returns to a previous operation (e.g., operation 220 to receive a new data request). Otherwise, the method returns to operation 222 to locate the start of the previous record.



FIG. 3 is a block diagram depicting sequential storing of variable-length data to facilitate reverse reading, according to some embodiments.


In these embodiments, data records 302 (e.g., records 302a, 302b) have varying lengths (or sizes), and are stored sequentially with accompanying size metadata 304 (e.g., metadata 304a, 304b). Any number of records (and corresponding size metadata) may be stored, and the repository of the data may be a text file, a log-structured database, or have some other form, and may reside on a magnetic or optical disk, a flash drive, a solid state drive, or some other hardware.


Illustrative size metadata 304b includes record length 306b, which identifies the length (e.g., in bytes) of corresponding data record 302b, and optional size of the size 308b, which, if present, identifies the size (or length) of record length 306b (e.g., in bytes).


As discussed above, in some embodiments, a size of the size value (e.g., size of the size 308b) is only added to the size metadata when the record length value is at least 128 bytes; representing the value therefore requires two or more bytes or octets of variable-length quantity encoding, which comprise record length 306b.


Storing and Indexing Sequentially Stored Variable-Length Data

In embodiments for indexing and sequentially storing variable-length data records, an index facilitates rapid key-based data retrieval. In some implementations, the index is stored separate from the database, file, log, or other repository that stores the data, and can be readily constructed or reconstructed by scanning the repository; in some other implementations it is stored with the data. As discussed above, the manner in which the data are stored facilitates reverse-scanning, so that the most recently stored records can be read first.


Within the repository, each data record includes some number of key fields (e.g., one or more), with each key having some number of possible values (e.g., two or more). For each possible value for each key field, the index stores offsets, pointers, or other references to a record (e.g., the most recently stored record) that includes that value for the corresponding key. That record (and every other stored record) includes, for each key field, an offset or other reference to another record (e.g., the next-most recently stored record) that has the same value for that key field. The index thus identifies a first record having each value of each key, and that record identifies a subsequent record having the same value for that key, and also identifies subsequent records having the values of its other key fields. Each subsequent record identifies yet other records having the same values for its key fields, and so on.


If no record in the repository has a given value for a given key, the index will store a predetermined value (e.g., null, zero). Similarly, for the last record (e.g., the oldest record) that has the given value for the key, the key's corresponding offset will have that same predetermined value.



FIG. 4 is a block diagram depicting indexed storage of variable-length data so as to facilitate reverse reading, according to some embodiments. In these embodiments, data are stored as records within data collection 450, which may be a file, a database, or have some other form or structure. Index 440 is associated with data collection 450.


Index 440 includes information for each of N keys 442 (or key fields) included in every data record. A given key in a given record may be a substantive value or may be null (or some other predetermined value) to indicate that it has no value for that record.


For each key 442, index 440 comprises a table (e.g., a hash table), list, or other structure that identifies values 444 of the key and corresponding offsets 446 to first (e.g., most recently stored) records having the values. Thus, for each value for each of the N keys, index 440 identifies (via an offset) a first record having a given value for a given key. As indicated above, if no record in data collection 450 includes a particular value 444 for a particular key 442, the corresponding offset 446 will be null or some other predetermined value (e.g., 0).


It may be noted that index information for a particular key 442 may be initialized at the time index 440 is created if all values for the key are known, or the index information (e.g., a table corresponding to the particular key) may be appended to as new values are encountered (e.g., as new data records are stored). For example, if the particular key corresponds to days of the week, then all seven values are known ahead of time. By way of contrast, for a key that corresponds to identifiers of members of a user community, new values will be continually encountered.


Illustrative entry 400 in data collection 450 comprises data portion 402 that stores a data record, metadata portion 404 that stores size metadata, and an offsets portion 406 that stores offsets to subsequent entries or data records. Similarly, the entry containing or associated with data record 402a includes the data record, size metadata 404a, and offsets 406a (offsets 406a1-406aN). Further, data record 402b has associated size metadata 404b and offsets 406b (offsets 406b1-406bN), data record 402c has associated size metadata 404c and offsets 406c (offsets 406c1-406cN), and the entry containing data record 402m also comprises size metadata 404m and offsets 406m (offsets 406m1-406mN).


Data records 402 in FIG. 4 may be stored in a similar or identical fashion to data records depicted in FIG. 3 (e.g., records 302a, 302b). For example, a record or other set of data may be stored as it is received at a database or other entity configured to write data to data collection 450. Size metadata 404 in FIG. 4 may be stored in a similar or identical fashion to size metadata depicted in FIG. 3 (e.g., size metadata 304a, 304b). In particular, size metadata in data collection 450 may comprise ‘size of size’ values that assist reverse navigation through data collection 450. Individual key offsets within offsets portion 406 of an entry may be stored in the same or similar manner to size metadata 404 (e.g., with variable-length encoding, with ‘size of the size’ bits).


With each entry of data collection 450, offsets portion 406 includes the same number of offsets, each one corresponding to one of keys 442. Thus, for N keys, each offset portion 406 includes N offsets. The order of offsets within offsets portions 406 may or may not match the order of keys 442 in index 440, but the offsets are stored in the same order among all offset portions 406 in data collection 450. This order is known to (e.g., may be programmed into) processes that scan, navigate, read from, write to, or otherwise traverse the data collection (e.g., to respond to queries, to store new data).


To aid the description of embodiments disclosed herein, offsets within an offsets portion 406 of an entry of data collection 450 may be termed ‘key offsets,’ while offsets 446 of index 440 may be termed ‘index offsets’.


In some implementations, both index offsets 446 and key offsets 406 are absolute offsets (i.e., from the start of data collection 450 or the start of a file or other structure that includes collection 450). In other implementations, both types of offsets are relative offsets. In yet other implementations, some offsets (e.g., index offsets) are absolute while others (e.g., key offsets) are relative.


Illustratively, when an index offset 446 is a relative offset, it may be measured from the start, the end, or some other point of index 440, or from the storage location of the index offset. When a key offset 406 in an entry in data collection 450 is a relative offset, it may be measured from the start of the entry, the start of the key offset, or some other point.


An offset (an index offset or a key offset) may identify the starting point (e.g., byte) of a target entry (e.g., the first byte of the entry's data record), the starting point of the offsets portion within a target entry, or the starting point of a specific key offset within a target entry. In the latter scenario, a scan or traversal of data collection 450 for some or all records having a particular value for a particular key can quickly navigate pertinent records by finding a first index offset 446 (for the particular value 444 of particular key 442), using that to identify a corresponding key offset 406 (for the same key) within a first entry, and thereafter following a sequence of key offsets in different entries to identify the records.


This is partially illustrated in FIG. 4, wherein three key offsets 406 (i.e., offsets 406m1, 406m2, 406mN) associated with data record 402m correspond to values for three keys 442 (i.e., keys 1, 2, and N). Because data record 402m is the last record (e.g., the most recently stored record) in collection 450, the values that keys 1, 2, and N carry within record 402m will be stored among values 444, and their corresponding offsets 446 will reference (i.e., be offsets to) key offsets 406m1, 406m2, and 406mN.


Similarly, key offsets 406m1, 406m2, 406mN for data record 402m are offsets to corresponding key offsets of other entries in collection 450. Thus, key offset 406m1 is an offset to key offset 406a1 (associated with data record 402a), key offset 406m2 is an offset to key offset 406b2 (associated with data record 402b), and key offset 406mN is an offset to key offset 406cN (associated with data record 402c).


The indexing and storage scheme depicted in FIG. 4 thus facilitates forward or reverse reading or scanning (using size metadata as described in a previous section for reverse navigation), as well as rapid access to some or all data entries having a specific value for a specific key field (using the corresponding index offset and key offsets).


In some embodiments, the term ‘record’ or ‘data record’ may encompass an entire entry in data collection 450, including the data and offsets portions, and possibly also encompassing the metadata portion. Thus, a reference (e.g., an offset) to a data record may comprise a reference to any portion of the entry that comprises the data record.



FIG. 5 is a flow chart illustrating a method of appending a new entry to an existing repository of sequentially stored, variable-length data, such as data collection 450 of FIG. 4, according to some embodiments. In other embodiments, one or more of the illustrated operations may be omitted, repeated, and/or performed in a different order. Accordingly, the specific arrangement of steps shown in FIG. 5 should not be construed as limiting the scope of the embodiments.


In operation 502, a set of data is received for storage. The data may be stored as is, meaning that the set of data is a complete data record (such as one of data records 402 of FIG. 4), or may be configured or formatted if necessary or desired (e.g., to encrypt or decrypt it, to apply some encoding) to form a data record.


For the value of each key field of the data record, the index associated with the data repository is scanned to identify the corresponding index offsets. For key values identified in the index but not represented in previously stored data, the index offset will be a predetermined value (e.g., null, 0). If the data record includes a new value for a given key, the value is added to the index.


In operation 504, the current write location within the data repository is identified (e.g., using a write pointer or write offset), and will be updated when the entry is complete.


In operation 506, the data record is written at the current write location. The size of the data record may be determined at this time, to assist in configuration of the size metadata.


In operation 508, immediately following the data record, the index offsets read from the index are stored in a predetermined order as key offsets (e.g., the order of the keys in the index, some other specified order). In some implementations, the index offsets may be converted in some way prior to being stored as key offsets. For example, if the index offsets are absolute offsets, they may be converted to relative offsets based on the starting points (e.g., bytes) of the key offsets before the key offsets are written.


In operation 510, the record length (i.e., the entry's size metadata) is written following the last key offset, in the same or a similar manner as discussed in the previous section. This operation may therefore include determining whether a ‘size of the size’ byte is needed, and including that byte in the record length if it is required.


For the purpose of measuring the size of a data record, the key offsets may be considered part of the record. In this case, when the size metadata is later read, it directly identifies (an offset to) the start of the data record. In some implementations, however, the key offsets may not be considered part of the data record for the purpose of computing the size metadata. Because the number of key offsets is known (i.e., the number of key fields in every data record), and their sizes may be predetermined, the storage space occupied by the key offsets can be easily computed and accounted for when (reverse) scanning entries in the data repository.


Thus, key offsets may be of fixed size, which may be determined by the size (or a maximum size) of the data repository. As one alternative, key offsets may be formatted and stored in the same manner as size metadata portions of entries illustrated in FIGS. 3 and/or 4 (e.g., with variable-length encoding).


In operation 512 the index is updated. Specifically, for each key value of the data record, the corresponding index offset is updated to store an offset to the corresponding key offset of the data record's entry in the data repository.


Although the method of FIG. 5 assumes one or more entries were previously stored in the data repository, a method of storing a first entry in an empty or new data repository may be readily derived from the preceding discussion. Illustratively, the entry would be stored at a first storage location in the repository (formatted as indicated above), and an index would be created or initialized based on values of the key fields of the data record and offsets to the entry (or to key field offsets within the entry).



FIG. 6 is a flow chart illustrating a method of retrieving one or more sequentially stored variable-length records having a particular key value, according to some embodiments. In other embodiments, one or more of the illustrated operations may be omitted, repeated, and/or performed in a different order. Accordingly, the specific arrangement of steps shown in FIG. 6 should not be construed as limiting the scope of the embodiments.


In operation 602, a query is received regarding one or more records, within a data repository, that have a particular value for a specified or target key. For example, some number of records may be desired that pertain to a particular member of a user community; that have timestamps that include the same month, day, hour or other time period; that reference a content item having a particular identifier; etc.


In operation 604 the index for the data repository is consulted to identify, for the specified value for the target key, an index offset to a first matching record (e.g., the most recently stored matching record).


In operation 606, the index offset is used or applied to locate the matching record/entry in the data repository. In some embodiments, for example, the index offset may identify the starting point of the data record (i.e., the data portion of the entry); in other embodiments, it may identify the start of the target key offset (i.e., the key offset corresponding to the target key); in yet other embodiments it may identify some other portion of the matching data record's entry.


In optional operation 608, the data record may be accessed if necessary or desired. For example, the query may request some portion of the data of matching data records. Conversely, simply a count of matching records may be desired, in which case the data record need not be read.


If the data record does need to be read, and the offset that led to the current record identified the start of the target key offset, in the illustrated method the rest of the key offsets after the target key offset are skipped to access the entry's size metadata, which are applied as described in the previous section to access the start of the data record.


In operation 610, a determination is made as to whether the search/navigation is complete. Illustratively, if only a subset of all matching records was required (e.g., a specified number of records, all records within some time period or matching other criteria), the search may be complete and the method advances to operation 614.


Otherwise, if the search is not complete, in operation 612 the target key offset of the current matching record is read to obtain an offset to a next matching record (e.g., the next most recently stored matching record), and the method then returns to operation 606.


In operation 614, a result is returned if necessary or required, which may include data extracted from one or more matching records, a count of some or all matching records, and/or other information.


It may be noted that if the index for the data repository is not available or is inaccessible, the format in which data are stored allows rapid key value-based retrieval of records. In particular, the size metadata of entries in the repository facilitates reverse-scanning of the entries until a first (most recent) entry having the target key value is found, after which the key offsets of matching entries can be quickly traversed. Similarly, the index can be readily reconstructed by reverse-scanning the data to find active values for the key field(s).


Capturing Snapshots of Variable-Length Data Sequentially Stored and Indexed to Facilitate Reverse Reading

In embodiments for capturing snapshots, an efficient scheme is implemented to provide data consistency for each separate query executed on the stored data, without having to create or maintain copies of the data. In these embodiments, the data are stored and indexed as discussed in previous sections, and query-specific copies of the data index or a portion of the data index (e.g., the index illustrated in FIG. 4) may be created as needed, possibly depending upon the query.


For example, for a complex query that requires looking up data for multiple keys and/or multiple values of each key, creating a snapshot for the query may involve creation of a copy of the data index that is consistent with the parameters of the query (e.g., regarding a date range or other time interval, regarding a particular set of data records). This may involve copying the entire index and pruning it to remove references to data records that are inconsistent with the query parameters (e.g., outside the date range, not part of the target set of records).


As another example, for a query that is less complex, such as one that seeks records corresponding to a relatively low number of keys or key values, capturing a snapshot may involve incrementally creating a copy or version of the index that is consistent with the query parameters (e.g., incrementally copying portions of the index needed as the query progresses). For an even simpler query, such as one that seeks only a single data record, a snapshot may employ only a virtual copy or version of index, meaning that the live index is used to perform the query instead of creating a separate copy.


In these embodiments, a snapshot not only supports execution of one or more queries, but may also (or instead) be used to perform a rollback of the stored data. For example, if it is determined that the data was corrupted as of a certain time or after a particular record was stored, a snapshot may be created to capture the data configuration at (or before) that time, and then may be used to roll back the data to eliminate later (and possibly corrupt) data records.



FIG. 7 is a flow chart illustrating a method of capturing a snapshot of variable-length data records stored and indexed for reverse reading, according to some embodiments. In one or more embodiments, one or more of the steps may be omitted, repeated, and/or performed in a different order. Accordingly, the specific arrangement of steps shown in FIG. 7 should not be construed as limiting the scope of the embodiments.


The illustrated method may be used in environments in which the variable-length data is stored and indexed as discussed above in conjunction with FIGS. 3 and 4, and reference may be made to these figures to aid the description. As indicated above, the snapshot may be necessary (or helpful) during execution of one or more queries or may help a data rollback, or may be done for some other purpose (e.g., to facilitate a backup operation).


In operation 702, an ending point of the snapshot is identified, such as a time or a specific data record. For example, if a snapshot is desired as of a specific time on a particular date, the ending point will be that time/date, and the last data record stored as of that time/date can be readily determined (e.g., by timestamp, by the location of a write pointer as of the time/date). As another example, if the snapshot is desired in conjunction with a particular data record or an event that can be associated with a particular record (e.g., storage of a record having a particular set of key values), the ending point will be that data record.


In operation 704, the last data record to be included in the snapshot is identified, using its offset within data collection 450, for example. For clarification and to avoid confusion with other offsets used herein (e.g., index offsets, key offsets), the offset of the last data record to include in the snapshot may be referred to as the snapshot offset.


Depending on the amount of time that has elapsed since the time/date or the event associated with the end of the snapshot, any number of data records (i.e., zero or more) may follow the snapshot's final data record in data collection 450. Thus, the older the ending time/date of the snapshot, the more records will have been added to the data collection after the snapshot offset.


In operation 706, a copy of the live index (e.g., index 440 for data collection 450) is made. If the snapshot can be limited to a particular set of keys (e.g., in order to facilitate a set of queries that use those keys and no others), the copy may be limited accordingly. It may be noted that the index need not be locked during this copy operation. Through the pruning process discussed below, any inconsistencies in the index due to changes made after the ending point of the snapshot will be removed.


Then, for each value 444 of each key 442 in the index, in operation 710 a pruning operation is conducted if/as necessary, to ensure that each corresponding index offset 446 identifies a data record within the snapshot. More specifically, each offset 446 is examined to determine if the offset is before (e.g., earlier than) or equal to the snapshot offset. If so, processing of the current key value is terminated and the processing proceeds to the next key value via a loop.


If, however, the index offset is beyond (e.g., past, later than) the snapshot offset, the record identified by the index offset is visited in order to read key offset 406 for the key value and thereby identify or locate the previous record that has the same value for the same key. That key offset may replace the index offset in the copy of the index, but more importantly is then compared with the snapshot offset to determine if further pruning (and reverse traversal of the data collection) is required. In this manner, each index offset is pruned to identify a latest or most recent data record that belongs in the snapshot.


In the method of FIG. 7, some or all offsets (e.g., snapshot offset, index offsets, key offsets) are absolute offsets, thereby promoting rapid comparison of record locations to facilitate the pruning operation(s). In other implementations, however, some offsets) may be relative. For example, if the key offsets are expressed as relative values, reverse traversal through the data may be hastened.


Both the snapshot offset and the index offsets may be of the same type (i.e., both absolute or both relative), so as to allow rapid identification of the keys/key values that need to be pruned. Otherwise, determining whether a given index offset exceeds the snapshot offset (in which case the corresponding key/key value must be pruned) may require some conversion or extra calculation.


Also, in the method of FIG. 7 some or all offsets are to the start of individual data records. This may facilitate a determination as to whether pruning is required for a particular key/key value, because simple comparisons of index offsets to the snapshot offset will show where pruning is required, but may slightly complicate the process of traversing the data during the pruning. In other implementations, the offsets may be to other portions of the data records, which may hasten traversal of the data during pruning.


In some other methods, some measure of the complexity or breadth of a query on data collection 450 is obtained before determining how to capture a snapshot. In some illustrative implementations in which logic configured to query data collection 450 also performs the method of capturing the snapshot, that logic may analyze the query in conjunction with creation of the snapshot (e.g., to aid its execution). In some other implementations, some other entity may perform the analysis and an indication of the estimated complexity may be received with the query.


If the query is determined sufficiently complex (e.g., it appears to require looking up a relatively large number of keys and/or key values), the snapshot may be taken using a process similar to that of FIG. 7, wherein a complete copy of the live data index is made and then pruned, and only afterward is the query executed (using the copy of the index).


If the query is determined to be very simplistic (e.g., only requires retrieval of data matching one value of one key), no copy of the live index may be made. Instead, the index is used to find the index offset for the one key value, and the data may be traversed (in reverse order) until data that does not belong in the snapshot is passed by (i.e., until the first record that is less than or equal to the snapshot offset is encountered), after which the query may operate.


For a query between the extremes of complex and simple, a copy of the live index may be assembled incrementally. In these cases, as each key or key value that requires lookup is encountered in the query, the corresponding key value and index offset are copied and pruning is applied as necessary to ensure the incremental index is consistent with the snapshot.


Performing Set Operations on Variable-Length Data Sequentially Stored and Indexed to Facilitate Reverse Reading

In embodiments for supporting set operations on variable-length data that has been stored and indexed for reverse reading, an efficient scheme is implemented that obviates the need to create or maintain multiple copies of the data. For example, in order to find the intersection of two sets of data records (e.g., records matching specified values for multiple different keys), instead of copying the data to create (and then merge) separate data sets for each key or key value, the data may be traversed in place to find records that match the intersection criteria. In these embodiments, the data are stored and indexed as discussed in previous sections.


As described previously, index offsets 446 of index 440 in FIG. 4 can be used to find initial (e.g., the most recent) entries or data records in data collection 450 that have specified values for specified keys; thereafter, the records' key offsets identify subsequent records having the same values for the same keys. When attempting to satisfy a query that requires a set operation, and especially when values of multiple keys are at issue, one problem that can be expected while traversing the data collection is that of determining whether two entries or records that have been reached by following key offsets 406 associated with different keys are the same or different entries or records.


More particularly, a set operation may require separate traversal of the data collection for each key or key value involved in the query, and when matching key values are found, some additional processing may be required to determine whether the values are part of the same data record or different data records. Just finding these values among the data collection is not enough; efficiently performing the necessary set operation(s) requires some analysis to determine whether a given data record satisfies or does not satisfy the query parameters.


For example, a union operation on data collection 450 may involve values of multiple different keys and/or multiple different values of a single key. To find all pertinent records, the data collection may be separately and simultaneously traversed for each key/value pair. For each key/value pair to include in the union, the corresponding index offset 446 and key offsets 406 are used to find records having the specified value for the specified key. The first time a given data entry is visited, it may be added to the solution set; if it is visited again as part of the traversal of a different key/value traversal, it can be skipped over. Thus, if the separate traversals of the data collection for different keys or key values land on the same entry, that record should be added to the result set only once.


An intersection operation on data collection 450 may also involve multiple different keys and corresponding values, and/or multiple different values of a single key if a key field can simultaneously have multiple values. Performing the intersection requires the data collection to be searched to find records that have all specified values for all specified keys, and again may involve separate, simultaneous traversals of the data collection for each key/value pair. However, only when all specified key/value pairs are found in one data record is that record added to the solution set. Thus, it will be helpful to determine when the separate traversals visit the same entry.


Similarly, a difference operation on data collection 450 may involve multiple different keys and corresponding values, and/or multiple different values of a single key if a key field can have multiple values simultaneously. Performing the difference requires the data collection to be searched to find records that have first values for a first set of keys but not second values for a second set of keys. As each data record is found that has a target value for a specified key, it is added to the solution set only if it does not have the other target value(s) for the other specified key(s). If the separate traversals for the first set of keys and the second set of keys visit the same entry as part of the difference operation, that entry should be omitted from the result set.



FIG. 8 is a flow chart illustrating a method of performing a set operation on variable-length data that has been stored and indexed to facilitate reverse reading, according to some embodiments. In one or more embodiments, one or more of the steps may be omitted, repeated, and/or performed in a different order. Accordingly, the specific arrangement of steps shown in FIG. 8 should not be construed as limiting the scope of the embodiments.


Although the method is described as performing an intersection operation on a data collection of variable-length data records (such as data collection 450 of FIG. 4), from the following description one of ordinary skill in the art will recognize how to perform a different set operation.


In operation 802, a query is generated or received that requires an intersection operation. For example, a member of a professional network, a social network, or some other application or service that features an online user community may wish to find other members that satisfy multiple criteria (e.g., attended a particular educational institution, works for a particular employer, holds a particular position, has a particular job title).


The illustrated method involves the use of two criteria, meaning that all data records that have a first specified value for a first specified key field and a second specified value for a second specified key field should be included in the solution. Each specified key and its corresponding specified value may be referred to as a target key/value pair. The method is readily adaptable for use with more keys and/or with multiple values of a single key.


Thus, from the query or in association with the query, multiple key/value pairs are identified. These key/value pairs correspond to data records involved in the set operation, in that the set operation is applied to records that have the key/value pairs.


In operation 904, an index (e.g., index 440 for data collection 450 of FIG. 4) is consulted to find offsets to the most recently stored data entries that have the key/value pairs. If any of the index offsets for the specified keys are null, empty, zero, or otherwise have no data, the data collection contains no records that have the corresponding key/value pair, and the method is aborted because the intersection will be the empty set. Assuming, however, that at least one data record has each key/value pair, none of the keys' index offsets will be empty or null, and the method continues at operation 906.


In operation 906, for each key/value pair involved in the intersection, a separate tracking entity (e.g., a pointer, an offset) is initialized to track and assist the traversal of data entries having the specified value for the specified key. A first tracking entity will be associated with navigation of records having a first key/value pair, a second tracking entity will reflect navigation of records having a second key/value pair, and so on.


The initialization of a tracking entity may entail copying the value of the index offset of the tracking entity's corresponding key/value pair, which was read in operation 904. As described previously, the index offset may identify the starting address of (or offset to) the data record, the data record's metadata, the key offset corresponding to the key, or some other location in or associated with the data record or entry. Thus, when a tracking entity is said to ‘identify’ a data record or entry, it has a value or status that identifies a location within the data record/entry or some element of the data record/entry.


In operation 908, it is determined whether both (or all) of the tracking entities currently identify the same data entry. If so, a member of the solution set for the intersection has been found. In different implementations and/or different scenarios, this determination may be made in different ways.


For example, if a union is being calculated for different values of a single key, then the tracking entities may be co-located whenever they identify the same entry (e.g., they may point to or identify the same location of the same data entry, such as the key offset of the single key). In this scenario, just comparing the tracking entities' values or states will reveal whether they identify the same entry or record.


As another example, in some implementations key offsets within data entries of the data collection (e.g., offsets 406 for records 402 of data collection 450 of FIG. 4) have fixed positions within their data entries (e.g., positions 1 through N when there are N keys (N≧1)). In these implementations, each data entry identified by a tracking entity is navigated (e.g., from the key offset identified by the tracking entity) to the starting address of the first key offset, the starting address of the record's metadata, the starting address of the data record, or some other predetermined location within the data entry, the data record, or its metadata. The locations identified for each key are then compared. If they are the same, then the tracking entities currently identify the same data entry.


As already mentioned, key offsets of a data entry may be stored to facilitate reverse reading, which will make it easy to navigate from a given key offset to any other (earlier) portion of the same entry. Navigation to some points (e.g., the first key offset, the end of the last key offset, another key offset) is also easy if the key offsets are of fixed length in addition to being in a predetermined order.


In some other implementations, determining whether two tracking entities identify the same data entry or record involves using one of them as a reference and, from the other entity, determining whether the reference is the same data entry or record. In these implementations, the tracking entities point to (or are offsets to) key offsets corresponding to their associated keys. Thus, one of the tracking entities identifies its corresponding key offset in one data entry, while the second tracking entity identifies its corresponding key offset in a second data entry. The question is whether the two data entries are the same.


One of their locations is selected as the reference, and may be termed the ‘reference’ key offset, which is located in a ‘reference’ data entry or record. The other tracking entity's location may be termed a ‘non-reference’ key offset and is located in a ‘non-reference’ data entry or record. Then, the distance (e.g., in bytes) between the non-reference key offset in the non-reference data entry and the reference key offset in the non-reference data entry is calculated. This calculation may be trivial if the key offsets have fixed sizes, or may require traversal of the key offsets if they are not of fixed size.


Finally, based on the calculated distance, it can be determined whether the non-reference key offset and the reference key offset are in the same entry. In particular, if the difference between the non-reference key offset and the reference key offset within the non-reference data entry matches the difference between the two tracking entities' values, the tracking entities must identify the same entry or record; if not, they identify different entries.


An example of the use of references to determine whether two data entries or records are the same is illustrated in FIG. 8. FIG. 8 depicts reference entry 800i and non-reference entry 800j. It is unknown whether they are the same or different entries or records.


A first tracking entity 801a currently identifies key offset 806i2 of the reference entry, while a second tracking entity 801b currently identifies key offset 806jN of the non-reference entry. Thus, tracking entity 801a is associated with key 2 and tracking entity 801b is associated with key N (out of N keys).


Tracking entity 801a is chosen as the reference entity, and so the second key offset of entry 800i is designated reference offset 850i of the reference entry, and the second key offset of entry 800j is designated reference offset 850j of the non-reference entry. Similarly, the Nth key offset of entry 800j is designated non-reference offset 852j of the non-reference entry, while the Nth key offset of entry 800i is designated non-reference offset 852i of the reference entry.


It should be noted that the actual addresses or offsets of reference offset 850j and non-reference offset 852i are not yet known; they are identified because they will be used in the determination as to whether entries 800i and 800j are in fact the same data entry.


Then, the difference is calculated between non-reference offset 852j and reference offset 850j in non-reference entry 800j. This may be done by traversing the key offsets (e.g., through reverse-reading), by considering the number of intervening key offsets (e.g., if the key offsets are of fixed size), or in some other manner. If the key offsets are traversed, identifying the beginning of reference offset 850j may inherently indicate (based on its address or offset) whether it is the same as reference offset 850i, in which case the determination is complete.


Otherwise, the difference can be applied to non-reference offset 852j to see if it yields reference offset 850i (or vice versa), in which case the entries are the same.


In some implementations or scenarios, the tracking entity chosen as the reference is the one that identifies the newer position (more recently written) within the data collection. This is appropriate, for example, when the key offsets are not stored in a manner described above that facilitates reverse reading. In particular, because it will be easier to navigate ‘forward’ in the data (instead of in reverse), it will be easier to calculate the distance from an earlier written key offset toward a later written key.


In some other implementations or scenarios, the tracking entity chosen as the reference may be the one that identifies the older position (less recently written) within the data collection. For example, if the key offsets were stored to facilitate reverse reading, it may be faster to navigate them in the reverse order from which they were written.


If the tracking entities identify the same data entry or record, it is added to the result set or solution set in operation 910.


In operation 912, both/all tracking entities are advanced to continue their traversal of the data collection. Specifically, the key offsets corresponding to the entities' associated keys are read and used to identify the next oldest data entry or record that has the target key/value pair, if one exists. Those key offsets may be used as the new values of the tracking entities. The method then advances to operation 930.


In operation 920, the tracking entities do not identify the same data entry; therefore, one of them must be advanced to the next record having the target key/value pair. In order to do so, the tracking entity that currently identifies the newest entry or position within the data collection is selected. A simple comparison of the entities' values may suffice for this determination. By always advancing the tracking entity that identifies the newest record, the entities' traversal of the data collection will ensure that they will simultaneously visit every entry or record that should be included in the result set.


In operation 922, the selected tracking entity is advanced, meaning that the key offset of the entity's corresponding key is read and used as the new value of the tracking entity. Multiple tracking entities may be updated simultaneously or in parallel if they all currently point to the same data entry and that entry was stored more recently than any other data entry currently identified by other tracking entities.


In operation 930, the apparatus or system performing the method determines whether it has completed its data traversal for the immediate query. Illustratively, the method may be terminated by completely traversing the data collection, in which case one or more tracking entities will have been assigned a value (e.g., in operation 912 or operation 922) that is null, zero, or otherwise indicates that the collection has no more records with the entity's target key/value pair. Also, however, or instead, the method may terminate upon satisfaction of a boundary condition.


For example, if only a target number of results is desired, the method may stop when that number of data records is obtained. As another example, a maximum number of visited data entries or records may be identified such that the method ends when that number of entries has been visited. As yet another example, if the data entries have timestamps, and the query has a time-based restriction, the method may end when a data record identified by a tracking entity is outside the specified time window.


Thus, in operation 930, a test may be conducted to determine whether any boundary or termination condition is satisfied. If so, the results are reported (if there are any results) and the method ends.


Otherwise, the method returns to operation 908 to again determine if the tracking entities identify the same data record.


Other set operations will vary in terms of how members of the result set are identified. For example, a union operation may entail traversing each target key's chain of records, starting from the index offset corresponding to the target value and through any number of key offsets, and adding each record to the result set if it was not already added. A method for performing a union operation may or may not determine whether the target keys' tracking entities identify the same entry, and may or may not always advance the tracking entity that identifies the most recently stored data record. Doing so may help avoid adding duplicates to the result set, but may or may not be faster than simply determining whether each tracking entity's currently identified entry or record is already in the result set.


A method of performing a difference operation may operate to find records that have any of a first set of values for a first set of keys (which have associated first tracking entities) but not any value in a second set of values for a second set of keys (which have associated second tracking entities). Thus, the first set of keys and first set of tracking entities will identify records that could be added to the result set, while the second set of keys and second set of tracking entities will identify records that should not be added to the result set. Based on the tracking entities' current positions/locations as they traverse the data collection, a determination is made as to whether at least one of the first tracking entities and at least one of the second tracking entities identify the same record. If so, the record is excluded from the result set.


Otherwise: (a) if the newest (most recently stored) record identified by the tracking entities is identified only by one or more first tracking entities (i.e., and not by any second tracking entities), the record is added to the result set and all tracking entities that identify the record are advanced; or (b) if the newest (most recently stored) entry identified among all the tracking entities is identified by one or more second tracking entities, all tracking entities that identify the entry are advanced. Then another determination is made as to whether the tracking entities identify the same record.


An Illustrative Apparatus for Sequentially Stored Variable-Length Data


FIG. 10 depicts an apparatus for facilitating reverse reading of sequentially stored variable-length data, indexing and sequentially storing such data, and/or capturing snapshots of the data, according to some embodiments.


Apparatus 1000 of FIG. 10 includes processor(s) 1002, memory 1004, and storage 1006, which may comprise any number of solid-state, magnetic, optical, and/or other types of storage components or devices. Storage 1006 may be local to or remote from the apparatus. Apparatus 1000 can be coupled (permanently or temporarily) to keyboard 1012, pointing device 1014, and display 1016.


Storage 1006 is (or includes) a data repository that stores data and metadata 1022. Data and metadata 1022 includes variable-length data records that are stored sequentially with corresponding size metadata. Each record includes multiple keys and corresponding values (some of which may be null or undefined).


As described above, for example, the size metadata for a given record may include one or more bytes (or other storage units) that identify the length of the record (e.g., with variable-length quantity (VLQ) encoding). If more than one storage unit (or byte) is needed to store the record length, the record's size metadata includes an additional byte that identifies the size/length of the record length (e.g., the number of bytes used to store the record length). When the record length is stored with VLQ encoding, the most significant bit of the additional byte is set to one so that, during reverse reading, the reader can quickly determine that the byte does not store the record length, but rather the length (e.g., number of bytes) of the record length (or ‘size of the size’).


In addition, within each record, one or more key offsets are stored that store offsets to other records having the same values for the same keys (if any other such records are stored). Thus, for a given value for a given key, corresponding key offsets associated with records having that key value can be quickly identified and/or traversed.


Index 1024 is an index to the data records, such as an index described herein that identifies, for each known value for each key field, a first (e.g., most recently stored) record that has that key value. Some or all of this index may also (or instead) reside in memory 1004.


Storage 1006 also stores logic and/or logic modules that may be loaded into memory 1004 for execution by processor(s) 1002, including write logic 1030, read logic 1032, and set operation logic 1034. In other embodiments, these logic modules may be aggregated or divided to combine or separate functionality as desired or as appropriate. For example, the write logic and read logic may be combined into a larger logic module that handles some or all input/output for the data repository.


Write logic 1030 comprises processor-executable instructions for writing to data 1022 a new data record and accompanying/corresponding key offsets and size metadata. Thus, for each new set of data to be stored, write logic 1030 writes the data, writes a key offset for each key field, determines the length of the new data record (possibly including the key offsets), writes the length after the data and, if more than one byte (or other threshold) is required to store the length, writes the additional size metadata byte (e.g., the ‘size of the size’ byte). Write logic 1030 may also be responsible for updating an index associated with the data (e.g., to store offsets to the new data record (or the new data record's key offsets) among the index offsets).


Read logic 1032 comprises processor-executable instructions for forward-reading and/or reverse-reading data and/or metadata 1022. While reading the data in reverse order, for each record the reader logic first reads the last byte of the corresponding size metadata. If its most significant bit is zero, the byte stores the record's length and the reader can quickly calculate the offset to the start of the record and move there to read the record. If the most significant bit of the last byte is one, the rest of the last byte identifies the size of (e.g., number of bytes used to store) the record length. The reader logic can therefore quickly find the offset of the beginning of the length, read the length, and use it to calculate the start of the record.


Read logic 1032 may use a portion of index 1024 to locate a first (e.g., most recently stored) record having particular values for one or more specified or target keys or key fields. Using index offsets, the first record is located, after which that record's key offsets are used to quickly find other records satisfying the same criteria.


Set operation logic 1034 comprises processor-executable instructions for performing set operations on data 1022. Various types of set operations may be supported, such as unions, intersections, and differences. Each operation is performed on two or more sets of data records, wherein each set of records has a common key/value pair (i.e., the same value for the same key field).


To facilitate a set operation, the set operation logic initializes a tracking entity for each key/value pair participating in the set operation, by setting them equal to their corresponding index offsets (e.g., obtained from index 1024). Thereafter, each tracking entity is used to identify or traverse records having the associated key/value pairs. The set operation may be conducted during the traversal, which may involve determining whether multiple tracking entities identify the same record, adding a record to a result of the operation if it qualifies, and advancing each tracking entity to the next record having its key/value pair at the appropriate time.


Set operation logic 1034 may be divided into separate logic modules, such as an initialization module and/or modules for each set operation. Apparatus 1000 may alternatively be termed or implemented as a module, mechanism, or other type of system component.


An environment in which one or more embodiments described above are executed may incorporate a data center, a general-purpose computer or a special-purpose device such as a hand-held computer or communication device. Some details of such devices (e.g., processor, memory, data storage, display) may be omitted for the sake of clarity. A component such as a processor or memory to which one or more tasks or functions are attributed may be a general component temporarily configured to perform the specified task or function, or may be a specific component manufactured to perform the task or function. The term “processor” as used herein refers to one or more electronic circuits, devices, chips, processing cores and/or other components configured to process data and/or computer program code.


Data structures and program code described in this detailed description are typically stored on a non-transitory computer-readable storage medium, which may be any device or medium that can store code and/or data for use by a computer system. Non-transitory computer-readable storage media include, but are not limited to, volatile memory; non-volatile memory; electrical, magnetic, and optical storage devices such as disk drives, magnetic tape, CDs (compact discs) and DVDs (digital versatile discs or digital video discs), solid-state drives, and/or other non-transitory computer-readable media now known or later developed.


Methods and processes described in the detailed description can be embodied as code and/or data, which may be stored in a non-transitory computer-readable storage medium as described above. When a processor or computer system reads and executes the code and manipulates the data stored on the medium, the processor or computer system performs the methods and processes embodied as code and data structures and stored within the medium.


Furthermore, the methods and processes may be programmed into hardware modules such as, but not limited to, application-specific integrated circuit (ASIC) chips, field-programmable gate arrays (FPGAs), and other programmable-logic devices now known or hereafter developed. When such a hardware module is activated, it performs the methods and processed included within the module.


The foregoing embodiments have been presented for purposes of illustration and description only. They are not intended to be exhaustive or to limit this disclosure to the forms disclosed. Accordingly, many modifications and variations will be apparent to practitioners skilled in the art. The scope is defined by the appended claims, not the preceding disclosure.

Claims
  • 1. A method of performing a set operation on a collection of data records stored in a manner that facilitates reverse reading, the method comprising: identifying multiple key/value pairs included in data records involved in the set operation;for each identified key/value pair: initializing an associated tracking entity for identifying data records that include the key/value pair;wherein said initializing comprises assigning to the tracking entity a value that identifies a most recently stored data record having the key/value pair; andwhen the set operation is an intersection operation: when the tracking entities identify a common record: adding the common record to a result of the set operation; andfor each tracking entity, updating the tracking entity to identify a next most recently stored record that has the associated key/value pair.
  • 2. The method of claim 1, further comprising, when the set operation is an intersection operation: when the tracking entities do not identify a common record: identifying, among records identified by the tracking entities, a target record that was stored more recently than other records identified by the tracking entities; andfor each tracking entity that identifies the target record, updating the tracking entity to identify a next most recently stored record that has the associated key/value pair.
  • 3. The method of claim 1, wherein said updating comprises, for each tracking entity being updated: within the record identified by the tracking entity, reading a key offset that corresponds to the tracking entity's associated key; andassigning the key offset as a new value of the tracking entity;wherein the key offset identifies the next most recently stored record that has the key/value pair associated with the tracking entity.
  • 4. The method of claim 1, further comprising: when the set operation is a union operation: when the tracking entities identify a single record: adding the single record to a result of the set operation if the single record was not already added to the result; andfor each tracking entity, updating the tracking entity to identify the next most recently stored record that has the associated key/value pair; andwhen the tracking entities identify more than a single record: identifying, among records identified by the tracking entities, a first record that was stored more recently than other records identified by the tracking entities;adding the first record to a result of the set operation if the first record was not already added to the result; andfor each tracking entity that identifies the first record, updating the tracking entity to identify the next most recently stored record that has the associated key/value pair.
  • 5. The method of claim 1, further comprising: when the set operation is a difference operation between (a) records having any of a first set of key/value pairs associated with a first set of tracking entities and (b) records having any of a second set of key/value pairs associated with a second set of tracking entities: identifying, among records identified by the tracking entities, a first record that was stored more recently than other records identified by the tracking entities;when the first record is identified by none of the second set of tracking entities: adding the first record to a result of the set operation; andfor each tracking entity that identifies the first record, updating the tracking entity to identify the next most recently stored record that has the associated key/value pair; andwhen the first record is identified by at least one of the second set of tracking entities: for each tracking entity that identifies the first record, updating the tracking entity to identify the next most recently stored record that has the associated key/value pair.
  • 6. The method of claim 1, wherein determining whether the tracking entities identify a common record comprises: within a first record identified by a first tracking entity, locating a predetermined element of the first record;within a second record identified by a second tracking entity, locating the predetermined element of the second record; andcomparing the locations of the predetermined elements of the first record and the second record to determine if they are co-located;wherein the first tracking entity and the second tracking entity identify the same record if the locations of the predetermined elements of the first record and the second record are co-located.
  • 7. The method of claim 1, wherein determining whether the tracking entities identify a common record comprises: identifying a reference location within a first record identified by a first tracking entity;calculating a distance to the reference location from a current location in the first record identified by the first tracking entity; anddetermining whether a combination of the distance and the current location in the first record matches a current location in a second record identified by a second tracking entity.
  • 8. The method of claim 1, further comprising, for each tracking entity: (a) within the data record identified by the tracking entity, reading a key offset corresponding to the key/value pair associated with the tracking entity;(b) using the key offset to locate a next most recently stored record having the key/value pair; and(c) repeating (a) and (b) until a termination condition occurs.
  • 9. The method of claim 8, wherein the termination condition is one of: reading a key offset that does not identify a data record;locating a threshold number of data records;locating a data record having an associated timestamp outside of a target time window; andadding a threshold number of records to the result of the set operation.
  • 10. An apparatus for performing a set operation on a collection of data records stored in a manner that facilitates reverse reading, the apparatus comprising: one or more processors; andmemory storing instructions that, when executed by the one or more processors, cause the apparatus to: identify multiple key/value pairs included in data records involved in the set operation;for each identified key/value pair: initialize an associated tracking entity for identifying data records that include the key/value pair;wherein said initializing comprises assigning to the tracking entity a value that identifies a most recently stored data record having the key/value pair; andwhen the set operation is an intersection operation: when all tracking entities identify a common record: add the common record to a result of the set operation; andfor each tracking entity, update the tracking entity to identify a next most recently stored record that has the associated key/value pair.
  • 11. The apparatus of claim 10, wherein the memory further stores instructions that, when executed by the one or more processors, cause the apparatus to, when the set operation is an intersection operation: when the tracking entities do not identify a common record: identify, among records identified by the tracking entities, a target record that was stored more recently than other records identified by the tracking entities; andfor each tracking entity that identifies the target record, update the tracking entity to identify a next most recently stored record that has the associated key/value pair.
  • 12. The apparatus of claim 10, wherein said updating comprises, for each tracking entity being updated: within the record identified by the tracking entity, reading a key offset that corresponds to the tracking entity's associated key; andassigning the key offset as a new value of the tracking entity;wherein the key offset identifies the next most recently stored record that has the key/value pair associated with the tracking entity.
  • 13. The apparatus of claim 10, wherein the memory further stores instructions that, when executed by the one or more processors, cause the apparatus to: when the set operation is a union operation: when the tracking entities identify a single record: add the single record to a result of the set operation if the single record was not already added to the result; andfor each tracking entity, update the tracking entity to identify the next most recently stored record that has the associated key/value pair; andwhen the tracking entities identify more than a single record: identify, among records identified by the tracking entities, a first record that was stored more recently than all other records identified by the tracking entities;add the first record to a result of the set operation if the first record was not already added to the result; andfor each tracking entity that identifies the first record, update the tracking entity to identify the next most recently stored record that has the associated key/value pair.
  • 14. The apparatus of claim 10, wherein the memory further stores instructions that, when executed by the one or more processors, cause the apparatus to: when the set operation is a difference operation between (a) records having any of a first set of key/value pairs associated with a first set of tracking entities and (b) records having any of a second set of key/value pairs associated with a second set of tracking entities: identify, among records identified by the tracking entities, a first record that was stored more recently than other records identified by the tracking entities;when the first record is identified by none of the second set of tracking entities: add the first record to a result of the set operation; andfor each tracking entity that identifies the first record, update the tracking entity to identify the next most recently stored record that has the associated key/value pair; andwhen the first record is identified by at least one of the second set of tracking entities: for each tracking entity that identifies the first record, update the tracking entity to identify the next most recently stored record that has the associated key/value pair.
  • 15. The apparatus of claim 10, wherein determining whether the tracking entities identify a common record comprises: within a first record identified by a first tracking entity, locating a predetermined element of the first record;within a second record identified by a second tracking entity, locating the predetermined element of the second record; andcomparing the locations of the predetermined elements of the first record and the second record to determine if they are co-located;wherein the first tracking entity and the second tracking entity identify the same record if the locations of the predetermined elements of the first record and the second record are co-located.
  • 16. The apparatus of claim 10, wherein determining whether the tracking entities identify a common record comprises: identifying a reference location within a first record identified by a first tracking entity;calculating a distance to the reference location from a current location in the first record identified by the first tracking entity; anddetermining whether a combination of the distance and the current location in the first record matches a current location in a second record identified by a second tracking entity.
  • 17. The apparatus of claim 10, wherein the memory further stores instructions that, when executed by the one or more processors, cause the apparatus to, for each tracking entity: (a) within the data record identified by the tracking entity, read a key offset corresponding to the key/value pair associated with the tracking entity;(b) use the key offset to locate a next most recently stored record having the key/value pair; and(c) repeat (a) and (b) until a termination condition occurs.
  • 18. The apparatus of claim 17, wherein the termination condition is one of: reading a key offset that does not identify a data record;locating a threshold number of data records;locating a data record having an associated timestamp outside of a target time window; andadding a threshold number of records to the result of the set operation.
  • 19. A system for performing a set operation on a collection of data records stored in a manner that facilitates reverse reading, the system comprising: at least one processor;an index comprising, for each of multiple keys: one or more values of the key; andfor each value, a corresponding index offset identifying a most recently stored data record having the key value; andan initialization module comprising a non-transitory computer-readable medium storing instructions that, when executed, cause the system to: for each of multiple key/value pairs included in data records involved in a set operation: initializing an associated tracking entity for identifying data records that include the key/value pair;wherein said initializing comprises assigning to the tracking entity the index offset identifying the most recently stored data record having the key/value pair; anda set intersection module comprising a non-transitory computer-readable medium storing instructions that, when executed, cause the system to: when the tracking entities identify a common record: add the common record to a result of the set operation; andfor each tracking entity, update the tracking entity to identify a next most recently stored record that has the associated key/value pair.
  • 20. The system of claim 19, wherein the non-transitory computer-readable medium of the set intersection module further stores instructions that, when executed, cause the system to: when the tracking entities do not identify a common record: identify, among records identified by the tracking entities, a target record that was stored more recently than other records identified by the tracking entities; andfor each tracking entity that identifies the target record, update the tracking entity to identify a next most recently stored record that has the associated key/value pair.
  • 21. The system of claim 19, wherein said updating comprises, for each tracking entity being updated: within the record identified by the tracking entity, reading a key offset that corresponds to the tracking entity's associated key; andassigning the key offset as a new value of the tracking entity;wherein the key offset identifies the next most recently stored record that has the key/value pair associated with the tracking entity.
  • 22. The system of claim 19, further comprising a set union module comprising a non-transitory computer-readable medium storing instructions that, when executed, cause the system to: when the tracking entities identify a single record: add the single record to a result of the set operation if the single record was not already added to the result; andfor each tracking entity, update the tracking entity to identify the next most recently stored record that has the associated key/value pair; andwhen the tracking entities identify more than a single record: identify, among records identified by the tracking entities, a first record that was stored more recently than other records identified by the tracking entities;add the first record to a result of the set operation if the first record was not already added to the result; andfor each tracking entity that identifies the first record, update the tracking entity to identify the next most recently stored record that has the associated key/value pair.
  • 23. The system of claim 19, further comprising a set difference module comprising a non-transitory computer-readable medium storing instructions that, when executed, cause the system to perform a difference operation between (a) records having any of a first set of key/value pairs associated with a first set of tracking entities and (b) records having any of a second set of key/value pairs associated with a second set of tracking entities, by: identifying, among records identified by the tracking entities, a first record that was stored more recently than other records identified by the tracking entities;when the first record is identified by none of the second set of tracking entities: adding the first record to a result of the set operation; andfor each tracking entity that identifies the first record, updating the tracking entity to identify the next most recently stored record that has the associated key/value pair; andwhen the first record is identified by at least one of the second set of tracking entities: for each tracking entity that identifies the first record, updating the tracking entity to identify the next most recently stored record that has the associated key/value pair.
RELATED APPLICATION

The subject matter of this application is related to the subject matter in co-pending U.S. patent application Ser. No. 14/988,444, entitled “Facilitating Reverse Reading of Sequentially Stored, Variable-Length Data” and filed Jan. 5, 2016 (Docket P1742); co-pending U.S. patent application Ser. No. 15/135,402, entitled “Indexing and Sequentially Storing Variable-Length Data to Facilitate Reverse Reading” and filed Apr. 21, 2016 (Docket P1880); and co-pending U.S. patent application Ser. No. 15/191,091, entitled “Capturing Snapshots of Variable-Length Data Sequentially Stored and Indexed to Facilitate Reverse Reading” and filed Jun. 23, 2016 (Docket P2027).