1. Field of Invention
This invention relates to computing and in particular to the field of optimizing the building of KStore interlocking trees data structures.
2. Description of Related Art
The process of optimizing data structures and methods for accomplishing such is fairly common in the art. For example, U.S. Pat. No. 6,141,655, entitled “Method and apparatus for optimizing and structuring data by designing a cube forest data structure for hierarchically split cube forest template” teaches a method to structure data that enables quick searching for particular aggregates and the compact storage of this data within a multidimensional database (MDB). U.S. Pat. No. 6,470,335 entitled “System and method for optimizing the structure and display of complex data filters teaches a system and method for optimizing the structure and visual display of complex data filters that are used to query a relational database.
U.S. Patent Application No. 20040103081, entitled “Method and system for optimizing data searches in tree structures” teaches a method for optimizing data searches in tree structures by organizing multiple search levels of data into sub-trees contained in fixed size blocks of shared external memory of an embedded processing system, and requiring each reference to the data to proceed from one-half of a sub-tree during a descent of the search tree based on a search pattern.
There are several limitations with the above methods of optimization and compression. While all of the examples deal with some form of data optimization, they all relate to schemes useful in optimizing the structure of data and queries in traditional relational databases.
All references cited herein are incorporated herein by reference in their entireties.
A method for optimizing the construction of a KStore includes providing a data set having a plurality of records with a plurality of fields, providing an optimization structure from a sample of the data set and analyzing the optimization structure to determine a field order for the records contained in the data set. A KStore is provided from the data set in accordance with the field order. The sample of the data set can include the entire data set, a random sample of the data set or a predetermined number of records from the data set. The data set has an initial order having earlier records and later records and the sample can include a plurality of the earlier records. The sample of the data set includes a user determined number of records from the data set. The optimization structure can be a KStore. The analyzing of the optimization structure includes obtaining analysis data from the optimization structure. The method includes querying the optimization structure to determine a number of record fields. The optimization structure is queried to determine a number of unique variables in a record field. A data structure is provided to contain the analysis data and the number of fields within a record in the data structure is recorded. The data structure can contain the analysis data a field name can be recorded in the data structure. A variable in the data structure is representative of a number of differing field values in a field. A plurality of variables is recorded in the data structure each variable of the plurality of variables being representative of a number of differing field values in a respective field of the plurality of fields.
Our solution overcomes the inherent limitations associated with the prior art of optimization through compression that use traditional relational databases, by using a method that was specifically invented for use in KStore interlocking trees datastores.
We have developed a system and various methods for creating and using interlocking trees datastores and various features of said interlocking trees datastores. We refer to an instantiation of these interlocking trees datastores that we have developed as a “KStore” or just “K”. In particular, these structures and methods have been described in patent applications U.S. Ser. Nos. 10/385,421, (now published as US 20040181547 A1) and 10/666,382, by inventor Mazzagatti. Additionally, we described a system in which such interlocking trees datastores could more effectively be used in U.S. Ser. No. 10/879,329. We hereby incorporate these referenced patent documents in their respective entireties into this patent by this reference. While the system and method we describe in this patent relate with particularity to the specific interlocking trees datastores which inventor Mazzagatti hereof described in the above-referenced patent (applications), it should be readily apparent that the system and methods described herein may also be applicable to similar structures.
The invention described herein below relates to interlocking trees datastores having a structure that has been described in prior patent applications and may be readily used by and adapted to devices described in patent application Ser. No. 10/759,466 (now published as 20050165749) and Ser. No. 10/879,329, which themselves are for use with such interlocking trees datastores, which are hereby incorporated by this reference in their respective entireties.
As explained in the above mentioned patents, a KStore data store may be built within the memory of a computer system or computer systems. Depending on the amount of data being loaded, the KStore data store may be quite large, and thus, the amount of computer memory used may be quite large as well. This invention provides a method to reduce the size requirements associated with a large K by optimizing how the data is loaded and how the data store is built. In this invention an initial K may be used to record and evaluate the relationships of the incoming data and calculate a more efficient order for the data. The new data order may then be used to learn the entire data set, with the result that the required space to hold a K may be decreased.
The invention will be described in conjunction with the following drawings in which like reference numerals designate like elements and wherein:
In the current embodiment, data coming into a KStore are learned, formed into a unique interlocking tree data store (K), and K nodes representing the relationships among the data may be constructed. Refer to
The size of a K may be a direct result of the number of K nodes required to record the data and the number of K nodes required may be directly related to the order and relationships of the incoming data. Because we anticipate working with large data sets with large amounts of data, the size of the K structure may be exceedingly large. Anything that can be done to reduce the size of K is important. In effect, this invention provides a method to reorder data and compress large amounts of data being loaded into the K Engine 02 through the Learn Engine 03. The data store which may be built after optimization may be compressed because it may have fewer K nodes and smaller as Result lists. By reducing the number of K nodes in the interlocking trees datastore, the data may be loaded faster, its size may be reduced, and because there are fewer nodes to traverse, it may be faster to query.
The optimization process may begin with a procedure which we refer to here as “Teach.” Refer again to
Loading Data
In one embodiment, data that may be loaded by the K Engine may be formatted in .csv (comma separated value) format, such as data exported from Microsoft Excel. In another embodiment, the data may be loaded from XML or a message queue. However, those skilled in the art will understand that any other formats may be used. The data that comes in may be passed from a data source application 05 to either the Learn Engine 03 or to the Teach Engine 04.
To begin optimization, the Teach procedure may first determine if the data was previously optimized. In one embodiment, a special file containing information pertaining to how to optimize the incoming data may be present. If the file containing optimization information is present, then this existing optimization may be used in loading the data. If the data was not previously optimized or if it is determined that the optimization process should be performed again, the Teach procedure may open the data file and start counting the records. Within the Teach procedure, there may be a counter that is incremented as each record is read.
Depending on the size of the data set being read, as possibly determined by the above mentioned counter, the user may elect to sample just a portion of the data or all of the data set before the optimization process begins. For example, if the data set is extremely large (e.g. consisting of millions of records), the user may elect to stop reading in records when the number of records reaches 10,000. If however, the number of records is less than 10,000 for example, the user may set a parameter to load the entire data set before the optimization process begins.
As records are read or received by the Teach Engine they may be grouped into blocks. When a block is filled, the block may be passed to the Learn Engine 03. As taught in U.S. patent Ser. No. 10/879,329, entitled, “Functional operations for accessing and/or building interlocking trees datastores to enable their use with applications software,” the Learn Engine provides an ability to receive or get data in various forms from various sources and to particlize the data such that the K Engine may process it. The Learn Engine basically provides interface, translation, and particlizing functions in order to provide the K Engine with particlized data to process. Thus, the Learn Engine may process appropriate protocol, transport, and translation capabilities to receive input from any expected data sources, whether they are XML, Oracle, DBMS or whatever, whether they are from static or streaming sources or even external event-triggered real-time sensor sources. Of course, the particular embodiment may be geared to any combination of such inputs. Learn may also be able to translate the data from such sources into appropriate sized chunks of data that may be readily particlized to fit with the expected data particle formatting for a KStore, and it may have a particlizer to send such particles to the K Engine, utilizing any buffering as may be appropriate.
As each record is passed to the Learn Engine 03, the Learn Engine 03 may particlize the data, and pass the particles to a K Engine to be processed into a K or interlocking trees data store 01.
Optimization
In a preferred embodiment, the optimization process uses the Learn Engine to “learn” either all, or a sub-set of the records, before the optimal order may be calculated. This optimal order may then be used to relearn the data already learned plus any new records. Using the above exemplary information, the user may decide that 10,000 data records (of a 1,000,000 record data set) may be learned before the optimal order may be determined.
The optimal order for loading data into a Learn Engine may be determined by a Teach Engine analytic using a KStore constructed from the sample data set. Note however that any other structures which help identify the number of fields and their distinct values may be used. The Teach Engine may first identify all of the fields used within the data. The analytic may then determine, preferably from a K, the number of unique values that exist for each specific field.
Refer to
In
In the current embodiment, if the user chooses to optimize the date, the Teach Engine may run the optimization analytic. The analytic calculates the number of unique values for each field in the sample set of records (e.g. the first 10,000 records). Based on this calculation, a table or any other structure known to those skilled in the art, may be created which has all of the fields sorted from the field with the lowest number of unique values to the field with the highest number of unique values. For example, the following table shows how the fields in the above figure might be sorted from the lowest magnitude to the highest magnitude. Note that due to the small number of records in the data set, all the records were used for the optimization process.
Because all of the records occur on the same day of the week, “Tuesday,” the number of unique field values for “Day of Week” in the table is “1”. “Salesperson,” “Item,” and “State” also have the value “1” since there is only one unique value for each of those fields. Because there are three different discrete values for “Sale amt.”, the value in the table for “Sale amt” is “3”. There are five unique values for “Invoice number,” therefore, the value in the table for “Invoice number” is “5”. The table values, when sorted from lowest to highest, indicate an optimal load order. This means that K subcomponent nodes for fields with a value of 1 may be loaded into a K interlocking trees datastore only once. Those with higher numbers of unique field values may be loaded only the number of times corresponding to the unique number of field values. This may reduce the number of K nodes that may be constructed in the resulting interlocking trees datastore.
After optimization, the Teach Engine may store information about the optimal load order. This may be saved as metadata and may be saved in any manner known to those skilled in the art. If the data is ever re-loaded, the optimal order may be determined either by reusing the previously determined optimal order or the optimal order may be re-calculated. The Teach procedure may then reference the optimal load order information and begin loading the data into the Learn Engine field by field using the optimal load order determined during the optimization process.
The load order indicates which field to load first. For example in
While the invention has been described in detail and with reference to specific examples thereof, it will be apparent to one skilled in the art that various changes and modifications can be made therein without departing from the spirit and scope thereof.
| Number | Name | Date | Kind |
|---|---|---|---|
| 4286330 | Isaacson | Aug 1981 | A |
| 5245337 | Bugajski | Sep 1993 | A |
| 5293164 | Bugajski | Mar 1994 | A |
| 5592667 | Bugajski | Jan 1997 | A |
| 5630125 | Zellweger | May 1997 | A |
| 5634133 | Kelley | May 1997 | A |
| 5829004 | Au | Oct 1998 | A |
| 5894311 | Jackson | Apr 1999 | A |
| 5918229 | Davis et al. | Jun 1999 | A |
| 5930805 | Marquis | Jul 1999 | A |
| 5963965 | Vogel | Oct 1999 | A |
| 5966709 | Zhang | Oct 1999 | A |
| 5970490 | Morgenstern | Oct 1999 | A |
| 5978794 | Agrawal et al. | Nov 1999 | A |
| 5983232 | Zhang | Nov 1999 | A |
| 6018734 | Zhang | Jan 2000 | A |
| 6029170 | Garger | Feb 2000 | A |
| 6031993 | Andrews et al. | Feb 2000 | A |
| 6102958 | Meystel | Aug 2000 | A |
| 6115715 | Traversat et al. | Sep 2000 | A |
| 6138115 | Agrawal et al. | Oct 2000 | A |
| 6138117 | Bayardo | Oct 2000 | A |
| 6144962 | Weinberg et al. | Nov 2000 | A |
| 6160549 | Touma et al. | Dec 2000 | A |
| 6233575 | Agrawal et al. | May 2001 | B1 |
| 6275817 | Reed et al. | Aug 2001 | B1 |
| 6278987 | Reed et al. | Aug 2001 | B1 |
| 6286002 | Axaopoulos et al. | Sep 2001 | B1 |
| 6341281 | MacNicol et al. | Jan 2002 | B1 |
| 6356902 | Tan et al. | Mar 2002 | B1 |
| 6360224 | Chickering | Mar 2002 | B1 |
| 6373484 | Orell et al. | Apr 2002 | B1 |
| 6381600 | Lau | Apr 2002 | B1 |
| 6389406 | Reed et al. | May 2002 | B1 |
| 6394263 | McCrory | May 2002 | B1 |
| 6453314 | Chan et al. | Sep 2002 | B1 |
| 6470277 | Chin et al. | Oct 2002 | B1 |
| 6470344 | Kothuri et al. | Oct 2002 | B1 |
| 6473757 | Garofalakis et al. | Oct 2002 | B1 |
| 6477683 | Killian et al. | Nov 2002 | B1 |
| 6499026 | Rivette et al. | Dec 2002 | B1 |
| 6505184 | Reed et al. | Jan 2003 | B1 |
| 6505205 | Kothuri et al. | Jan 2003 | B1 |
| 6581063 | Kirkman | Jun 2003 | B1 |
| 6591272 | Williams | Jul 2003 | B1 |
| 6604114 | Toong et al. | Aug 2003 | B1 |
| 6615202 | Ding et al. | Sep 2003 | B1 |
| 6624762 | End, III | Sep 2003 | B1 |
| 6635089 | Burkett et al. | Oct 2003 | B1 |
| 6662185 | Stark et al. | Dec 2003 | B1 |
| 6681225 | Uceda-Sosa et al. | Jan 2004 | B1 |
| 6684207 | Greenfield et al. | Jan 2004 | B1 |
| 6691109 | Bjornson et al. | Feb 2004 | B2 |
| 6704729 | Klein et al. | Mar 2004 | B1 |
| 6711585 | Copperman et al. | Mar 2004 | B1 |
| 6745194 | Burrows | Jun 2004 | B2 |
| 6748378 | Lavender et al. | Jun 2004 | B1 |
| 6751622 | Puri et al. | Jun 2004 | B1 |
| 6760720 | De Bellis | Jul 2004 | B1 |
| 6768995 | Their et al. | Jul 2004 | B2 |
| 6769124 | Schoening et al. | Jul 2004 | B1 |
| 6799184 | Bhatt et al. | Sep 2004 | B2 |
| 6804688 | Kobayashi et al. | Oct 2004 | B2 |
| 6807541 | Bender et al. | Oct 2004 | B2 |
| 6816856 | Baskins et al. | Nov 2004 | B2 |
| 6826556 | Miller et al. | Nov 2004 | B1 |
| 6831668 | Cras et al. | Dec 2004 | B2 |
| 6868414 | Khanna et al. | Mar 2005 | B2 |
| 6900807 | Liongosari et al. | May 2005 | B1 |
| 6920608 | Davis | Jul 2005 | B1 |
| 6931401 | Gibson et al. | Aug 2005 | B2 |
| 6952736 | Westbrook | Oct 2005 | B1 |
| 6965892 | Uceda-Sosa et al. | Nov 2005 | B1 |
| 7027052 | Thorn et al. | Apr 2006 | B1 |
| 7130859 | Kobayashi | Oct 2006 | B2 |
| 7228296 | Matsude | Jun 2007 | B2 |
| 20010010048 | Kobayashi | Jul 2001 | A1 |
| 20020124003 | Rajasekaran et al. | Sep 2002 | A1 |
| 20020138353 | Schreiber et al. | Sep 2002 | A1 |
| 20020143735 | Ayi et al. | Oct 2002 | A1 |
| 20020143783 | Bakalash et al. | Oct 2002 | A1 |
| 20020188613 | Chakraborty et al. | Dec 2002 | A1 |
| 20020194173 | Bjornson et al. | Dec 2002 | A1 |
| 20030009443 | Yatviskly | Jan 2003 | A1 |
| 20030033279 | Gibson et al. | Feb 2003 | A1 |
| 20030093424 | Chun et al. | May 2003 | A1 |
| 20030115176 | Bobroff et al. | Jun 2003 | A1 |
| 20030120651 | Bernstein | Jun 2003 | A1 |
| 20030204513 | Bumbulis | Oct 2003 | A1 |
| 20030204515 | Shadmon et al. | Oct 2003 | A1 |
| 20030217335 | Chung et al. | Nov 2003 | A1 |
| 20040107186 | Najork et al. | Jun 2004 | A1 |
| 20040133590 | Henderson et al. | Jul 2004 | A1 |
| 20040143571 | Bjornson et al. | Jul 2004 | A1 |
| 20040169654 | Walker et al. | Sep 2004 | A1 |
| 20040230560 | Elza et al. | Nov 2004 | A1 |
| 20040249781 | Anderson | Dec 2004 | A1 |
| 20050015383 | Harjanto | Jan 2005 | A1 |
| 20050050054 | Clark et al. | Mar 2005 | A1 |
| 20050060325 | Bakalash et al. | Mar 2005 | A1 |
| 20050071370 | Altschul et al. | Mar 2005 | A1 |
| 20050080800 | Parupudi et al. | Apr 2005 | A1 |
| 20050097108 | Wang et al. | May 2005 | A1 |
| 20050102294 | Coldewey | May 2005 | A1 |
| 20050149503 | Raghavachari | Jul 2005 | A1 |
| 20050171960 | Lomet | Aug 2005 | A1 |
| 20050179684 | Wallace | Aug 2005 | A1 |
| 20050198042 | Russell et al. | Sep 2005 | A1 |
| 20050262108 | Gupta | Nov 2005 | A1 |
| 20060101048 | Mazzagatti et al. | May 2006 | A1 |
| Number | Date | Country |
|---|---|---|
| 0 079 465 | Jan 1985 | EP |
| WO 9517783 | Jun 1995 | WO |
| WO 9934307 | Jul 1999 | WO |
| WO 0146834 | Jun 2001 | WO |
| WO 02063498 | Aug 2002 | WO |