Login| Sign Up| Help| Contact|

Patent Searching and Data


Title:
SYSTEM AND METHOD FOR OPTIMIZING LARGE DATABASE MANAGEMENT SYSTEMS
Document Type and Number:
WIPO Patent Application WO/2018/222580
Kind Code:
A1
Abstract:
A large highly parallel database system includes thousands of nodes storing huge volume of data. The database system includes query optimizers for determining low cost execution plans for queries. The optimizers operate at a lower layer and analyze data to determine column cardinality and column distribution for reducing the amount of data to read from storage drives of the nodes, and computation on the data required. The reduced amount of data read and the reduced amount of computation required decreases the elapsed time to execute a query. The optimizers also determine a satisfactory execution plan for a query using particle swarm optimization. Moreover, the optimizers consider the node computer configurations and network throughput in selecting a satisfactory execution plan. Multiple optimizers are also used in parallel to select a satisfactory execution plan. The optimizers also optimize SQL statements integrating with data modeling to allow optimizing data access during data modeling.

Inventors:
ARNOLD JASON (US)
KONDILES GEORGE (US)
Application Number:
PCT/US2018/034859
Publication Date:
December 06, 2018
Filing Date:
May 29, 2018
Export Citation:
Click for automatic bibliography generation   Help
Assignee:
OCIENT INC (US)
International Classes:
G06F17/30
Foreign References:
US20080109421A12008-05-08
US20150278306A12015-10-01
US20010051949A12001-12-13
US20100082577A12010-04-01
US20100312756A12010-12-09
Attorney, Agent or Firm:
MARKISON, Timothy W. et al. (US)
Download PDF:
Claims:
Claims

What is claimed is:

[C1] 1. A method for optimizing data queries, said method performed by a database

management system, said method comprising:

i) evaluating a statement for creating a data model to generate a first query statement;

ii) receiving a data query, said data query referencing said data model; iii) integrating said first query with said data query to form an integrated

query; and

iv) optimizing said integrated query.

[C2] 2. The method for optimizing data queries of claim 1 further comprising storing said first query statement into a system catalog.

[C3] 3. A database management system comprising:

i) a query optimizer for optimizing data queries, said query optimizer

adapted to:

1 ) estimate a first column cardinality of a first column of a first subset of rows to determine an estimated first column cardinality;

2) estimate a second column cardinality of said first column of a second subset of rows to determine an estimated second column cardinality, wherein said first subset of rows and said second subset of rows have same columns and are disjoint subsets of a set of rows, and wherein a column cardinality of said first column of said set of rows is a sum of said first column cardinality and said second column

cardinality;

3) create a first Bloom filter based on said first subset of rows;

4) create a second Bloom filter based on said second subset of rows;

5) combine said first Bloom filter and said second Bloom filter to create a combined Bloom filter; and

6) determine an estimated column cardinality of said column of said set of rows using said combined Bloom filter.

[C4] 4. The database management system of claim 3 wherein corresponding bits of said first Bloom filter and said second Bloom filter are logically ORed to generate said combined Bloom filter.

[C5] 5. A database management system comprising:

i) a query execution plan generator, said query execution plan generator to create an initial execution plan of a query, said database management system adapted to receive a query;

ii) a first query optimizer, said first query optimizer adapted to receive said initial execution plan as an input and determine a first satisfactory execution plan of said query; and

iii) a second query optimizer, said second query optimizer adapted to receive said initial execution plan as an input and determine a second satisfactory execution plan of said query, wherein said database management system is adapted to compare said first satisfactory execution plan against said second satisfactory execution plan to select a lower cost execution plan from said first satisfactory execution plan and said second satisfactory execution plan.

[C6] 6. The database management system of claim 5 wherein said first satisfactory

execution plan is different from said second satisfactory execution plan.

[C7] 7. The database management system of claim 6 wherein said first query optimizer and said second query optimizer are executed concurrently to determine said first satisfactory execution plan and said second satisfactory execution plan respectively.

[C8] 8. A database management system comprising:

i) a query optimizer for optimizing a data query, said query optimizer

adapted to determine a satisfactory execution plan from a set of execution plans, said set of execution plans created by said database management system.

[C9] 9. The database management system of claim 8 wherein said query optimizer is adapted to determine said satisfactory execution plan using particle swarm optimization.

[C10] 10. The database management system of claim 8 wherein said query optimizer is adapted to determine said satisfactory execution plan using both particle swarm optimization and heuristic optimization concurrently.

[C11] 11. The database management system of claim 8 wherein said query optimizer is adapted to determine said satisfactory execution plan based on computer configuration of nodes of said database management system.

[C12] 12. The database management system of claim 8 wherein said query optimizer is adapted to determine said satisfactory execution plan using column distribution.

Description:
SYSTEM AND METHOD FOR OPTIMIZING LARGE DATABASE MANAGEMENT

SYSTEMS

CROSS REFERENCE TO RELATED APPLICATIONS

