WO2002027526A1 - Fast data retrieval based upon contiguous consolidation of records according to frequency of access - Google Patents

Fast data retrieval based upon contiguous consolidation of records according to frequency of access Download PDF

Info

Publication number
WO2002027526A1
WO2002027526A1 PCT/US2001/028700 US0128700W WO0227526A1 WO 2002027526 A1 WO2002027526 A1 WO 2002027526A1 US 0128700 W US0128700 W US 0128700W WO 0227526 A1 WO0227526 A1 WO 0227526A1
Authority
WO
WIPO (PCT)
Prior art keywords
data records
media
module
data record
data
Prior art date
Application number
PCT/US2001/028700
Other languages
French (fr)
Inventor
Walter Lee
John Lipham
George Kissiak
Original Assignee
Hnc Software, Inc.
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Hnc Software, Inc. filed Critical Hnc Software, Inc.
Priority to AU2001292653A priority Critical patent/AU2001292653A1/en
Publication of WO2002027526A1 publication Critical patent/WO2002027526A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/28Databases characterised by their database models, e.g. relational or object models
    • G06F16/284Relational databases
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99941Database schema or data structure
    • Y10S707/99943Generating database or data structure, e.g. via user interface

Definitions

  • the invention relates generally to computer databases, and more specifically to the quick retrieval of data records based upon contiguous consolidation according to access frequency.
  • the most recently accessed data records are stored contiguously on static media, and the least recently accessed data records are stored contiguously on static media.
  • a buffer in random access memory is used to store a subset of the data records, preferably those that have been most recently accessed. When a data record is accessed, it is stored in the buffer. From time to time, the most recently accessed records from the buffer are flushed to static media, ensuring their contiguous storage. The least recently accessed records, which are stored on static media, are consolidated, such that they too are contiguously stored. Access of data records is thus much faster than in a traditional database. The most recently accessed records are, statistically, the most likely records to be subsequently accessed.
  • both a write process and a consolidator process store data records on static media contiguously in blocks. Therefore, there is very little movement of the disk write-head compared to that required by a traditional database system to store the same number of records across multiple physical disk locations.
  • FIG. 1 A is a high-level block diagram illustrating a system for facilitating fast, efficient database access based upon contiguous storage of data records according to frequency of access, according to one embodiment of the present invention.
  • FIG. IB is a high-level block diagram illustrating an overview of the operation of the system according to one embodiment of the present invention.
  • FIG. 2 is a block diagram illustrating the pre-allocation of contiguous files on static media, according to one embodiment of the present invention.
  • FIG. 3 is a block diagram illustrating the operation of the system, according to one embodiment of the present invention.
  • FIG. 4 is a block diagram illustrating the writing of data records stored in the buffer to static media, according to one embodiment of the present invention.
  • FIG. 5 is a block diagram illustrating the consolidation of data records stored on static media, according to one embodiment of the present invention.
  • FIG. 6 is a block diagram illustrating the chaining of multiple versions of data records, according to one embodiment of the present invention.
  • FIG. 1A illustrates a system 100 for facilitating fast, efficient database access based upon contiguous storage of data records according to frequency of access, according to one embodiment of the present invention.
  • a computer includes random access memory 101 and static media 103.
  • Static media 103 can comprise, for example, magnetic or optical disks.
  • a database application program 105 executes in memory 101. It is to be understood that although a single application program 105 is illustrated, the functionality of the application program 105 can be provided by a single program, or by multiple programs and processes as desired.
  • the application program 105 accesses data records 107 in a database. Non-exhaustive examples of access operations include read, write, add and delete. Data records 107 are stored contiguously in one or more files 109 on static media 103. A subset of data records 107 are stored in a buffer 111 in memory 101.
  • an index 113 is stored in memory 101, the index 113 facilitating access of data records 107 stored both on static media 103 and in the buffer 111.
  • the index 113 generally contains information such as the location of each data record 107 on static media 103 (and in memory 101 where applicable), keywords associated with the data record 107, indicators of locked records 107, and the like. The implementation details of the index 113 will be readily apparent to one of skill in the art.
  • a consolidator process 115 also executes in memory 101. As explained in detail below, the consolidator process 115 contiguously stores non-obsolete data records 107 in available files 109, and makes obsolete files 109 available to the system 100.
  • a writer process 117 also executes in memory 101.
  • the writer process 117 reads data records 107 from the buffer 111 in memory 101, and contiguously stores the data records 107 in available files 109 on static media 103. As explained in detail below, this results in the most frequently accessed data records 107 being stored contiguously.
  • FIG. IB illustrates an overview of the operation of the system, according to one embodiment of the present invention.
  • the operation is based upon the premise that the most recently accessed data records 107 statistically tend to be the most frequently accessed data records 107.
  • the most frequently and least frequently accessed data records 107 access of data records 107 during system 100 operation will tend to be in a contiguous as opposed to a random order.
  • contiguous access involves significantly less disk-head movement than random access, the system 100 yields significantly improved performance over traditional database technologies.
  • the operation of the system 100 implements this approach by dynamically, contiguously, and separately grouping both the most frequently and least frequently accessed data records 107.
  • the system 100 operation begins with all data records 107 stored contiguously in files 109 on static media 103.
  • a data record 107 is accessed, it is stored in the buffer 111, such that the most recently accessed data records 107 are stored therein, for fast subsequent access.
  • the buffer 111 will in time become full. Therefore, from time to time, the writer process 117 reads the buffer 111, and contiguously writes data records 107 stored therein to static media 103. Recall that these data records 107 have been recently accessed, and hence they are in the buffer 111. When the writer process 117 flushes the most recently accessed records 107 to media 103, the result is that the most recently accessed records will be stored contiguously, as illustrated in file 109d for fast subsequent access. The system 100 then keeps track of the fact that the flushed version of the data record 107 is the current version, and that the previous version, which was loaded from media 103 into the buffer 111 for access, is now obsolete.
  • the files 109a, 109b from which data records 107 are loaded into the buffer 111 for access will, in time, comprise both obsolete records 107 (that is to say, records that have subsequently been accessed and contiguously written to a separate file 109d on static media 103) and non-obsolete records 107 (that is to say, records that have not been subsequently accessed and written to a separate file 109d).
  • the obsolete records 107 comprise earlier versions of the most recently accessed data records 107, which have been subsequently contiguously written to a separate file 109d.
  • the non-obsolete records 107 comprise the least recently accessed records 107. In other words, the non- obsolete records 107 have not subsequently been accessed and rewritten since being stored in their current location on static media 103.
  • the consolidator process 115 reads files 109a, 109b stored on static media 103. Where a file 109a, 109b contains both non-obsolete records 107 and obsolete records 107, the consolidator process 115 writes the non-obsolete records 107 to a separate file 109c on static media 103, such that they are stored contiguously for subsequent access. Obsolete records can be skipped, since the updated versions of such records have already been written to file 109d.
  • the consolidator process 115 then classifies the file 109a, 109b containing non-obsolete records 107 and obsolete records 107 as being available for subsequent contiguous storage of data records 107, by either the writer process 117 or the consolidator process 115. That is, this area of static media is reclaimed. In this manner, the most recently accessed and the least recently accessed data records 107 are both stored contiguously.
  • FIG. 2 illustrates the pre-allocation of contiguous files 109 on static media 103.
  • one or more contiguous files 109 are pre- allocated from an operating system 201.
  • this pre-allocation is performed by a pre-allocation module 203, which can be a part of the application program 105, or a separate process as desired.
  • the pre-allocation module 203 allocates a desired number of files 109, each file 109 being a desired number N bytes in size.
  • the pre- allocation module 203 sequentially writes N bytes to each file 109, to ensure that each file 109 occupies contiguous physical storage space on the static media 103.
  • other techniques known in the art are utilized to ensure contiguous physical allocation of file space on static media 103.
  • the physical space on which all of the files 109 are stored is contiguous.
  • each file 109 comprises contiguous storage space on static media 103, but one or more of the files 109 may be stored non-contiguously relative to other files 109.
  • FIG. 3 illustrates the operation of the system.
  • Data records 107 are stored contiguously in one or more files 109 on static media.
  • the most recently (and hence most frequently) accessed data records 107 are also stored in a buffer 111 in memory 101.
  • the buffer is large enough to hold some number M data records.
  • the value of M is generally configurable, and comprises a design choice to be made by a system administrator or other party as desired.
  • the index 113 is also stored in memory 101.
  • the application program 105 utilizes the index 113 to access data records 107. Where an accessed record 107 is already in the buffer 111, the application program 105 utilizes the buffered copy of the data record 107 for fast access.
  • the application program 105 loads the data record from static media 103 into memory 101, and stores a copy of the data record 107 in the buffer 111. If there is room in the buffer 111, the data record 107 is simply stored there in available space. If the buffer 111 is full, the least recently accessed data record 107 (or alternatively some other data record 107) is overwritten. Of course, data records 107 that have been updated are not overwritten without first being written to static media 103 by the writer process 117, as explained below. When a data record 107 is stored in the buffer 111, the index 113 is updated to indicate the location of the data record 107 therein.
  • the buffer 111 comprises a circular queue (as illustrated in FIG. 3).
  • data records 117 are stored at the tail of the queue, such that when the queue is full, the least recently entered data records 107 are overwritten with new data records 107.
  • Other data structures and storage methodologies are utilized in other embodiments as desired.
  • data records 107 update the contents thereof (e.g. a write operation), whereas other accesses do not (for example, a read operation).
  • only updated data records 107 are stored in the buffer 111.
  • all accessed records 107 are so stored.
  • the application program 105 (or alternatively another element of the system 100) keeps track of which data records 107 in the buffer 111 have been updated since they were loaded from static media 103.
  • the application program 105 uses entries in the index 113, or other conventional methodology apparent to one of skill in the art, to keep track of this information.
  • FIG. 4 illustrates the writing of data records 107 stored in the buffer 111 to static media 103.
  • a writer process 117 executes in memory 101.
  • FIG. 4 illustrates the writer process 117 executing as a discrete process. It is to be understood that the associated functionality can be provided by a single process as illustrated, by the application program, or by more than one process or program as desired.
  • the writer process 117 reads the buffer, and contiguously stores data records 107 contained therein in one or more files 109 on static media 103. Generally, the writer process 117 determines which records 107 in the buffer 111 have not been stored on media 103 since last being updated, as described below. The writer process 117 contiguously appends these records 107 to an active file 109 on static media 103.
  • An active file 109 is a file 109 in which the writer process 117 stores updated records 107 from the buffer 111, the active file 109 having available room for additional records 107.
  • an active file 109 is a file that is available for storage of records 107, either as a result of being pre-allocated by the pre-allocation module 201, or as a result of having been made available by the consolidation process 115, as explained below.
  • the system 100 designates a new available file 109 as being active, and begins storing records 107 therein.
  • the full file 109 is designated as no longer being active or available.
  • the writer process 117 (or alternatively the application program 105) keeps track of which records 107 in the buffer 111 have been copied to static media.
  • the writer process 117 uses entries in the index 113, or other conventional methodology apparent to one of skill in the art, to keep track of this information. Because the system 100 keeps track of which records 107 in the buffer 111 have been updated since being copied from media 103, and which updated records 107 in the buffer 111 have been written to media 103, the writer process 117 is able to only contiguously write those records 107 to media 103 that are more current than the latest version stored on media. Additionally, when the writer process 117 copies an updated data record 107 to static media, the system 100 classifies earlier versions of the data record 107 stored on media as being obsolete. The system uses methodology apparent to one of skill in the art to keep track of obsolete records.
  • the frequency with which the writer process 117 executes is configurable, and comprises a design choice to be made by a system administrator or other party as desired.
  • the writer process 177 executes at least whenever the buffer 111 is full, such that before an updated data record 107 is overwritten, all updated data records 107 are contiguously written to one or more active files 109 on media 103.
  • the writer process 117 contiguously writes data records from the buffer 111 to media 103, the index 113 is updated accordingly.
  • FIG. 5 illustrates the consolidation of data records 107 stored on static media 103.
  • a consolidator process 115 executes in memory 101.
  • FIG. 5 illustrates the consolidator 115 as a single process, but of course the associated functionality can alternatively be provided by the application program, or by more than one process or program as desired.
  • the consolidator process 115 reads the files 109 on static media 103 in which data records 107 are stored.
  • the consolidator process 115 encounters a file 109 in which both obsolete and non-obsolete records are stored, the consolidator process 115 reads the non-obsolete records 107 from that file 109, and contiguously stores them in an available file 109, such that the least recently accessed data records (in other words, the ones that have not been updated recently, and hence are non- obsolete) are stored contiguously.
  • the file 109 containing obsolete and non-obsolete records is then classified by the system as being available for subsequent use by the writer process 117 or the consolidator process 115.
  • the frequency with which the consolidator process 115 executes is configurable, and comprises a design choice to be made by a system administrator or other party as desired. Additionally, when the consolidator process 117 stores data records in available files and classifies existing files as being available, the index 113 is updated accordingly.
  • FIG. 6 illustrates the chaining of versions of data records 107.
  • a pointer 601 is maintained from the updated data record 107 to the previous version thereof.
  • This pointer 301 can be in the record 107 itself (as illustrated), in the index 113, or elsewhere as desired.
  • the "chain" of pointers 301 can be traversed in order to examine editing history of a data record 107.
  • the chain has other uses as well, for example error recovery after a system crash.
  • no version of a data record 107 is classified as obsolete until a certain number of more recent versions of the record always exist.
  • a system administrator could configure the system 100 such that three versions of each data record always exist. Then, only when three more recent versions exist would a prior version of a data record be classified as obsolete. In one embodiment, this result is achieved by setting the size of the buffer 111 and files 109, as well as the execution frequency of the writer process 117 and the consolidator process 115 accordingly.
  • Data records 107 can comprise data of any kind, for example, names and addresses, employee information, inventory information, or profiles summarizing transactions, for example credit card transactions.
  • Data records 107 can be exported or imported into other applications as desired.
  • data records 107 comprise profiles summarizing credit card transactions. These profiles are utilized as input for a predictive statistical modeling program. In another embodiment, the profiles comprise output from the predictive statistical modeling program.
  • the system 100 contiguously stores the most recently accessed data records 107 together, and contiguously stores the least recently accessed records 107 together.
  • the most recently accessed records 107 are maintained in the buffer 111 and contiguously written to active files 109 on static media 103.
  • the least recently accessed data records 107 are contiguously stored in available files 107 on static media 103. Because the storage of both the most and least recently (and thus frequently) accessed data records 107 is contiguous, a minimum of disk-head movement is required in order to read and write the data records 107. Because the mechanical operation of disk-head movement is significantly slower than the other, electrical operations required for data record 107 access, the system 100 provides remarkable performance improvements over previously known database technologies.