[0001] This application claims the benefit and priority of United States Patent Application Number 62/512,248, entitled "SYSTEM AND METHOD FOR OPTIMIZING LARGE DATABASE MANAGEMENT SYSTEMS," filed May 30, 2017, assigned to Ocient Inc., which is hereby incorporated by reference in its entirety. This application is related to United States Patent Application Number 62/403328, entitled "APPLICATION DIRECT ACCESS TO NETWORK RDMA MEMORY," filed on October 3, 2016, assigned to Ocient Inc., which is hereby incorporated by reference in its entirety. This application is also related to United States Patent Application Number 62/403231 , entitled "HIGHLY PARALLEL DATABASE MANAGEMENT SYSTEM," filed on October 3, 2016, assigned to Ocient Inc., which is hereby incorporated by reference in its entirety. This application is related to United States Patent Application Number 62/433901 , entitled "EFFICIENT DATABASE MANAGEMENT SYSTEMS," filed on December 14, 2016, assigned to Ocient Inc., which is hereby incorporated its entirety. This application is also related to United States Patent Application Number 62/433919, entitled "USE OF A DESIGNATED LEADER TO MANAGE A CLUSTER OF NODES IN A DATABASE MANAGEMENT SYSTEM," filed on December 14, 2016, assigned to Ocient Inc., which is hereby incorporated by reference in its entirety. This application is also related to United States Patent Application Number 62/480601 , entitled "DATABASE MANAGEMENT SYSTEM USING HYBRID INDEXING LIST AND HIERARCHICAL QUERY PROCESSING ARCHITECTURE," filed on April 3, 2017, assigned to Ocient Inc., which is hereby incorporated by reference in its entirety.

FIELD OF THE DISCLOSURE

[0002] The present invention generally relates to a system and method for organizing and managing large volume of data, and more particularly relates to a system and method for optimizing large database management systems. More particularly still, the present disclosure relates to a system and method for optimizing queries managing data of large database management systems.

DESCRIPTION OF BACKGROUND

[0003] Structured Query Language ("SQL") is a database access language for managing data stored in a database. SQL statements are widely used for retrieving data from, storing data into and modifying data stored in the database, such as a relational database management system ("RDBMS"). An illustrative SQL query is shown below:

[0004] SELECT * FROM users WHERE name = 'Captain Nemo' ORDER BY id ASC LIMIT 1

[0005] When an SQL statement is processed by a database system, the SQL statement is parsed and translated into an abstract syntax tree representing the SQL query. Each node of the abstract syntax tree denotes a construct of the SQL statement. An illustrative abstract syntax tree of the SQL statement above is shown in Figure 1. Based on the abstract syntax tree, a query optimizer component determines an execution plan of the SQL query. The execution plan is desired to be the most efficient way and path to retrieve or update data stored in the database. The efficiency is usually measured by how fast the SQL query is executed and how much resources (such as CPU cycles and I/O operations) the execution uses. Oftentimes, a query optimizer generates more than one execution plan and chooses the one with the lowest cost. Once an execution plan is selected, the SQL query is executed according to the execution plan by the database system's engine.

[0006] Each step of an execution plan is usually estimated to determine the amount of time it takes to execute the step. The estimated time is also termed as the estimated cost of the step. The sum of the estimated costs of the steps of the execution plan is the estimated cost of the execution plan. For example, an execution plan for the SQL query above may include the steps of selecting rows with "Captain Nemo" as name, sorting the selected rows by id, and selecting the top row of the sorted rows. The execution plan cost is further illustrated by Formula 1 below:

[0007] Cpian = Σι^ C(, Cpian is the cost of the execution plan and Ci is the execution cost of a step of the execution plan. The different CiS are also illustrated in Figure 2.

Each execution step corresponds to one or more operators. Executing a step means performing the one or more operators by a thread or multiple threads. Operators indicate operations on one or more rows in a database, intermediate results during the processing of an SQL query, etc. For ease of illustration herein, each execution step is said to correspond to one operator.

[0008] To process SQL queries faster, multithreading has been proposed. As shown in Figure 3, multiple threads each perform all the operators. For instance, each thread operates on one or more rows of data and performs all necessary operators to produce part or all of the desired results. Alternatively, as shown in Figure 4, one or more threads are dedicated to perform one and only one operator. The parallelism shown in Figures 3-4 improves the performance on SQL queries. However, it also utilizes additional system resources, such as central processing unit ("CPU") cycles, memory, etc. Furthermore, due to data dependency between operators and other issues in parallel processing, the performance offered by the multithreading pipelines of Figures 3-4 is not linear. For example, two threads do not necessarily reduce the execution time by half.

[0009] Other query optimization techniques, such as rule based optimization ("RBO") and cost based optimization ("CBO") have been proposed as well. Generally, query optimization is about determining an execution plan that runs faster than other execution plans and consumes system resources (such as memory) below certain thresholds. For example, the execution plan 500 shown in Figure 5 is less desirable than the execution plan 600 shown in Figure 6 for the SQL query 700 shown in Figure 7. In this particular case, the difference between the execution plan 600 and the execution plan 500 is that execution plan 600 has converted the Cartesian product operation 510 into a join operation 610. In general, join operations have much lower costs that Cartesian product operations. [0010] Since a significant amount of data may be retrieved from data storage disk drives of the database system, the access speed of such drives should be considered in query optimization. Furthermore, the amount of data retrieved from data storage disk drives and accessed in memory is another important factor in query optimization. Accordingly, there is a need for a database system that optimizes queries based on the amount of data involved and the storage drive disk access speed.

[0011] Furthermore, since a large amount of data may have to be retrieved from different nodes in a large database system, query optimization to reduce the amount of communications required between nodes is desired. In addition, the building of machine learning data models based on data stored in a database is oftentimes desired. Data modeling usually involves significant amount of data and computation. Query optimization of data modeling is thus desirable. Such optimization is not offered in conventional database systems since they provide data modeling as library calls (such as stored procedures) that cannot be optimized.

OBJECTS OF THE DISCLOSED SYSTEM, METHOD, AND APPARATUS

[0012] Accordingly, it is an object of this disclosure to provide a large parallel database management system optimizing SQL queries at a lower layer.

[0013] Another object of this disclosure is to provide a large parallel database management system optimizing SQL queries at a lower layer to reduce the amount of data read from storage drives. [0014] Another object of this disclosure is to provide a large parallel database management system optimizing SQL queries at a lower layer to reduce the amount of processing that must be done to the data.

[0015] Another object of this disclosure is to provide a large parallel database management system optimizing SQL queries based on column cardinality and column distribution to reduce the cost of generating the requested result set.

[0016] Another object of this disclosure is to provide a large parallel database management system optimizing SQL queries based on column cardinality determined using Bloom filters.

[0017] Another object of this disclosure is to provide a large parallel database management system optimizing SQL queries based on column distribution determined using kernel density estimation.

[0018] Another object of this disclosure is to provide a large parallel database management system optimizing a query by selecting a satisfactory execution plan of the query using particle swarm optimization.

[0019] Another object of this disclosure is to provide a large parallel database management system utilizing multiple SQL query optimizers simultaneously to determine a satisfactory execution plan of a query.

[0020] Another object of this disclosure is to provide a large parallel database management system optimizing a query by selecting a satisfactory execution plan of the query using both particle swarm optimization and heuristic optimization. [0021] Another object of this disclosure is to provide a large parallel database management system optimizing SQL queries based on computer configurations of database system nodes.

[0022] Another object of this disclosure is to provide a large parallel database management system optimizing SQL queries based on network throughput between database system nodes.

[0023] Another object of this disclosure is to provide a large parallel database management system supports SQL queries incorporating data modeling syntax.

[0024] Another object of this disclosure is to provide a large parallel database management system supports integrated SQL queries and data modeling syntax that allow optimization of data modeling.

[0025] Another object of this disclosure is to provide a large parallel database management system supports integrated SQL queries and data modeling syntax that allow optimization of data modeling to reduce execution time and the amount of data accessed.

[0026] Other advantages of this disclosure will be clear to a person of ordinary skill in the art. It should be understood, however, that a system or method could practice the disclosure while not achieving all of the enumerated advantages, and that the protected disclosure is defined by the claims.

SUMMARY OF THE DISCLOSURE

[0027] Generally speaking, pursuant to the various embodiments, the present disclosure provides a system and method for optimizing SQL queries executed by a database management system. The database management system includes a large number (such as thousands or more) of computer nodes operating in parallel. Each node stores some amount of data. The database system includes an SQL query optimizer operating at a lower layer for reducing the amount of data read from one or more nodes, and for reducing the amount of time required to perform the requested processing on the data. The reduced read time and processing time decreases the elapsed time and system resources to execute the query. The SQL query optimization engine uses column cardinality and column distribution statistics based on a subset of database records for determining an optimal method for performing the requested data processing operations. The column cardinality is determined using a Bloom filter and an estimate of frequency of frequencies information based on the sampled subset of database records. The column distribution is also created based on sampled rows using kernel density estimation.

[0028] In particular, the database management system includes a query optimizer for optimizing data queries. The query optimizer is adapted to estimate a first column cardinality of a first column of a first subset of rows to determine an estimated first column cardinality, and a second column cardinality of the first column of a second subset of rows to determine an estimated second column cardinality. The first subset of rows and the second subset of rows have the same columns and are disjoint subsets of a set of rows. A column cardinality of the first column of the set of rows is a sum of the first column cardinality and the second column cardinality. The query optimizer is also adapted to create a first Bloom filter based on the first subset of rows, create a second Bloom filter based on the second subset of rows, combine the first Bloom filter and the second Bloom filter to create a combined Bloom filter, and determine an estimated column cardinality of the column of the set of rows using the combined Bloom filter. The corresponding bits of the first Bloom filter and the second Bloom filter are logically OR-ed to generate the combined Bloom filter.

[0029] Further in accordance with various embodiments, the present teachings provide a system and method for optimizing SQL queries executed by a database management system. The SQL query optimizer receives a query, creates a plurality of execution plans for the query, and performs a particle swarm optimization to determine a satisfactory execution plan for executing the query. During the particle swarm optimization process, the SQL optimization engine generates new plans from existing plans by determining a moving direction and a moving distance in the search space of all possible equivalent plans. Periodically, the optimization process is checkpointed to determine whether optimization should continue or whether a satisfactory execution plan has been found.

[0030] Further in accordance with various embodiments, the present teachings provide a system and method for optimizing SQL queries executed by a database management system. The optimizer factors in the computer configurations and network throughput for each node. These factors are used to determine the time cost of an execution step in an execution plan.

[0031] Further in accordance with various embodiments, the present teachings provide a system and method for optimizing SQL queries executed by a database management system. The optimization system includes multiple optimizers. More than one optimizer is executed at the same time to optimize an SQL query. The best result from the more than one optimizer is then selected as the execution plan for executing the query. In particular, the database management system includes a query execution plan generator, a first query optimizer, and a second query optimizer. The query execution plan generator creates an initial execution plan of a query received by the database management a query. The first query optimizer is adapted to receive the initial execution plan as an input and determine a first satisfactory execution plan of the query. Running in parallel with the first optimizer, the second query optimizer is adapted to receive the initial execution plan as an input and determine a second satisfactory execution plan of the query. The database management system is further adapted to compare the first satisfactory execution plan against the second satisfactory execution plan to select a lower cost execution plan from the first satisfactory execution plan and the second satisfactory execution plan. The database management system then executes the selected lower cost execution plan of the data query. The first satisfactory execution plan cab be different from or same as the second satisfactory execution plan. The first query optimizer and the second query optimizer are executed concurrently to determine the first satisfactory execution plan and the second satisfactory execution plan respectively.

[0032] Further in accordance with various embodiments, the present teachings provide a system and method for optimizing SQL queries executed by a database management system. The optimization system supports SQL queries integrated with machine learning data models. The integrated SQL statements allow syntax for creating and applying data models. In the integrated syntax, data models can be applied in any context in which an SQL scalar function call is valid. With data modeling integrated in SQL statements, optimization on the data modeling queries is thus possible in the new database system. Data modeling usually involves large quantity of data and computation. Optimizing data modeling queries like other SQL queries significantly reduced the time to create and/or evaluate data models. The database management system evaluates an SQL statement for creating a data model to generate a first query statement, receives a data query that references the data model, integrates the first query with the data query to form an integrated query, and optimizes the integrated query.

BRIEF DESCRIPTION OF THE DRAWINGS

[0033] Although the characteristic features of this disclosure will be particularly pointed out in the claims, the invention itself, and the manner in which it may be made and used, may be better understood by referring to the following description taken in connection with the accompanying drawings forming a part hereof, wherein like reference numerals refer to like parts throughout the several views and in which:

[0034] Figure 1 is an illustrative tree structure depicting an abstract syntax tree of an SQL statement in accordance with this disclosure.

[0035] Figure 2 is an illustrative tree structure depicting execution steps of an execution plan in accordance with this disclosure. [0036] Figure 3 is a simplified block diagram illustrating a multi-thread based query processing architecture in accordance with this disclosure.

[0037] Figure 4 is a simplified block diagram illustrating a multi-thread based query processing architecture in accordance with this disclosure.

[0038] Figure 5 is a simplified flowchart depicting an execution plan of an SQL query in accordance with this disclosure.

[0039] Figure 6 is a simplified flowchart depicting an execution plan of an SQL query in accordance with this disclosure.

[0040] Figure 7 is a simplified diagram illustrating the structure of an SQL query block in accordance with this disclosure.

[0041] Figure 8 is a simplified table illustrating columns and extended columns in accordance with this disclosure.

[0042] Figure 9 is a simplified flowchart depicting a process by which a database system optimizes an SQL query using particle swarm optimization in accordance with this disclosure.

[0043] Figure 10 is a simplified flowchart depicting a process by which a database system searches a satisfactory execution plan of an SQL query in accordance with this disclosure.

[0044] Figure 11 is a simplified flowchart depicting a process by which a database system optimizes an SQL query based on computer configurations and network throughput in accordance with this disclosure. [0045] Figure 12 is a simplified flowchart depicting a process by which a database system optimizes an SQL query using multiple query optimizers in accordance with this disclosure.

[0046] Figure 13 is a simplified flowchart depicting a process by which conventional database system supports data modeling in accordance with this disclosure.

[0047] Figure 14 shows three illustrative SQL statements integrating data modeling syntax in accordance with this disclosure.

[0048] Figure 15 is a flowchart depicting the data flow from storage drives to data models in a conventional database system in accordance with this disclosure.

[0049] Figure 16 is a simplified flowchart depicting a process by which a database system optimizes an SQL query using multiple query optimizers in accordance with this disclosure.

[0050] Figure 17 is a simplified flowchart depicting a process by which a database system optimizes an SQL query using multiple query optimizers in accordance with this disclosure.

[0051] A person of ordinary skills in the art will appreciate that elements of the figures above are illustrated for simplicity and clarity, and are not necessarily drawn to scale. The dimensions of some elements in the figures may have been exaggerated relative to other elements to help understanding of the present teachings. Furthermore, a particular order in which certain elements, parts, components, modules, steps, actions, events and/or processes are described or illustrated may not be actually required. A person of ordinary skill in the art will appreciate that, for the purpose of simplicity and clarity of illustration, some commonly known and well-understood elements that are useful and/or necessary in a commercially feasible embodiment may not be depicted in order to provide a clear view of various embodiments in accordance with the present teachings.

DETAILED DESCRIPTION

[0052] Referring now to Figure 6, conventional query optimization focuses on the operators 610, 608, 606, 604 and 602 along the dataflow direction 620. Assume that the filtering condition represented by 608 involves the conjunction of several SQL predicates. The order in which these individual predicates are evaluated will make a substantial difference on the execution cost in the case where the number of rows to process is large. Additionally, in a multi-node database system, there are numerous different ways to perform operations 606 and 602, which will have vastly different costs. Even if there is perfect information about the cost of performing these operations in all the various possible ways, the number of possible combinations quickly becomes enormous, and thus it is practically impossible to directly compute the costs of all possible alternatives (collectively referred to herein as search space). A query optimizer requires a method of finding a satisfactory execution plan in the search space without using exhaustive searching. Particle swarm optimization, set forth below, is a new approach to finding a satisfactory execution plan in this large search space.

[0053] It is also very challenging to even create good estimates of the costs of the various options. The cost of an operator depends on a number of factors such as available CPU resources, amount of memory available, memory bandwidth, available network bandwidth, number of input rows, size of input rows, number of output rows, size of output rows, etc. The relationship between these variables is operator dependent. However, for a given operator, if the values of some of the variables are known, at least a good estimate of the values of the other variables can be created. Therefore, to create good cost estimates for the various operations, good estimates for a sufficient number of these variables are necessary. As further set forth below, estimates for variables that represent performance characteristics of the database system can be created by directly analyzing system performance.

[0054] The rest of the variables have to be estimated from the data itself. In general, it suffices to have estimates of the number of rows in each table, the average length of the rows in each table, the column cardinality of each column in each table, and the column distribution of each column in each table. The number of rows and the average length of the rows in each table are trivial to estimate. The present teachings disclose new approaches to estimate the column cardinality of each column, and the column distribution of each column in each table. Column cardinality is defined as the number of distinct values in the data for a particular column.

[0055] When a random sample without replacement of n rows from a set of N rows is taken, the exact number of distinct values of a particular column within the sample can then be easily determined. As used herein, d stands for the number of distinct values within the sampled set of n rows and D stands for the number of distinct values within the entire set of N rows for a particular column. The N rows are, for example, all the rows of a particular table within a database. For the sample, the exact frequency of frequencies information can also be easily determined. [0056] Frequency of frequencies, denoted fi, represents a list of frequencies, fi is the number of distinct values within a particular column that appear only 1 time in the sampled rows; fc is the number of distinct values of the column that appear only 2 time in the sampled rows; f3 is the number of distinct values of the column that appear only 3 time in the sampled rows; and so on. Accordingly, d is the sum of all the fi, i.e.,

[0057]

[0058] In addition,

[0059] To optimize SQL query processing, the present teachings estimate the value of D, i.e., the column cardinality for the whole set of size N. D requires n, N, d, and f as input, f stands for the frequency of frequencies, such as fi and fo. In other words, D = g(n, N, d, f) and g is a function. When N is small enough, exact values for all these input parameters can be computed and a good estimation of D can be obtained. In accordance with the present teachings, numerous estimates of disjoint sets are combined to produce an estimate for a larger set. For instance, given n1 , N1 , d1 , and f1 based on sampling n1 rows out of some set of N1 rows; and also given n2, N2, d2, and f2 based on sampling n2 rows out of a disjoint set of N2 rows, n3, N3, d3, and f3 representing the combined set of N1 + N2 rows are then created. g(n3, N3, d3, f3) is then used to calculate D3.

[0060] It should be noted that N3 = N1 + N2 and n3 = n1 + n2. Exact computation of d and f becomes less feasible as estimates are combined to create new estimates for larger and larger sets. Therefore, a way of taking two estimates of d (d1 and d2) and creating the combined estimate d3 is desired. Likewise, a method for taking estimates of f1 and f2 and creating a new combined estimate f3 is needed.

[0061] To combine estimates of d, instead of storing d, a Bloom filter is stored. A Bloom filter is a probabilistic data structure that can be used to approximate the answers to set membership questions. In accordance with the present teachings, a Bloom filter is used to know for sure if a value is one that has never seen before (and therefore a new distinct value). A Bloom filter can also be used to estimate the number of values that were distinct. When processing a set of samples, the bits of the Bloom filter are turned on for all of the samples. When two sets of samples are combined, bits of the two corresponding Bloom filters can be logically ORed to generate a new combined Bloom filter. The value of d3 can then be computed from the new combined Bloom filter using the formula below.

[0062] To calculate d from a Bloom filter, Formula 2 is then used:

[0063] d = - (m / k) * ln[ 1 - (X / m)], m is the number of bits (i.e., length) of the Bloom filter's bit array, k is the number of hash functions used for the Bloom filter, and X is the number bits of the bit array that are set to value 1. Formula 2 is also known as Swalmdass-Baldi formula.

[0064] Next, a procedure for combining two estimates of frequency of frequencies information to create a new combined estimate is performed. Prior to performing the combination, the following facts are known:

[0065]

[0066] The Bloom filters are also combined to generate a combined Bloom filter, whose "ON" bits are represented by X3. The system of equations for all the are then solved.

[0067]

[0068] The system is under-determined, that is it has more variables than it does equations. Therefore, additional constraints are applied.

[0069] For all i,

If ai is the smallest i such that is non-zero and bi is the largest I such that f-n is non-zero, then

For all i less than min(ai, a2),

For all i greater than b1 + b2,

For all m,

[0070] At this point, the system may still be underdetermined, meaning that there is more than one solution. In that event, the first solution that was found is then used. [0071] A column distribution is represented by, for example, a probability density function ("PDF"). For a table with a single column, a one dimensional probability density function is used. For tables with multiple columns, a multi-variate probability density function is used to describe data distribution of the columns. However, for a set of sampled data, only a finite number of data values are known. Accordingly, kernel density estimation ("KDE") is used to estimate a corresponding probability density function. The benefit of using a single multi-variate PDF instead of multiple one-dimensional PDFs is that a multi-variate PDF also captures covariance between columns. In kernel density estimation, there is uncertainty about data. This is referred to in KDE as the bandwidth. Each dimension has its own bandwidth. The initial bandwidth for each dimension is based on the number of samples, the number of dimensions, and the variance of the data for each dimension.

[0072] Just as with column cardinality estimation, it is desirable to create new PDFs by combining existing PDFs for disjoint subsets of the data. This provides a way to update the PDF representing an entire table without resampling the entire table when new data is added. Depending on the number of samples involved, this combination procedure may just be a merging of the samples and a recalculation of the bandwidths or it might involve sampling the samples and recalculating the bandwidth.

[0073] However, it's not good enough to have a PDF representing the distribution of all the data in all the columns of a table. The PDF representing the distribution of the data at the output of each operator in the execution plan has to be approximated. For example, if half of the data has coll = 'A' (meaning the value of column 1 is 'Α'), half has coll = 'B', col2 is always 1 when coll is TV, and col2 is always 2 when coll is 'Β', then the PDF representing the output of filtering to only keep the rows where coll = TV should have a zero percent probability (or very close to zero) of having any rows where col2 = 2. However, the original PDF indicates that the probability of a row having col2 = 2 is 50%. It is thus clear that each operator changes the PDF; and the new PDFs representing the output of each operator have to be approximated. Generating approximated PDFs thus has to be performed for all types of operators including selection (filtering), projection, aggregation, joins, extension, etc. It should be noted that extension actually creates a new column via calculations on existing columns. For example Figure 8 shows a new column (column 3) that is calculated as the product of columns 1 and 2.

[0074] Since the bandwidth for each dimension of the PDF needs to be treated as an uncertainty, appropriate uncertainty propagation rules have to be applied when extension operations are performed. There are many such applicable rules. A few examples are given below, where e(columnl ) represents the bandwidth of column 1.

[0075]

[0076]

[0077]

[0078] Bandwidth must be represented as an absolute uncertainty and not as a relative uncertainty. In some cases, there is no exact expression representing absolute uncertainty for a given calculation. In such cases, the bandwidth is bound via other measures. For example, a derivative bounding below is applied: [0079] e(sin(column 1 )) <= e(column 1 ) max(|cos(x)|) = e(column 1 ) is a true statement since the derivative of sin(x) = cos(x)

[0080] As an additional example, a min/max bounding below is applied:

[0081] e(sin(column 1)) <= max(sin(x)) - min(sin(x)) = 2

[0082] As a further example, a combined bounding below is applied, where the bandwidth is bound by the smaller value of derivative bounding and min/max bounding.

[0083] e(sin(column 1)) <= min(e(column 1), 2)

[0084] Referring now to Figure 9, a flowchart depicting a process by which a database system performs SQL query optimization is shown and generally indicated at 900. The SQL query optimization process 900 applies the Particle Swarm Optimization ("PSO") method in determining a desirable execution plan for a query. The goal of the optimization process 900 is that the time cost of selecting a satisfactory execution plan is less than the time saved in executing the selected execution plan rather than a different execution plan, such as an execution plan determined without application of the process 900. In other words, the goal is that the time gain in the query execution after the execution plan optimization is more than the optimization cost.

[0085] At 902, a query optimization engine receives an SQL query, such as the illustrative SQL query below: [0086] select o_orderpriority, count(*) as order_count from tpch. orders where o_orderdate >= date('1993-07-01') and o_orderdate < date('1993-07-01') + months(3) group by o_orderpriority order by o_orderpriority

[0087] The query optimization engine can be implemented as, for example, a computer software program written in the computer programming language C++. At 904, the query optimization engine creates a plurality of execution plans. An illustrative execution plan for the illustrative SQL query above is shown in Appendix A filed herewith. The plurality of execution plans are candidate solutions to the problem of selecting a satisfactory execution plan for the SQL query. At 906, the query optimization engine applies the PSO analysis to identify a satisfactory execution plan for executing the SQL query by improving the candidate execution plans within the search space of possible execution plans for the query. An illustrative intermediate execution plan generated during the PSO optimization and a satisfactory execution plan produced from the PSO analysis the illustrative query above are shown in Appendixes B and C respectively.

[0088] Execution plans are particles in the PSO analysis. For example, in the operation below, with a transformation Xs on node 4 (N4), the execution plan Pi moves to and becomes execution plan P2.

[0089]

[0090] With a transformation X3 on node N4, the execution plan P2 becomes execution plan P3. The execution plan Pi at the starting point of the moving path is a candidate execution plan created at 904. As an additional illustrative example, the execution plans P1 and P2 are: [0091] Pi = Χ 5 Ν 4 Χ3ΝιΧιΝ2

[0092] P 2 = X3N4X3N1X2N6

[0093] Assuming that X5 = X3 "1 (meaning that the transformation X5 is the reverse transformation of the transformation X3), the direction to move from the execution plan P2 to the execution Pi is: XsN4X5 4XiN2X2 "1 N6. This is because starting from P2 and applying this sequence of transformations lead back to Pi. Moreover, the distance between P2 and P1 is defined as the number of transformations in the direction. In the example above, the distance between P2 and P1 is 4.

[0094] A transformation is defined as modification that can be applied to an operator tree that will generate a new operator tree that produces the same result set as the original operator tree. For example, to return rows where year >= 2010 and year <= 2015, one possible plan is to filter out the rows where year < 2010 first and then filter out the rows where year > 2015. Another possible plan is to execute these two filtering operations in the opposite order. Both plans generate the same result set and there is a transformation defined that changes the order of filters. A database system can include tens of different transformations defined over tens of different operator types. The number of different transformations and the number of different operator types can grow and vary.

[0095] The movement from one execution plan to another in the search space for identifying a satisfactory execution plan is further illustrated by reference to Figure 10. Referring to Figure 10, a flowchart depicting a process by which the query optimization engine determines a satisfactory execution plan based on PSO analysis is shown and generally indicated at 1000. At 1002, for a particular execution plan, the query optimization engine determines whether it is a satisfactory execution plan. If so, this execution plan is then a selected satisfactory execution plan and the process 900 and 1000 are deemed to have accomplished their respective goals. Otherwise, at 1004, the query optimization engine determines a moving direction and a speed to another execution plan that is, for example, in the current best region. In one implementation, the speed at which to move is dependent upon the distance between the current plan and the target plan of the move.

[0096] After a move, the element 1002 is performed again. The process 1000 is repeatedly performed until a satisfactory execution plan is determined. It should be noted that the process 1000 is performed for all moving paths, each of which starts from one particular candidate solution created at 904. For each moving path, a current best execution plan is tracked. When a better execution plan is found, it becomes the current best execution plan for the moving path. Moreover, a global current best execution plan between the moving paths is tracked as well. At any given iteration, each particle will either move towards its current best plan or the globally best plan. The probability with which a particle will move towards its current best plan is a function of time, that is p = f(t). Therefore, the probability with which a particle will move towards the globally best plan is 1 - f(t).

[0097] Whether the globally best plan is satisfactory is determined by periodically checkpointing the PSO process and looking at the improvement in estimated runtime of the globally best plan versus the amount of wall-clock time since the last checkpoint. When the globally best plan stops improving at a sufficient rate, the current globally best plan is deemed to be satisfactory. [0098] To calculate the estimated cost of an execution plan, the query optimization engine factors in multiple factors, such as the throughput cost between nodes, the computer configurations and the storage drive access speed of each database node in the database system, as well as all the statistical information previously covered. The computer configurations include, for example, the configurations of the central processing units ("CPUs"), the amount of memory, and the configurations of the bus (such as computer PCI bus). Different types of bus indicate different data transmission speeds. Since the available network throughput varies between different times, it is thus dynamic. The throughput cost (also referred to herein as throughput) can be dynamically determined by a process, which is further illustrated by reference to Figure 11.

[0099] Referring to Figure 11 , a flowchart illustrating a process by which a computer (such as a node) within the improved database management system determines the node's throughput is shown and generally indicated at 1100. At 1102, a computer software application running on the node determines the node's computer configurations, such as the CPU's speed, hardware cache, the amount of memory, and the bus. At 1104, the software application determines the network throughput. For example, the network throughput is the time it takes to send ten megabytes of data from the node to another particular node. At 1106, based on the computer configurations and the network throughput, the software application determines the present throughput of the node. The process 1100 can be periodically executed to determine the present throughput. Alternatively, if the maximum possible throughput of the system based on the state where there is no competition for resources is known, the currently available throughput is the maximum possible throughput minus the approximation of the currently used throughput. In a further implementation, the process 1100 is performed on each node in the database system.

[0100] In an alternate embodiment of the present teachings, multiple query optimizers are executed to optimize a query for determining a satisfactory execution plan. The alternate embodiment is further illustrated by reference to Figure 12. Referring to Figure 12, a flowchart depicting a process by which a database system runs multiple query optimizers to select a desirable execution plan for a given query is shown and generally indicated at 1200. At 1202, an optimization manager of the database system receives a query. At 1204, the optimization manager creates a set (meaning one or more) of execution plans. At 1206, the optimization manager executes a first optimizer, such as that of the process 900, on the set of execution plans to determine a first satisfactory execution plan. At 1208, the optimization manager executes a second optimizer, such as a heuristic optimizer, on the set of execution plans to determine a second satisfactory execution plan. At 1210, the optimization manager compares the two determined execution plans, and selects the one execution plan with a lower cost for the query.

[0101] Referring now to Figure 16, a flowchart depicting a process by which a database system runs multiple query optimizers to select a desirable execution plan for a given query is shown and generally indicated at 1600. At 1602, the database management system receives a query. The database management system includes computer software programs, such as an execution plan generator, multiple data query optimizers, etc. At 1604, the execution plan generator generates an initial execution plan of the received query. At 1606, a first query optimizer determines a first satisfactory execution plan of the query. In one implementation, the first query optimizer takes the initial execution plan as an input and generates alternative execution plans. From the alternative execution plans, it determines the execution plan with the lowest cost as the first satisfactory execution plan.

[0102] At 1608, running in parallel with the first optimizer, a second query optimizer determines a second satisfactory execution plan of the query. In one implementation, the second query optimizer takes the initial execution plan as an input and generates alternative execution plans. From the alternative execution plans, it determines the execution plan with the lowest cost as the second satisfactory execution plan. At 1610, the database management system compares the two determined execution plans, and selects the one execution plan with a lower cost for the query.

[0103] In a further implementation, the output of the first optimizer is used as the input to the second optimizer or vice versa. With two optimizers, there are thus four possible plans to choose from: the output of optimizer 1 , the output of optimizer 2, the output of optimizer 1 if it is fed with the output of optimizer 2 as input, and the output of optimizer 2 if it is fed with the output of optimizer 1 as input. The framework allows for an arbitrary number of different optimizers and arbitrary chaining of optimizer inputs and outputs. The serial query optimization is further illustrated by reference to Figure 17.

[0104] Referring to Figure 17, a flowchart depicting a process by which the database management system optimizes query execution using multiple optimizers in sequential order is shown and generally indicated at 1700. An execution plan of a particular query is indicated at 1702. At 1704, a first data query optimizer takes the execution plan 1702 as input and determines a first satisfactory execution plan 1706 with the lowest cost. The first satisfactory execution plan 1706 is taken as input to the second optimizer 1708, which then determines a second satisfactory execution plan 1710 with the lowest cost.

[0105] Data models are useful tools to describe inherent relationships of systems of data. For instance, the relationship between two or more data variables can be depicted by one or more models. Once a model is developed based on a set of data, it can then be applied to different sets of data. Well-known data models include, for example, logistic regression models, linear regression models, nonlinear regression models, k-means, and k-nearest neighbor, etc. Some conventional database systems support stored procedures that can allow users to create and apply data models. However, such conventional data modeling technologies are presented as a black box to upper layer data operations, such as the optimizer. The conventional data models in database systems is further illustrated by reference to Figure 13.

[0106] Referring to Figure 13, an operation 1302 is performed on a set of data. A data model 1304 provided as stored procedures is then applied to the result of the operation 1302. Another data operation 1306 is performed on the result of the data model 1304. In such a case, the data model 1304 is a black box to the data operation 1306 and other upper layer operators. This shortcoming prevents SQL optimization and is an inefficient approach for providing desirable speed in a large database system including hundreds and even thousands of nodes and clusters and managing huge volume of data. Moreover, the conventional approach is not completely integrated with SQL statements.

[0107] The present teachings provide an improved database system integrating SQL queries with data modeling. An illustrative example of the integrated SQL queries and data modeling technologies is shown in Figure 14. Referring now to Figure 14, the illustrative model is a linear regression: y = ax + b. An SQL statement 1402 creates a model titled "my_mode from a set of training data. An SQL statement 1404 applies the created model on a different set of data. In one implementation, the database system implements the SQL model creation statement 1402 by evaluating SQL statement 1406 and storing the output in the system catalog. Since data modeling is completely integrated with SQL statements, not a black box to a query optimizing component, query optimization is thus possible on the data modeling. In this example, the creation and application of the data model were re-written as SQL statements. However, this is not required and is, in general, not true. All that is required is that the model creation and application can be expressed in terms of the available operators that the execution engine understands.

[0108] In contrast, the implementation of conventional data modeling in stored procedures is not known when the SQL query statements using the data models are processed. Accordingly, unlike the improved database system disclosed herein, the conventional database systems lack the capability to optimize SQL queries using data models. The deficiency of the conventional database systems is further illustrated by reference to Figure 15. [0109] Referring to Figure 15, a flowchart illustrating the shortcomings of a conventional database system is shown and generally indicated at 1500. When a data model is created from a set of data or applied to a different set of data, a large amount of data 1506 is retrieved by a data model engine 1508. The data model engine 1508 includes stored procedures for modeling data. The data 1502 is retrieved from a large database 1502 that includes hundreds, thousands and even tens of thousands of database nodes 1504. Furthermore, the amount of the computation required for building the model on data 1502 can be extremely large. The computation time is thus costly without the benefits afforded by the optimizer of the present disclosure.

[0110] Obviously, many additional modifications and variations of the present disclosure are possible in light of the above teachings. Thus, it is to be understood that, within the scope of the appended claims, the disclosure may be practiced otherwise than is specifically described above.

[0111] The foregoing description of the disclosure has been presented for purposes of illustration and description, and is not intended to be exhaustive or to limit the disclosure to the precise form disclosed. The description was selected to best explain the principles of the present teachings and practical application of these principles to enable others skilled in the art to best utilize the disclosure in various embodiments and various modifications as are suited to the particular use contemplated. It should be recognized that the words "a" or "an" are intended to include both the singular and the plural. Conversely, any reference to plural elements shall, where appropriate, include the singular. [0112] It is intended that the scope of the disclosure not be limited by the specification, but be defined by the claims set forth below. In addition, although narrow claims may be presented below, it should be recognized that the scope of this invention is much broader than presented by the claim(s). It is intended that broader claims will be submitted in one or more applications that claim the benefit of priority from this application. Insofar as the description above and the accompanying drawings disclose additional subject matter that is not within the scope of the claim or claims below, the additional inventions are not dedicated to the public and the right to file one or more applications to claim such additional inventions is reserved.

AN EXECUTION PLAN

A first starting plan (estimated cost 2493 seconds)

AN INTERMEDIATE EXECUTION PLAN

An intermediate plan (estimated cost 2237 seconds)

A SATISFACTORY EXECUTION PLAN

The final plan (estimated cost 5 seconds)