Abstract

The most and least frequently accessed data records (107) are contiguously stored on static media (103). Additionally, a buffer (111) in random access memory (101) holds copies of the most recently accessed records. Updated records are copied from the buffer (111), and contiguously stored in a separate file (109) on static media (103). Non-accessed records are contiguously consolidated.

Description

FAST DATA RETRIEVAL BASED UPON CONTIGUOUS CONSOLIDATION OF RECORDS ACCORDING TO FREQUENCY OF ACCESS
CROSS-REFERENCE TO RELATED APPLICATION
This application claims priority, under 35 U.S.C. § 119(e), from U.S. Provisional Patent Application Serial No. 60/236,559 filed September 28, 2000.
BACKGROUND
FIELD OF INVENTION
The invention relates generally to computer databases, and more specifically to the quick retrieval of data records based upon contiguous consolidation according to access frequency.
BACKGROUND OF INVENTION
Large amounts of data are typically stored in computer databases. Various database architectures are currently known in the art. These architectures have generally been developed during a time when computer hardware storage (both disk storage and random access memory) were relatively limited and expensive. However, these technologies have recently become significantly more powerful and less expensive. As a result, the hardware environment has changed considerably from when current database technologies were developed. Only a short time ago, the standard hard disk size was two gigabytes, and database server computers did not support more than two gigabytes of random access memory. Currently, the standard server computer is equipped with up to eighteen gigabytes of disk space, and over two gigabytes of random access memory. As a consequence of these hardware developments, much larger databases are not only now possible, but are expected by users and customers of database systems.
With the increase in size, new demands are placed on databases. Typically, a larger database results in significantly slower access time. Known database technologies were developed when less static and dynamic storage were readily available, and thus are not designed to take advantage of contemporary hardware configurations. For example, known database technologies typically rely on a highly partitioned storage strategy, that permits data to be distributed across multiple disks. Generally, each partition of the database is less than one gigabyte in size. Thus, in a large database, data records will be stored in multiple partitions, on multiple physical areas on a disk, and on multiple disks. Consequently, access to data records becomes slower as the size of the data (and thus the physical distribution) increases.
To access a data record, first the record must be located, then the read-head must be moved to the physical location of the record in order to read it. A similar set of operations is required in order to write an updated record to disk. The mechanical operation of physically moving a disk-head is much slower than executing an electronic operation, such as loading data from a disk into random access memory. Databases typically include the requirement that data records must be able to be accessed in a random rather than sequential manner (in other words, a user needs to be able to access any record, in any order). The data records of traditional databases are distributed across various physical locations. Therefore, randomly accessing a plurality of data records involves significant disk-head movement that is essentially random, resulting in lengthy average seek times. The larger the database, the greater the record distribution, and hence the slower the data access will be. In practice, when known database architectures are used to stored large databases, the system spends a significant amount of time moving the disk-heads to various physical locations on multiple disks, resulting in slow access time. Therefore, what is needed is a method and a system for facilitating quick access of data records in large databases.
SUMMARY OF INVENTION
According to an embodiment of the present invention, the most recently accessed data records are stored contiguously on static media, and the least recently accessed data records are stored contiguously on static media. Additionally, a buffer in random access memory is used to store a subset of the data records, preferably those that have been most recently accessed. When a data record is accessed, it is stored in the buffer. From time to time, the most recently accessed records from the buffer are flushed to static media, ensuring their contiguous storage. The least recently accessed records, which are stored on static media, are consolidated, such that they too are contiguously stored. Access of data records is thus much faster than in a traditional database. The most recently accessed records are, statistically, the most likely records to be subsequently accessed. Because the most recently accessed records are in the buffer, they are accessed extremely quickly. Because these records are stored contiguously on static media, whenever one of these records is accessed from there, it is also likely that the read-head will already be proximate to the location of the record. In a traditional database system, an accessed record is not likely to be physically located proximately to a previously accessed record, and thus more disk-head movement is required. Because disk-head movement is slow, the substantial minimization thereof results in greatly increased performance.
Additionally, both a write process and a consolidator process store data records on static media contiguously in blocks. Therefore, there is very little movement of the disk write-head compared to that required by a traditional database system to store the same number of records across multiple physical disk locations.
The features and advantages described in this summary and the following detailed description are not all-inclusive, and particularly, many additional features and advantages will be apparent to one of ordinary skill in the art in view of the drawings, specification, and claims hereof. Moreover, it should be noted that the language used in the specification has been principally selected for readability and instructional purposes, and may not have been selected to delineate or circumscribe the inventive subject matter, resort to the claims being necessary to determine such inventive subject matter.
BRIEF DESCRIPTION OF THE DRAWINGS
FIG. 1 A is a high-level block diagram illustrating a system for facilitating fast, efficient database access based upon contiguous storage of data records according to frequency of access, according to one embodiment of the present invention.
FIG. IB is a high-level block diagram illustrating an overview of the operation of the system according to one embodiment of the present invention.
FIG. 2 is a block diagram illustrating the pre-allocation of contiguous files on static media, according to one embodiment of the present invention.
FIG. 3 is a block diagram illustrating the operation of the system, according to one embodiment of the present invention.
FIG. 4 is a block diagram illustrating the writing of data records stored in the buffer to static media, according to one embodiment of the present invention. FIG. 5 is a block diagram illustrating the consolidation of data records stored on static media, according to one embodiment of the present invention. FIG. 6 is a block diagram illustrating the chaining of multiple versions of data records, according to one embodiment of the present invention.
The figures depict embodiments of the present invention for purposes of illustration only. One skilled in the art will readily recognize from the following discussion that alternative embodiments of the structures and methods illustrated herein may be employed without departing from the principles of the invention described herein.
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS
I. System Overview
FIG. 1A illustrates a system 100 for facilitating fast, efficient database access based upon contiguous storage of data records according to frequency of access, according to one embodiment of the present invention.
A computer includes random access memory 101 and static media 103. Static media 103 can comprise, for example, magnetic or optical disks. A database application program 105 executes in memory 101. It is to be understood that although a single application program 105 is illustrated, the functionality of the application program 105 can be provided by a single program, or by multiple programs and processes as desired. The application program 105 accesses data records 107 in a database. Non-exhaustive examples of access operations include read, write, add and delete. Data records 107 are stored contiguously in one or more files 109 on static media 103. A subset of data records 107 are stored in a buffer 111 in memory 101. Additionally, an index 113 is stored in memory 101, the index 113 facilitating access of data records 107 stored both on static media 103 and in the buffer 111. The index 113 generally contains information such as the location of each data record 107 on static media 103 (and in memory 101 where applicable), keywords associated with the data record 107, indicators of locked records 107, and the like. The implementation details of the index 113 will be readily apparent to one of skill in the art. A consolidator process 115 also executes in memory 101. As explained in detail below, the consolidator process 115 contiguously stores non-obsolete data records 107 in available files 109, and makes obsolete files 109 available to the system 100.
A writer process 117 also executes in memory 101. The writer process 117 reads data records 107 from the buffer 111 in memory 101, and contiguously stores the data records 107 in available files 109 on static media 103. As explained in detail below, this results in the most frequently accessed data records 107 being stored contiguously.
II. Overview of System Operation
FIG. IB illustrates an overview of the operation of the system, according to one embodiment of the present invention. The operation is based upon the premise that the most recently accessed data records 107 statistically tend to be the most frequently accessed data records 107. Thus, by contiguously grouping both the most frequently and least frequently accessed data records 107, access of data records 107 during system 100 operation will tend to be in a contiguous as opposed to a random order. Because contiguous access involves significantly less disk-head movement than random access, the system 100 yields significantly improved performance over traditional database technologies. The operation of the system 100 implements this approach by dynamically, contiguously, and separately grouping both the most frequently and least frequently accessed data records 107. As explained in detail below, the system 100 operation begins with all data records 107 stored contiguously in files 109 on static media 103. When a data record 107 is accessed, it is stored in the buffer 111, such that the most recently accessed data records 107 are stored therein, for fast subsequent access.
It will be readily apparent that the buffer 111 will in time become full. Therefore, from time to time, the writer process 117 reads the buffer 111, and contiguously writes data records 107 stored therein to static media 103. Recall that these data records 107 have been recently accessed, and hence they are in the buffer 111. When the writer process 117 flushes the most recently accessed records 107 to media 103, the result is that the most recently accessed records will be stored contiguously, as illustrated in file 109d for fast subsequent access. The system 100 then keeps track of the fact that the flushed version of the data record 107 is the current version, and that the previous version, which was loaded from media 103 into the buffer 111 for access, is now obsolete.
The files 109a, 109b from which data records 107 are loaded into the buffer 111 for access will, in time, comprise both obsolete records 107 (that is to say, records that have subsequently been accessed and contiguously written to a separate file 109d on static media 103) and non-obsolete records 107 (that is to say, records that have not been subsequently accessed and written to a separate file 109d). It will be readily apparent that the obsolete records 107 comprise earlier versions of the most recently accessed data records 107, which have been subsequently contiguously written to a separate file 109d. The non-obsolete records 107 comprise the least recently accessed records 107. In other words, the non- obsolete records 107 have not subsequently been accessed and rewritten since being stored in their current location on static media 103.
As the most frequently accessed records 107 are contiguously stored, so too are the least frequently accessed records 107 contiguously stored. To achieve this, the consolidator process 115 reads files 109a, 109b stored on static media 103. Where a file 109a, 109b contains both non-obsolete records 107 and obsolete records 107, the consolidator process 115 writes the non-obsolete records 107 to a separate file 109c on static media 103, such that they are stored contiguously for subsequent access. Obsolete records can be skipped, since the updated versions of such records have already been written to file 109d. The consolidator process 115 then classifies the file 109a, 109b containing non-obsolete records 107 and obsolete records 107 as being available for subsequent contiguous storage of data records 107, by either the writer process 117 or the consolidator process 115. That is, this area of static media is reclaimed. In this manner, the most recently accessed and the least recently accessed data records 107 are both stored contiguously.
III. Pre-allocation of Contiguous Media
FIG. 2 illustrates the pre-allocation of contiguous files 109 on static media 103. In order to contiguously store data records 107, one or more contiguous files 109 are pre- allocated from an operating system 201. Generally, this pre-allocation is performed by a pre-allocation module 203, which can be a part of the application program 105, or a separate process as desired. In one embodiment, the pre-allocation module 203 allocates a desired number of files 109, each file 109 being a desired number N bytes in size. The pre- allocation module 203 sequentially writes N bytes to each file 109, to ensure that each file 109 occupies contiguous physical storage space on the static media 103. In other embodiments, other techniques known in the art are utilized to ensure contiguous physical allocation of file space on static media 103.
In one embodiment, the physical space on which all of the files 109 are stored is contiguous. In other embodiments, each file 109 comprises contiguous storage space on static media 103, but one or more of the files 109 may be stored non-contiguously relative to other files 109.
IV. Detailed System Operation
FIG. 3 illustrates the operation of the system. Data records 107 are stored contiguously in one or more files 109 on static media. The most recently (and hence most frequently) accessed data records 107 are also stored in a buffer 111 in memory 101. The buffer is large enough to hold some number M data records. The value of M is generally configurable, and comprises a design choice to be made by a system administrator or other party as desired. As explained above, the index 113 is also stored in memory 101. The application program 105 utilizes the index 113 to access data records 107. Where an accessed record 107 is already in the buffer 111, the application program 105 utilizes the buffered copy of the data record 107 for fast access. Where the data record 107 is not in the buffer 111, the application program 105 loads the data record from static media 103 into memory 101, and stores a copy of the data record 107 in the buffer 111. If there is room in the buffer 111, the data record 107 is simply stored there in available space. If the buffer 111 is full, the least recently accessed data record 107 (or alternatively some other data record 107) is overwritten. Of course, data records 107 that have been updated are not overwritten without first being written to static media 103 by the writer process 117, as explained below. When a data record 107 is stored in the buffer 111, the index 113 is updated to indicate the location of the data record 107 therein.
In one embodiment, the buffer 111 comprises a circular queue (as illustrated in FIG. 3). In that embodiment, data records 117 are stored at the tail of the queue, such that when the queue is full, the least recently entered data records 107 are overwritten with new data records 107. Other data structures and storage methodologies are utilized in other embodiments as desired.
It is to be understood that some accesses of data records 107 update the contents thereof (e.g. a write operation), whereas other accesses do not (for example, a read operation). In one embodiment, only updated data records 107 are stored in the buffer 111. In another, all accessed records 107 are so stored. Regardless, the application program 105 (or alternatively another element of the system 100) keeps track of which data records 107 in the buffer 111 have been updated since they were loaded from static media 103. The application program 105 uses entries in the index 113, or other conventional methodology apparent to one of skill in the art, to keep track of this information.
V. Writing of Records from Buffer to Media
FIG. 4 illustrates the writing of data records 107 stored in the buffer 111 to static media 103. A writer process 117 executes in memory 101. FIG. 4 illustrates the writer process 117 executing as a discrete process. It is to be understood that the associated functionality can be provided by a single process as illustrated, by the application program, or by more than one process or program as desired.
From time to time as desired, the writer process 117 reads the buffer, and contiguously stores data records 107 contained therein in one or more files 109 on static media 103. Generally, the writer process 117 determines which records 107 in the buffer 111 have not been stored on media 103 since last being updated, as described below. The writer process 117 contiguously appends these records 107 to an active file 109 on static media 103. An active file 109 is a file 109 in which the writer process 117 stores updated records 107 from the buffer 111, the active file 109 having available room for additional records 107. Generally, an active file 109 is a file that is available for storage of records 107, either as a result of being pre-allocated by the pre-allocation module 201, or as a result of having been made available by the consolidation process 115, as explained below. Once an active file 109 becomes full, the system 100 designates a new available file 109 as being active, and begins storing records 107 therein. The full file 109 is designated as no longer being active or available.
The writer process 117 (or alternatively the application program 105) keeps track of which records 107 in the buffer 111 have been copied to static media. The writer process 117 uses entries in the index 113, or other conventional methodology apparent to one of skill in the art, to keep track of this information. Because the system 100 keeps track of which records 107 in the buffer 111 have been updated since being copied from media 103, and which updated records 107 in the buffer 111 have been written to media 103, the writer process 117 is able to only contiguously write those records 107 to media 103 that are more current than the latest version stored on media. Additionally, when the writer process 117 copies an updated data record 107 to static media, the system 100 classifies earlier versions of the data record 107 stored on media as being obsolete. The system uses methodology apparent to one of skill in the art to keep track of obsolete records.
The frequency with which the writer process 117 executes is configurable, and comprises a design choice to be made by a system administrator or other party as desired. In some embodiments, the writer process 177 executes at least whenever the buffer 111 is full, such that before an updated data record 107 is overwritten, all updated data records 107 are contiguously written to one or more active files 109 on media 103.
Additionally, when the writer process 117 contiguously writes data records from the buffer 111 to media 103, the index 113 is updated accordingly.
VI. Consolidation of Records on Media
FIG. 5 illustrates the consolidation of data records 107 stored on static media 103. A consolidator process 115 executes in memory 101. FIG. 5 illustrates the consolidator 115 as a single process, but of course the associated functionality can alternatively be provided by the application program, or by more than one process or program as desired.
From time to time as desired, the consolidator process 115 reads the files 109 on static media 103 in which data records 107 are stored. When the consolidator process 115 encounters a file 109 in which both obsolete and non-obsolete records are stored, the consolidator process 115 reads the non-obsolete records 107 from that file 109, and contiguously stores them in an available file 109, such that the least recently accessed data records (in other words, the ones that have not been updated recently, and hence are non- obsolete) are stored contiguously. The file 109 containing obsolete and non-obsolete records is then classified by the system as being available for subsequent use by the writer process 117 or the consolidator process 115.
The frequency with which the consolidator process 115 executes is configurable, and comprises a design choice to be made by a system administrator or other party as desired. Additionally, when the consolidator process 117 stores data records in available files and classifies existing files as being available, the index 113 is updated accordingly.
VII. Chaining of Records
FIG. 6 illustrates the chaining of versions of data records 107. In some embodiments of the present invention, when a data record 107 is updated, a pointer 601 is maintained from the updated data record 107 to the previous version thereof. This pointer 301 can be in the record 107 itself (as illustrated), in the index 113, or elsewhere as desired. Where each version of a data record 107 has a pointer 301 to the previous version, the "chain" of pointers 301 can be traversed in order to examine editing history of a data record 107. The chain has other uses as well, for example error recovery after a system crash. In one embodiment, no version of a data record 107 is classified as obsolete until a certain number of more recent versions of the record always exist. For example, a system administrator could configure the system 100 such that three versions of each data record always exist. Then, only when three more recent versions exist would a prior version of a data record be classified as obsolete. In one embodiment, this result is achieved by setting the size of the buffer 111 and files 109, as well as the execution frequency of the writer process 117 and the consolidator process 115 accordingly. VIII. Flexibility of Record Type
Data records 107 can comprise data of any kind, for example, names and addresses, employee information, inventory information, or profiles summarizing transactions, for example credit card transactions. Data records 107 can be exported or imported into other applications as desired. For example, in one embodiment, data records 107 comprise profiles summarizing credit card transactions. These profiles are utilized as input for a predictive statistical modeling program. In another embodiment, the profiles comprise output from the predictive statistical modeling program.
IX. Conclusion
The system 100 contiguously stores the most recently accessed data records 107 together, and contiguously stores the least recently accessed records 107 together. The most recently accessed records 107 are maintained in the buffer 111 and contiguously written to active files 109 on static media 103. The least recently accessed data records 107 are contiguously stored in available files 107 on static media 103. Because the storage of both the most and least recently (and thus frequently) accessed data records 107 is contiguous, a minimum of disk-head movement is required in order to read and write the data records 107. Because the mechanical operation of disk-head movement is significantly slower than the other, electrical operations required for data record 107 access, the system 100 provides remarkable performance improvements over previously known database technologies. As will be understood by those familiar with the art, the invention may be embodied in other specific forms without departing from the spirit or essential characteristics thereof. Likewise, the particular capitalization or naming of the modules, protocols, features, attributes or any other aspect is not mandatory or significant, and the mechanisms that implement the invention or its features may have different names or formats. Additionally, it will be readily apparent to one of skill in the art that functionality described herein can be implemented as software, hardware, firmware or any desired combination thereof. All such instantiations are within the scope of the present invention. Accordingly, the disclosure of the present invention is intended to be illustrative, but not limiting, of the scope of the invention, which is set forth in the following claims.

Claims

What is claimed is:
L A method in a computer system for facilitating quick access of stored data, the method comprising: storing a plurality of data records on media, in at least one contiguous file; storing a subset of the data records in electronic computer memory, the subset comprising the most recently accessed data records; contiguously writing at least a portion of the subset of data records stored in electronic computer memory to at least one available file on media; for at least one file on media, classifying as obsolete data records therein that have subsequently been written to another file; contiguously copying non-obsolete data records in at least one file on media to at least one available file on media; and classifying at least one file on media from which non-obsolete data records were copied as being available for subsequent contiguous storage of data records.
2. The method of claim 1, further comprising: pre- allocating at least one contiguous region of media, for contiguous storage of at least one file.
3. The method of claim 1, further comprising: pre-allocating n contiguous files of m bytes each on blank media, where n and m are integers greater than or equal to one.
4. The method of claim 1, wherein: the portion of the subset of the data records in electronic computer memory that is contiguously written to media comprises data records that have not been written to media since having been updated.
5. The method of claim 1, further comprising: storing the subset of the data records in electronic computer memory in a circular queue.
6. The method of claim 1, further comprising: storing the subset of the data records in electronic computer memory in a variable sized buffer.
7. The method of claim 1, further comprising: responsive to an attempt to access a data record, determining whether the data record is in electronic computer memory; and responsive to a determination that the data record is not in electronic computer memory, loading the data record into electronic computer memory.
8. The method of claim 1, further comprising: updating an existing data record; storing the updated data record; and storing a pointer from the updated data record to the existing data record.
9. The method of claim 8, further comprising: utilizing the pointer to trace changes to a data record.
10. The method of claim 8, further comprising: utilizing the pointer to recover a corrupted data record.
11. The method of claim 1 , wherein: data records comprise profiles, a profile being data that summarizes at least one transaction.
12. The method of claim 11, wherein: at least one profile is used as input for a predictive statistical modeling program.
13. The method of claim 11 , wherein: at least one profile comprises output from a predictive statistical modeling program.
14. A computer program product for facilitating quick access of stored data, the computer program product comprising: program code for storing a plurality of data records on media, in at least one contiguous file; program code for storing a subset of the data records in electronic computer memory, the subset comprising the most recently accessed data records; program code for contiguously writing at least a portion of the subset of data records stored in electronic computer memory to at least one available file on media; program code for classifying as obsolete, for at least one file on media, data records therein that have subsequently been written to another file; program code for contiguously copying non-obsolete data records in at least one file on media to at least one available file on media; program code for classifying at least one file on media from which non- obsolete data records were copied as being available for subsequent contiguous storage of data records; and a computer readable medium on which the program codes are stored.
15. computer program product of claim 14, further comprising: program code for pre-allocating at least one contiguous region of media, for contiguous storage of at least one file.
16. The computer program product of claim 14, further comprising: program code for pre-allocating n contiguous files of m bytes each on blank media, where n and m are integers greater than or equal to one.
17. The computer program product of claim 14, further comprising: program code for contiguously writing data records that have not been written to media since having been updated to at least one file on media.
18. The computer program product of claim 14, further comprising: program code for storing the subset of the data records in electronic computer memory in a circular queue.
19. The computer program product of claim 14, further comprising: program code for storing the subset of the data records in electronic computer memory in a variable sized buffer.
20. The computer program product of claim 14, further comprising: program code for determining, responsive to an attempt to access a data record, whether the data record is in electronic computer memory; and program code for loading the data record into electronic computer memory, responsive to a determination that the data record is not in electronic computer memory.
21. The computer program product of claim 14, further comprising: program code for updating an existing data record; program code for storing the updated data record; and program code for storing a pointer from the updated data record to the existing data record.
22. The computer program product of claim 21, further comprising: program code for utilizing the pointer to trace changes to a data record.
23. The computer program product of claim 21, further comprising: program code for utilizing the pointer to recover a corrupted data record.
24. The computer program product of claim 14, further comprising: program code for using at least one data record that summarizes at least one transaction as input for a predictive statistical modeling program.
25. The computer program product of claim 14, further comprising: program code for receiving at least one data record that summarizes at least one transaction as output from a predictive statistical modeling program.
26. A computer system for facilitating quick access of stored data, the computer system comprising: a storage module, for storing a plurality of data records on media, in at least one contiguous file; a sub-set storage module, for storing a subset of the data records in electronic computer memory, the subset comprising the most recently accessed data records, the sub-set storage module being coupled to the storage module; a writing module, for contiguously writing at least a portion of the subset of data records stored in electronic computer memory to at least one available file on media, the writing module being coupled to the sub- set storage module; a classification module, for classifying as obsolete, for at least one file on media, data records therein that have subsequently been written to another file, the classification module being coupled to the writing module; a copying module, for contiguously copying non-obsolete data records in at least one file on media to at least one available file on media, the copying module being coupled to the classification module; and an availability-classification module, for classifying at least one file on media from which non-obsolete data records were copied as being available for subsequent contiguous storage of data records, the availability-classification module being coupled to the copying module.
27. The computer system of claim 26, further comprising: a pre-allocation module, for pre-allocating at least one contiguous region of media, for contiguous storage of at least one file, the pre-allocation module being coupled to the storage module.
28. The computer system of claim 26, further comprising: a pre-allocation module, for pre-allocating n contiguous files of m bytes each on blank media, where n and m are integers greater than or equal to one, the pre-allocation module being coupled to the storage module.
29. The computer system of claim 26, wherein: the writing module is further for contiguously writing to media data records in electronic computer memory that have not been written to media since having been updated.
30. The computer system of claim 26, wherein: the sub-set storage module is further for storing the subset of the data records in electronic computer memory in a circular queue.
31. The computer system of claim 26, further comprising: the sub-set storage module is further for storing the subset of the data records in electronic computer memory in a variable sized buffer.
32. The computer system of claim 26, further comprising: a determination module, for determining, responsive to an attempt to access a data record, whether the data record is in electronic computer memory, the determination module being coupled to the sub-set storage module; and a loading module, for loading the data record into electronic computer memory responsive to a determination that the data record is not in electronic computer memory, the loading module being coupled to the determination module.
33. The computer system of claim 26, further comprising: an updating module, for updating an existing data record, the updating module being coupled to the sub-set storage module; an updated-record storage module, for storing the updated data record, the updated-record storage module being coupled to the updating module; and a pointer storage module, for storing a pointer from the updated data record to the existing data record, the pointer storage module being coupled to the updated-record storage module.
34. The computer system of claim 33, further comprising: a pointer utilization module, for utilizing the pointer to trace changes to a data record, the pointer utilization module being coupled to the pointer storage module.
35. The computer system of claim 33, further comprising: a pointer utilization module, for utilizing the pointer to recover a corrupted data record, the pointer utilization module being coupled to the pointer storage module.
36. The computer system of claim 26, further comprising: a data record utilization module, for utilizing at least one data record that summarizes at least one transaction as input for a predictive statistical modeling program, the data record utilization module being coupled to the storage module.
37. The computer system of claim 26, further comprising: a data record reception module, for receiving at least one data record that summarizes at least one transaction as output from a predictive statistical modeling program, the data record reception module being coupled to the storage module.
38. A method in a computer system for facilitating quick access of stored data, the method comprising: loading accessed data records into computer memory; dynamically consolidating data records accessed most recently by contiguously flushing accessed data records from computer memory to a separate file on static media; and dynamically consolidating data records accessed least recently by writing non-accessed data records to a separate file on static media.
PCT/US2001/028700 2000-09-28 2001-09-13 Fast data retrieval based upon contiguous consolidation of records according to frequency of access WO2002027526A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
AU2001292653A AU2001292653A1 (en) 2000-09-28 2001-09-13 Fast data retrieval based upon contiguous consolidation of records according to frequency of access

Applications Claiming Priority (4)

Application Number Priority Date Filing Date Title
US23655900P 2000-09-28 2000-09-28
US60/236,559 2000-09-28
US09/747,766 US6691136B2 (en) 2000-09-28 2000-12-22 Fast data retrieval based upon contiguous consolidation of records according to frequency of access
US09/747,766 2000-12-22

Publications (1)

Publication Number Publication Date
WO2002027526A1 true WO2002027526A1 (en) 2002-04-04

Family

ID=26929891

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2001/028700 WO2002027526A1 (en) 2000-09-28 2001-09-13 Fast data retrieval based upon contiguous consolidation of records according to frequency of access

Country Status (3)

Country Link
US (1) US6691136B2 (en)
AU (1) AU2001292653A1 (en)
WO (1) WO2002027526A1 (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2590195A (en) * 2018-05-25 2021-06-23 Thinkanalytics Ltd Content Recommendation System
US11343573B2 (en) 2018-05-25 2022-05-24 Thinkanalytics Ltd Content recommendation system and method

Families Citing this family (25)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1193962A1 (en) * 2000-09-21 2002-04-03 Siemens Aktiengesellschaft Transmission of real-time data from a network element to an application server with recovery method for link failure
US8356019B1 (en) * 2002-12-11 2013-01-15 Altera Corporation Method and apparatus for utilizing patterns in data to reduce file size
JP2004304310A (en) * 2003-03-28 2004-10-28 Minolta Co Ltd Image processing apparatus
JP4457614B2 (en) * 2003-09-16 2010-04-28 富士ゼロックス株式会社 Information providing system and program thereof
JP4428993B2 (en) * 2003-11-27 2010-03-10 株式会社日立製作所 Disk array device and disk array device control method
US8832706B2 (en) 2006-12-22 2014-09-09 Commvault Systems, Inc. Systems and methods of data storage management, such as dynamic data stream allocation
US7533135B2 (en) * 2005-07-01 2009-05-12 Sap Aktiengesellschaft Methods and systems for reducing database accesses in an object-oriented system
US20070005552A1 (en) * 2005-07-01 2007-01-04 Udo Klein Methods and systems for reducing transient memory consumption in an object-oriented system
US7849030B2 (en) * 2006-05-31 2010-12-07 Hartford Fire Insurance Company Method and system for classifying documents
JP4859595B2 (en) * 2006-09-01 2012-01-25 株式会社日立製作所 Storage system, data relocation method thereof, and data relocation program
US8285656B1 (en) 2007-03-30 2012-10-09 Consumerinfo.Com, Inc. Systems and methods for data verification
US8312033B1 (en) 2008-06-26 2012-11-13 Experian Marketing Solutions, Inc. Systems and methods for providing an integrated identifier
DE102010006450B4 (en) * 2010-02-01 2019-03-28 Bruker Daltonik Gmbh Stepped search for microbial spectra in reference libraries
CN102651008B (en) 2011-02-28 2015-06-17 国际商业机器公司 Method and equipment for organizing data records in relational data base
US9639297B2 (en) 2012-03-30 2017-05-02 Commvault Systems, Inc Shared network-available storage that permits concurrent data access
US9063938B2 (en) 2012-03-30 2015-06-23 Commvault Systems, Inc. Search filtered file system using secondary storage, including multi-dimensional indexing and searching of archived files
US10102536B1 (en) 2013-11-15 2018-10-16 Experian Information Solutions, Inc. Micro-geographic aggregation system
US10262362B1 (en) 2014-02-14 2019-04-16 Experian Information Solutions, Inc. Automatic generation of code for attributes
US9798596B2 (en) 2014-02-27 2017-10-24 Commvault Systems, Inc. Automatic alert escalation for an information management system
US9898213B2 (en) 2015-01-23 2018-02-20 Commvault Systems, Inc. Scalable auxiliary copy processing using media agent resources
US10313243B2 (en) 2015-02-24 2019-06-04 Commvault Systems, Inc. Intelligent local management of data stream throttling in secondary-copy operations
CN116205724A (en) 2017-01-31 2023-06-02 益百利信息解决方案公司 Large scale heterogeneous data ingestion and user resolution
US10963434B1 (en) 2018-09-07 2021-03-30 Experian Information Solutions, Inc. Data architecture for supporting multiple search models
US11941065B1 (en) 2019-09-13 2024-03-26 Experian Information Solutions, Inc. Single identifier platform for storing entity data
US11880377B1 (en) 2021-03-26 2024-01-23 Experian Information Solutions, Inc. Systems and methods for entity resolution

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5659704A (en) * 1994-12-02 1997-08-19 Hewlett-Packard Company Methods and system for reserving storage space for data migration in a redundant hierarchic data storage system by dynamically computing maximum storage space for mirror redundancy
US5666512A (en) * 1995-02-10 1997-09-09 Hewlett-Packard Company Disk array having hot spare resources and methods for using hot spare resources to store user data
US6067608A (en) * 1997-04-15 2000-05-23 Bull Hn Information Systems Inc. High performance mechanism for managing allocation of virtual memory buffers to virtual processes on a least recently used basis

Family Cites Families (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
BE629069A (en) 1962-03-05
US5043885A (en) 1989-08-08 1991-08-27 International Business Machines Corporation Data cache using dynamic frequency based replacement and boundary criteria
US5416915A (en) 1992-12-11 1995-05-16 International Business Machines Corporation Method and system for minimizing seek affinity and enhancing write sensitivity in a DASD array
US5499354A (en) 1993-05-19 1996-03-12 International Business Machines Corporation Method and means for dynamic cache management by variable space and time binding and rebinding of cache extents to DASD cylinders
US5555399A (en) 1994-07-07 1996-09-10 International Business Machines Corporation Dynamic idle list size processing in a virtual memory management operating system
JPH0944381A (en) 1995-07-31 1997-02-14 Toshiba Corp Method and device for data storage
US5778442A (en) 1996-03-25 1998-07-07 Oracle Corporation Method and apparatus for buffering data in a computer system
US6003114A (en) 1997-06-17 1999-12-14 Emc Corporation Caching system and method providing aggressive prefetch
US6070225A (en) * 1998-06-01 2000-05-30 International Business Machines Corporation Method and apparatus for optimizing access to coded indicia hierarchically stored on at least one surface of a cyclic, multitracked recording device
US6269431B1 (en) * 1998-08-13 2001-07-31 Emc Corporation Virtual storage and block level direct access of secondary storage for recovery of backup data
US6430539B1 (en) * 1999-05-06 2002-08-06 Hnc Software Predictive modeling of consumer financial behavior
US6389510B1 (en) * 2000-04-25 2002-05-14 Lucent Technologies Inc. Method and apparatus for caching web-based information

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5659704A (en) * 1994-12-02 1997-08-19 Hewlett-Packard Company Methods and system for reserving storage space for data migration in a redundant hierarchic data storage system by dynamically computing maximum storage space for mirror redundancy
US5666512A (en) * 1995-02-10 1997-09-09 Hewlett-Packard Company Disk array having hot spare resources and methods for using hot spare resources to store user data
US6067608A (en) * 1997-04-15 2000-05-23 Bull Hn Information Systems Inc. High performance mechanism for managing allocation of virtual memory buffers to virtual processes on a least recently used basis

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2590195A (en) * 2018-05-25 2021-06-23 Thinkanalytics Ltd Content Recommendation System
US11343573B2 (en) 2018-05-25 2022-05-24 Thinkanalytics Ltd Content recommendation system and method
GB2590195B (en) * 2018-05-25 2022-08-10 Thinkanalytics Ltd Content Recommendation System
US11812107B2 (en) 2018-05-25 2023-11-07 Thinkanalytics Ltd Content recommendation system and method

Also Published As

Publication number Publication date
AU2001292653A1 (en) 2002-04-08
US6691136B2 (en) 2004-02-10
US20020103784A1 (en) 2002-08-01

Similar Documents

Publication Publication Date Title
US6691136B2 (en) Fast data retrieval based upon contiguous consolidation of records according to frequency of access
US6883074B2 (en) System and method for efficient write operations for repeated snapshots by copying-on-write to most recent snapshot
US8024507B2 (en) Transaction-safe FAT file system improvements
US5617566A (en) File portion logging and arching by means of an auxilary database
CN1559041B (en) Sharing objects between computer systems
EP1311940B1 (en) Improved space allocation in a write anywhere file system
KR100259432B1 (en) Outboard data migration in a volume stacking library
US7240172B2 (en) Snapshot by deferred propagation
US7174420B2 (en) Transaction-safe FAT file system
US7805584B2 (en) Method and system for restoring data
JP2646399B2 (en) Method and apparatus for efficiently managing a write-once volume
US6134562A (en) System for modifying a database using a transaction log
US7797290B2 (en) Database reorganization program and method
US7693883B2 (en) Online data volume deletion
US7949632B2 (en) Database-rearranging program, database-rearranging method, and database-rearranging apparatus
CN112346663B (en) Multi-partition rotation data writing and clearing method and system
US20090187719A1 (en) Data backup method for logical volume manager
JP4288929B2 (en) Data storage apparatus and data storage method
JP3313207B2 (en) Information storage device and information management method
JPH073661B2 (en) Information processing system and control method thereof
JP2000099533A (en) File access method/system

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX MZ NO NZ PL PT RO RU SD SE SG SI SK SL TJ TM TR TT TZ UA UG UZ VN YU ZA ZW

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): GH GM KE LS MW MZ SD SL SZ TZ UG ZW AM AZ BY KG KZ MD RU TJ TM AT BE CH CY DE DK ES FI FR GB GR IE IT LU MC NL PT SE TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG

121 Ep: the epo has been informed by wipo that ep was designated in this application
REG Reference to national code

Ref country code: DE

Ref legal event code: 8642

122 Ep: pct application non-entry in european phase
NENP Non-entry into the national phase

Ref country code: JP