US20160140175A1 - Integration of calculation models into sql layer - Google Patents

Integration of calculation models into sql layer Download PDF

Info

Publication number
US20160140175A1
US20160140175A1 US14/540,792 US201414540792A US2016140175A1 US 20160140175 A1 US20160140175 A1 US 20160140175A1 US 201414540792 A US201414540792 A US 201414540792A US 2016140175 A1 US2016140175 A1 US 2016140175A1
Authority
US
United States
Prior art keywords
engine
sql
calculation
calculation model
query
Prior art date
Legal status (The legal status 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 status listed.)
Granted
Application number
US14/540,792
Other versions
US9846724B2 (en
Inventor
Christoph Weyerhaeuser
Tobias Mindnich
Johannes Merx
Yongsik Yoon
Sung Heun Wi
Jeong Ae Han
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
SAP SE
Original Assignee
Individual
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 Individual filed Critical Individual
Priority to US14/540,792 priority Critical patent/US9846724B2/en
Assigned to SAP SE reassignment SAP SE ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: HAN, JEONG AE, WI, SUNG HEUN, MERX, JOHANNES, Mindnich, Tobias, Weyerhaeuser, Christoph, YOON, YONGSIK
Publication of US20160140175A1 publication Critical patent/US20160140175A1/en
Application granted granted Critical
Publication of US9846724B2 publication Critical patent/US9846724B2/en
Active legal-status Critical Current
Adjusted expiration legal-status Critical

Links

Images

Classifications

    • G06F17/30463
    • 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/24Querying
    • G06F16/245Query processing
    • G06F16/2453Query optimisation
    • G06F16/24534Query rewriting; Transformation
    • G06F16/24542Plan optimisation

Definitions

  • a database system may include a relational database and multiple engines that are used to query the relational database.
  • the engines may include a structured query language (SQL) engine configured to query the relational database using standard SQL, and a calculation engine configured to query the relational database based on a calculation model.
  • SQL structured query language
  • the calculation model is a solution to express complex data flows and calculations within the database system.
  • the calculation model is expressed in a format that allows non-relational operations and/or relatively more complex operations that are generally not possible with standard SQL.
  • the SQL engine may be better suited for other types of operations such as join re-ordering or other relational operations.
  • Both the calculation engine and the SQL engine are associated with their own optimizer.
  • the calculation engine's optimizer may be focused on filter push down, filter combination, attribute removal, etc., while the SQL engine's optimizer may be focused on relational optimizations.
  • the calculation models are not integrated with the execution model of the SQL optimizer.
  • the SQL engine parses, compiles, and executes the SQL query for the row store view.
  • the query engine instantiates, optimizes, and then executes the calculation model for the calculation view, which is then combined with the row store view.
  • a database system for integrating calculation models into execution plans includes a first engine configured to parse a query to be applied on a database.
  • the first engine is configured to invoke a second engine during query compilation.
  • the second engine is configured to instantiate a calculation model based on the query, and the second engine is configured to derive a converted calculation model by converting the calculation model into a format compatible with the first engine.
  • the first engine is configured to incorporate the converted calculation model into an execution plan during the query compilation and execute the query on the database according to execution plan.
  • the database system may include one or more of the following features (or any combination thereof).
  • the first engine is a structured query language (SQL) engine
  • the second engine is a calculation engine.
  • the second engine is configured to instantiate the calculation model by merging the query with the calculation model and removing one or more attributes from the calculation model that are not required by the query.
  • the format of the calculation is a directed acyclic graph (DAG) having an arrangement of operator nodes.
  • DAG directed acyclic graph
  • the format compatible with the first engine is a QO-Graph such that the DAG of the calculation model is converted into the QO-Graph.
  • the first engine is configured to invoke the second engine during query compilation if the calculation model is convertible to the format associated with the first engine.
  • the first engine is configured to determine whether the calculation model is fully relational, and if the calculation model is fully relational, the first engine is configured to invoke the second engine.
  • the execution plan includes a structured query language (SQL) model integrated with the converted calculation model that produces a merged structure. Before converting, the format of the calculation model is not compatible with the format of the first engine.
  • the query specifies a calculation view that incorporates an attribute view, and the first engine is configured to determine a structured query language (SQL) model for the attribute view, and invoke the second engine to determine the calculation model for the calculation view, where the execution plan integrates the SQL model and the converted calculation model into a merged structure.
  • a computer program product tangibly embodied on a non-transitory computer-readable storage medium and including executable code that, when executed, is configured to cause at least one processor to parse, by a structured query language (SQL) engine, a query to be executed on a relational database, invoke, by the SQL engine, a calculation engine to obtain a calculation model, convert, by the calculation engine, a format of the calculation model to a format compatible with the SQL engine, incorporate, by the SQL engine, the calculation model with the converted format into an execution plan, and execute, by the SQL engine, the query on the relational database according to the execution plan incorporated with the calculation model.
  • SQL structured query language
  • the computer program product may include one or more of the following features (or any combination thereof).
  • the executable code includes instructions that, when executed by the at least one processor, are configured to instantiate, by the calculation engine, the calculation model by merging the query with the calculation model and removing one or more attributes from the calculation model that are not required by the query, and optimize, by the calculation engine, the calculation model, where the optimized calculation model is converted to the format compatible with the SQL engine.
  • the executable code to convert the format of the calculation model includes instructions to convert a directed acyclic graph (DAG) to a QO-Graph, where the QO-Graph is incorporated into the execution plan to produce a merged QO-SQL structure.
  • DAG directed acyclic graph
  • the calculation model includes an arrangement of operator nodes, and the calculation engine is not invoked for converting the calculation model if any of the operator nodes is non-relational but instantiates, optimizes and executes the calculation model.
  • the calculation engine is invoked during SQL query compilation such that the SQL engine incorporates the calculation model before SQL execution.
  • the executable code includes instructions that, when executed by the at least one processor, are configured to optimize, by the SQL engine, the execution plan with the integrated calculation model.
  • a method for integrating calculation models into execution plans includes parsing, by a structured query language (SQL) engine, a query to be executed on a relational database, where the query requires a calculation model and an SQL model, determining, by the SQL engine, whether the calculation model is convertible into a format compatible with the SQL engine, invoking, by the SQL engine, a calculation engine to obtain the calculation model if the calculation model is determined as convertible, converting, by the calculation engine, the calculation model to the format compatible with the SQL engine, integrating, by the SQL engine, the calculation model and the SQL model into an execution plan;, optimizing, by the SQL engine, the execution plan, and executing, by the SQL engine, the query on the relational database according to the execution plan.
  • SQL structured query language
  • the method may include one or more of the following features (or any combination thereof).
  • the method may include executing, by the SQL engine, the SQL model to obtain first results if the calculation model is not convertible into the format compatible with the SQL engine, executing, by the calculation engine, the calculation model to obtain second results, and returning, by the SQL engine, the first and second results in a manner specified by the query.
  • the calculation model is determined as not convertible into the format compatible with the SQL engine if at least one operator node of a directed acyclic graph (DAG) is not relational.
  • DAG directed acyclic graph
  • the calculation model provides a graphical calculation view that incorporates at least one an attribute or analytical view.
  • FIG. 1 illustrates a database system for converting and integrating a calculation model into a SQL execution plan during query compilation according to an aspect.
  • FIG. 2 illustrates a query execution process that is performed when the calculation model is not convertible according to an aspect.
  • FIG. 3 illustrates a query execution process that is performed when the calculation model is convertible according to an aspect.
  • FIG. 4 is a flowchart illustrating example operations of the database system of FIG. 1 according to an aspect.
  • FIG. 5 is a flowchart illustrating example operations of the database system of FIG. 1 according to an aspect.
  • the embodiments provide systems and methods for integrating a calculation model into the SQL execution plan such that further optimization can be applied on the combined execution plan.
  • the calculation model includes operators that are not compatible to the SQL's execution model.
  • the calculation model is instantiated, optimized, and then converted to a format compatible to the SQL's execution model such that the SQL optimizer can understand the converted calculation model. For instance, from the view point of the SQL optimizer, the non-converted calculation model is seen as a black box.
  • the converted calculation model may be inserted into the overall execution model during query compilation, and then further optimized by the SQL optimizer. Then, the single, combined execution plan may be executed.
  • FIG. 1 illustrates a database system 100 including a calculation engine 122 for instantiating, optimizing, and then converting a calculation model 128 into a format compatible with an SQL optimizer 112 during query compilation, and an SQL engine 110 for integrating the converted calculation model 132 into an execution plan 114 , applying further optimizations on the execution plan 114 , and then executing the query on a database 134 according to the execution plan 114 .
  • a calculation engine 122 for instantiating, optimizing, and then converting a calculation model 128 into a format compatible with an SQL optimizer 112 during query compilation
  • an SQL engine 110 for integrating the converted calculation model 132 into an execution plan 114 , applying further optimizations on the execution plan 114 , and then executing the query on a database 134 according to the execution plan 114 .
  • the efficiency and speed for query execution may be improved.
  • the database system 100 may be a relational database management system (RDBMS).
  • the database system 100 is an in-memory database or in-memory database system.
  • the in-memory database system is a type of a relational database management system (RDBMS) that relies on main memory for computer data storage.
  • conventional database systems employ a disk storage mechanism.
  • the in-memory database system includes a combination of main memory and disk storage.
  • the in-memory database system may support real-time analytics and transactional processing including replication and aggregation techniques.
  • query/calculation logic is pushed down into the database layer (as opposed to remaining in the application layer) such that the processing time for querying and manipulating the data within the database 134 may be reduced as compared with conventional relational database systems.
  • the in-memory database system may be HANA Enterprise 1.0 (any other versions) that is developed by SAP.
  • the techniques described herein may be applied to any type of relational database system.
  • SQL Structured Query Language
  • SQL refers to a special-purpose programming language designed for managing data held in a relational database management system including an in-memory database.
  • SQL may refer to various types of data related languages including, e.g., a data definition language and a data manipulation language, where a scope of SQL may include data insert, query, update and delete, schema creation and modification, and data access control, and SQL may include procedural elements.
  • SQL may include descriptions related to various language elements, including clauses, expressions, predicates, queries, and statements. For instance, clauses may refer to various constituent components of statements and queries, and in some instances, clauses may be considered optional.
  • expressions may be configured to produce scalar values and/or tables that include columns and/or rows of data.
  • predicates may be configured to specify conditions that may be evaluated to SQL three-valued logic (3VL) (true/false/unknown) and/or Boolean truth values, which may be used to moderate effects of statements and queries, and which may be used to modify program flow.
  • VL three-valued logic
  • the queries are requests to view, access, and/or manipulate data stored in the database 134 .
  • the queries may be received at the database system 100 from the database clients 102 in the SQL format (e.g., referred to as SQL queries).
  • SQL queries e.g., referred to as SQL queries.
  • a query is a request for information from the database 134 , and the query results may be generated by accessing relevant data from the database 134 , and manipulating the relevant data to yield requested information.
  • the database 134 may include one or more database structures or formats such as a row store 136 , column store 138 , and object store 140 .
  • the database structures may be considered complex, where desired data for the query may be retrieved from the database 134 by accessing data using different ways, with different data structures (e.g., SQL models 116 , calculation models 128 ), and in different orders, which typically affects processing times. For instance, processing times of the same queries may vary depending on the manner in which the data is retrieved and/or selected from the database 134 . It is noted that the techniques described herein may be applied regardless of the storage format of the database 134 . For instance, the techniques described herein may be applied to the row store 136 , the column store 138 , or the object store 140 , or any combinations thereof.
  • the database system 100 may include multiple engines for processing queries to be executed on the database 134 , and returning the query results (e.g., views) to the database clients 102 .
  • the database clients 102 may include any type of device or application configured to interface with the database system 100 .
  • the database clients 102 include one or more application servers.
  • the database system 100 may include the SQL engine 110 and the calculation engine 122 .
  • the SQL engine 110 may include one or more engines that process queries using SQL.
  • the SQL engine 110 may execute queries according to an SQL model 116 which may be the execution plan 114 or apart of the execution plan 114 if combined with other query models or plans.
  • the SQL engine 110 may process queries (or portions of queries) that require relational operators such as joins, unions, intersections, differences, selections, projections, joins, and sorting, etc.
  • the SQL model 116 may be a query plan or query scenario for querying the database 134 .
  • the SQL model 116 may include a collection of operators designed to accomplish the functions related to the query.
  • the SQL model 116 may include an arrangement of operator nodes that encapsulate relational operations for executing the query.
  • the operator nodes may be arranged in a tree structure, where results flow from a lower portion of the tree to an upper portion of the tree.
  • Each operator node may include zero or more child nodes, where output from the child nodes are fed as input to related parent nodes.
  • a join node may include two child nodes that may represent two join operands
  • a sort node may include a single child node with the input for sorting.
  • Leaves of the tree may include operator nodes that produce results by scanning tables, including performing index scans and/or sequential scans.
  • the SQL engine 110 is used to process one or more SQL models 116 , which may correspond to views such as attribute or analytical views.
  • the SQL engine 110 may include a join engine and/or online analytical processing (OLAP) engine.
  • the join engine may be used to perform all types of joins.
  • the join engine may process the SQL models 116 to obtain attribute views.
  • the attribute views are used to define joins between tables. Also, they can be used to select a subset of columns and rows from a table.
  • an attribute view “Flight” can show Airline Code, Airline Connection Number, and flight date into one object.
  • the OLAP engine may be used for calculation and aggregation.
  • the OLAP engine may process the query to obtain analytical views.
  • the analytical views are typically defined on at least one fact table that contains transactional data. Using analytic views, one can create a selection of measures, add attributes and join attribute views.
  • the SQL engine 110 is associated with an SQL optimizer 112 configured to perform one or more optimizations on the SQL model 116 .
  • the SQL optimizer 112 may perform any type of SQL optimization procedures known to one of ordinary skill in the art.
  • the SQL engine 110 (including the SQL optimizer 112 ) is configured to receive, parse, compile, and optimize the query to obtain the SQL model 116 (or multiple SQL models).
  • the SQL engine 110 determines which operations must be conducted to accomplish the query such as obtaining the parsing tree from the query, converting to an initial query plan, selecting an order for joins, and/or physical plan selection that represents the query plan as the query tree having a series of relational operators.
  • the SQL engine 110 may be configured to incorporate other query plans (e.g., SQL models 116 , calculation models 128 ) into the overall execution plan 114 . Then, the SQL engine 110 is configured to execute the execution plan 114 on the database 134 to obtain the data relevant to the query.
  • the SQL engine 110 determines whether the query, the execution plan 114 , and/or the SQL model 116 requires one or more calculation models 128 , calculation views or operations handled by the calculation engine 122 . If so, the SQL optimizer 112 may invoke the calculation engine 122 , which instantiates, optimizes, and then converts the calculation model 128 into the converted calculation model 132 having the compatible format. Then, the SQL optimizer 112 incorporates the converted calculation model 132 into the execution plan 114 , and performs one or more additional optimizations on the combined execution plan 114 . Then, the SQL optimizer 112 executes the query according to the execution plan 114 .
  • the converted calculation model 132 is from the same structure as the SQL model 116 , but the SQL model 116 originates directly from a SQL statement and the converted calculation model 132 originates from a SQL query on a calculation model 128 which is then instantiated, optimized, and converted into such a SQL model.
  • the calculation engine 122 executes queries based on calculation models 128 .
  • the calculation engine 122 is used for complex calculations that cannot be accomplished by the SQL engine 110 .
  • the calculation engine 122 may execute the calculation models 128 to obtain the calculation views.
  • the calculation engine 122 may execute a series of calculation models 128 that may be joined or stacked to produce multiple calculation views.
  • the calculation views may be graphical views that consume other analytical, attribute, and/or calculation views and tables.
  • the calculation views may include union, join, projection, and aggregation nodes (or any combination thereof), and provides enhanced features such as distinct, count, calculation, and dynamic joints.
  • the calculation model 128 is a generic query model that provides the framework for querying data in the database 134 in an efficient manner. Similar to the SQL model 116 , the calculation model 128 specifies one or more operator nodes that encapsulate operations for executing the query, and the operator nodes may be arranged in a tree structure, where results flow from a lower portion of the tree to an upper portion of the tree. However, the calculation model 128 may specify relatively more complex operations on the data in order to provide one or more calculation views. The calculation model 128 may include custom calculation flows that provide enhanced functionality in contrast to standard SQL implemented by the SQL engine 110
  • the calculation model 128 is a directed acyclic graph (DAG) that expresses complex data flows and calculations within the database 134 .
  • the calculation model 128 includes at least one non-relational operator node that performs a non-relational function.
  • the calculation model 128 includes all relational operators.
  • a relational operator (expressed by relational expressions or relational conditions) may be a programming language construct or operator that defines a relation between two entities. There may be many different types of relational operators.
  • the relational operators may be joins, unions, intersections, differences, selections, projections, joins, and sorting, etc.
  • Non-relational operators may be any type of operator not considered relational.
  • non-relational operators may include non-relational comparisons, custom expressions, join conditions that do not follow primary/foreign key model, type constructor, field extractor, nest block, unnest block, etc.
  • the calculation model 128 is within a format that is not compatible with the SQL engine 110 .
  • the calculation model 128 in the DAG format is not compatible with the SQL engine 110 .
  • the SQL engine 110 process and executes (and optionally optimizes) the SQL model 116 for the non-calculation view.
  • the calculation engine 122 processes, optimizes, and then executes the calculation model 128 for the calculation view to obtain intermediate results.
  • the SQL engine 110 may combine the intermediate results of the calculation model 128 with the results of the SQL model 116 in order to complete the query.
  • the database system 100 changes this query execution process by incorporating the converted calculation model 132 into the SQL execution plan 114 during query compilation (instead of after execution).
  • the SQL engine 110 may apply further optimizations to the combined execution plan 114 in a manner that previously was not possible. Further, it is possible to store the combined execution plan 114 into the plan cache 120 such that the execution plan 114 can be reused for subsequent, similar queries.
  • the SQL optimizer 112 calls the calculation engine 122 during compilation time of the query. If one or more operator nodes of the calculation model 128 are non-relational, the SQL engine 110 determines that the calculation model 128 cannot be converted. In this case, the SQL engine 110 may proceed as indicated above. For example, SQL execution is performed followed by calculation model execution (or vice versa). Then, the SQL engine 110 may combine the intermediate results from the calculation model 128 with the results of the SQL model 116 in order to complete the query. However, if all of the operator nodes of the calculation model 128 are relational, the SQL optimizer 112 determines that the calculation model 128 can be converted. If the calculation model 128 is convertible, the SQL optimizer 112 may invoke the calculation engine 122 , as discussed below.
  • the calculation engine 122 may include a model instantiator 126 , a calculation engine optimizer 127 , and a model converter 132 , which instantiates, optimizes, and converts, during SQL query compilation, the calculation model 128 to the converted calculation model 132 having the format that is compatible with the SQL engine 110 and/or SQL optimizer 112 .
  • the converted calculation model 132 is returned to the SQL optimizer 112 .
  • the SQL optimizer 112 combines, integrates, or merges the converted calculation model 132 with other converted calculation models 132 and/or SQL model(s) 116 , thereby producing the overall execution plan 114 having the merged structure.
  • the model instantiator 126 may instantiate the calculation model 128 by obtaining or deriving the calculation model 128 , and merging the query for the calculation view with the calculation model 128 .
  • the model instantiator 126 may obtain one or more calculation models 128 from the database 134 .
  • the model instantiator 126 may obtain the calculation model 128 from the database 134 , which stores a number of different calculation models 128 by selecting the calculation model 128 (or more than one calculation model 128 ) that generally corresponds to the type of operations specified by the query.
  • the model instantiator 126 may create or derive the calculation model 128 on the fly.
  • the calculation engine optimizer 127 may tailor the calculation model 128 (which may be relatively generic) to the requested query and optimize the calculation model 128 to be executed in an efficient manner. For example, the calculation engine optimizer 127 may combine multiple filters, push down filters, remove filter attributes, and/or remove unnecessary attributes from the calculation model 128 . If an attribute is not required by the calculation view and is not required by other parts of the calculation model 128 , the calculation engine optimizer 127 may remove that attribute from the calculation model 128 .
  • the calculation model 128 is a format different than the format recognizable by the SQL engine 110 and/or SQL optimizer 112 .
  • the calculation model 128 is a black box. In other words, the SQL engine 110 may not understand the logic behind the calculation model 128 .
  • the DAG format is not compatible with the SQL engine 110 .
  • the model converter 130 is configured to convert the format of the calculation model 128 to the format compatible with the SQL engine 110 , thereby producing the converted calculation model 132 .
  • the model converter 130 is configured to convert the format of the calculation model 128 to a QO-graph.
  • the QO-graph is considered a query optimizer graph.
  • the QO-graph is the format of the SQL model 116 .
  • the SQL engine 110 can only consume QO-graphs.
  • the calculation model 128 includes several operator nodes, e.g., join, union, aggregation, etc. All relational operations of the calculation model 128 have a corresponding equivalent in the QO-graph format.
  • the model converter 130 is required to convert an operator node of the calculation model 128 into several QO-graph nodes since the QO-graph nodes are more fine granular, which means they can only perform one operation whereas for example the calculation engine's aggregation operator node could project attributes, aggregate attributes and filter on them in a single node. Most of calculation engine's operator nodes can project, filter, and add calculated attributes besides the real operation.
  • the model converter 130 performs the conversion process to create, for each calculation engine's operation node, 1 to N QO-graph nodes.
  • the calculation engine 122 provides the converted calculation model 132 to the SQL optimizer 112 .
  • the SQL optimizer 112 integrates the converted calculation model 132 into the overall execution plan 114 .
  • the SQL optimizer 112 joins the converted calculation model 132 with other query plans such as the SQL model 116 .
  • the SQL optimizer 112 incorporates the converted calculation model 132 into the execution plan 114 , and performs one or more additional optimizations on the combined execution plan 114 .
  • the calculation engine optimizer 127 cannot reorder join operator nodes, whereas the SQL optimizer 112 can reorder join operator nodes.
  • a pure calculation engine execution would execute the join operations in the order as they are defined in the calculation model 128 .
  • the SQL optimizer 112 may change this execution order to reduce the runtime of the query. Further, the calculation engine optimizer 127 cannot push down aggregation, therefore an aggregation operation is executed on the level where the aggregation is defined. However, the SQL optimizer 112 may push down an aggregation operator through a join operator (or another operator). In some examples, a join engine or OLAP engine view is a black box for the calculation engine optimizer 127 , but not for the SQL optimizer 112 . As such, this allows further optimization by the SQL optimizer 112 such as pushing a filter into the main part of such a view.
  • the SQL optimizer 112 may perform these types of optimizations on the combined plan in a manner that was not possible before because the calculation model 128 was separately optimized. Then, the SQL optimizer 112 executes the execution plan 114 having the converted calculation model 128 within the context of a larger query plan that includes the SQL model 116 .
  • the database system 100 (all components of the database system 100 ) are implemented at the database level (database server).
  • the database system 100 is implemented as the in-memory database system.
  • the components of the database system 100 are implemented in the database level as opposed to the application server or the interface (web interface).
  • the database clients 102 e.g., application servers, web applications, etc.
  • the components of the database system 100 are implemented as part of a relational database system such that these components may be distributed across multiple devices or layers or included within a single device or layer.
  • the database system 100 may include at least one processor 144 , and a non-transitory computer-readable medium 146 storing executable code that, when executed by the at least one processor 144 , is configured to implement the components and functionalities of the database system 100 .
  • the non-transitory computer-readable medium 146 may include one or more non-volatile memories, including, by way of example, semiconductor memory devices, e.g., EPROM, EEPROM, and flash memory devices; magnetic disks, e.g., internal hard disks or removable disks, magneto optical disks, and CD ROM and DVD-ROM disks. Also, the non-transitory computer-readable medium 146 may include any devices configured as main memory and/or disk storage.
  • the at least one processor 144 may include any type of general purpose computing circuitry or special purpose logic circuitry, e.g., an FPGA (field programmable gate array) or an ASIC (application specific integrated circuit). Also, the at least one processor 144 may be one or more processors coupled to one or more semi-conductor substrates.
  • general purpose computing circuitry e.g., an FPGA (field programmable gate array) or an ASIC (application specific integrated circuit).
  • the at least one processor 144 may be one or more processors coupled to one or more semi-conductor substrates.
  • FIG. 2 illustrates a query execution process 200 that is performed when the SQL optimizer 112 determines that the calculation model 128 is not convertible for the requested query according to an aspect.
  • the SQL engine 110 parses the query.
  • the SQL engine 110 and/or SQL optimizer 112 compiles (and potentially optimizes) the parsed query to determine the execution plan 114 which may be implemented with one or more SQL models 116 and/or one or more calculation models 128 (which is dependent upon the complexity of the query).
  • the execution plan 114 may be stored in the plan cache 120 for subsequent, similar queries.
  • the SQL optimizer 112 may determine that the calculation model 128 required by the query is not convertible into the format associated with the SQL optimizer 112 .
  • the SQL engine 110 executes the SQL model 116 for the non-calculation view. After execution of the SQL model 116 , the calculation engine 122 instantiates, optimizes, and then executes the calculation model 128 for the calculation view to obtain intermediate results. Then, the SQL engine 110 combines the intermediate results of the calculation model 128 with the results of the SQL model 116 in order to complete the query.
  • FIG. 3 illustrates a query execution process 300 that is performed when the SQL optimizer 112 determines that the calculation model 128 is convertible according to an aspect.
  • the SQL engine 110 parses the query. In some examples, if the query is executed a second or n th time (assuming the database system 100 was not restarted or the plan cache 120 cleared in the time between), in operation 303 , the SQL engine 110 may perform a plan cache lookup on the plan cache 120 to determine whether there is an already-existing execution plan 114 . If so, the SQL engine 110 executes the execution plan 114 (operation 312 ).
  • the SQL engine 110 performs first compilation operations on the parsed query to determine the general plan which may be implemented with one or more SQL models 116 and/or one or more calculation models 128 (which is dependent upon the complexity of the query). For instance, during the first compilation operations, the SQL optimizer 112 may determine if calculation models 128 are required by the query. Then, during query compilation, the SQL optimizer 112 may request the converted calculation model(s) 132 from the calculation engine 122 pertaining to the query so that they can be merged into the overall execution plan 114 which may contain one or more SQL models 116 .
  • the model instantiator 126 may instantiate the calculation model 128 by obtaining or deriving the calculation model 128 , and merging the query statements with the calculation model 128 .
  • the calculation engine optimizer 127 may tailor the calculation model 128 (which may be relatively generic) to the requested calculation view and optimize the calculation model 128 to be executed in an efficient manner. For example, the calculation engine optimize 127 may combine multiple filters, push down the filter within the calculation model 128 , and/or remove unnecessary attributes from the calculation model 128 .
  • the model converter 130 converts the calculation model 128 to the format compatible with the SQL engine 110 , thereby producing the converted calculation model 132 .
  • the model converter 130 may be configured to convert the format of the calculation model 128 to the QO-graph. Then, the calculation engine 122 is configured to provide the converted calculation model 132 to the SQL optimizer 112 .
  • the SQL optimizer 112 integrates the converted calculation model 132 into the overall execution plan 114 .
  • the SQL optimizer 112 may join the converted calculation model 132 with other query plans such as other converted calculation models 132 and one or more SQL models 116 .
  • the SQL optimizer 112 may perform one or more additional optimizations on the combined execution plan 114 .
  • the SQL optimizer 112 stores the combined execution plan 114 in the plan cache 120 to be available for subsequent, similar query.
  • the SQL optimizer 112 executes the execution plan 114 , and obtains the appropriate query results based on the retrieved information from the database 134 .
  • FIG. 4 is a flowchart illustrating example operations of the database system 100 according to an aspect. Although FIG. 4 is illustrated as a sequential, ordered listing of operations, it will be appreciated that some or all of the operations may occur in a different order, or in parallel, or iteratively, or may overlap in time.
  • the SQL engine 110 parses the SQL query.
  • the SQL optimizer 112 compiles (and potentially optimizes) the parsed query.
  • the SQL optimizer 112 may request the converted calculation model(s) 132 from the calculation engine 122 so that they can be merged into the overall execution plan 114 which may contain one or more SQL models 116 .
  • the model instantiator 126 may instantiate the calculation model 128 by obtaining or deriving the calculation model 128 , and merging the query statements pertaining to the calculation views (CV 1 , CV 2 , CV 3 ) with the calculation model 128 .
  • the calculation engine optimizer 127 may tailor the calculation model 128 (which may be relatively generic) to the requested calculation views and optimize the calculation model 128 to be executed in an efficient manner. For example, the calculation engine optimize 127 may combine multiple filters, push down the filter within the calculation model 128 , and/or remove unnecessary attributes from the calculation model 128 .
  • the model converter 130 converts the format of the calculation model 128 to the format compatible with the SQL engine 110 , thereby producing the converted calculation model 132 . In some examples, the model converter 130 converts the format of the calculation model 128 to the QO-graph. Then, the calculation engine 122 is configured to provide the converted calculation model 132 (which is the QO-Graph) to the SQL optimizer 112 .
  • the SQL optimizer 112 integrates the converted calculation model 132 into the overall execution plan 114 .
  • the SQL optimizer 112 is configured to join the converted calculation model 132 with other query plans such as the SQL model 116 to obtain the execution plan 114 , where the execution plan 114 has a merged structure (e.g., SQL-QO structure).
  • the SQL may perform one or more additional optimizations on the combined execution plan 114 .
  • the SQL optimizer 112 may store the combined execution plan 114 in the plan cache 120 to be available for subsequent, similar query.
  • the SQL optimizer 112 may execute the execution plan 114 , and obtain the appropriate query results based on the retrieved information from the database 134 .
  • FIG. 5 is a flowchart illustrating example operations of the database system 100 according to an aspect. Although FIG. 5 is illustrated as a sequential, ordered listing of operations, it will be appreciated that some or all of the operations may occur in a different order, or in parallel, or iteratively, or may overlap in time.
  • a query to be applied on a database may be parsed by a first engine ( 502 ).
  • the first engine is an SQL engine
  • the second engine is a calculation engine.
  • the SQL engine 110 is configured to parse the query to be applied on the database 134 .
  • a second engine may be invoked by the first engine during query compilation ( 504 ).
  • the first engine is configured to determine whether the query requires any operations to be performed by the second engine.
  • the SQL engine 110 is configured to invoke the calculation engine 122 .
  • the SQL engine 110 is configured to invoke the calculation engine 122 if the calculation model 128 is convertible to the format of the SQL optimizer 112 .
  • the SQL engine 110 is configured to determine whether the calculation model 128 is fully relational, and if the calculation model 128 is fully relational, the SQL engine 110 is configured to invoke the calculation engine 122 .
  • a calculation model may be instantiated by the second engine ( 506 ).
  • the second engine may instantiate a calculation model for executing the query.
  • the calculation engine 122 (model instantiator 126 ) is configured to obtain or derive the calculation model 128 , and merge the query with the calculation model 128 .
  • the calculation engine 122 is configured to remove one or more attributes from the calculation model 128 that are not required by the query.
  • the calculation engine optimizer 127 is configured to optimize the calculation model 128 .
  • the calculation may be converted by the second engine to a format associated with the first engine ( 508 ).
  • the second engine is configured to convert the format of the calculation model 128 to a format that is compatible with the first engine.
  • the model converter 130 of the calculation engine 122 is configured to convert the calculation model 128 into a format compatible with the SQL optimizer 112 .
  • the format of the calculation model 128 is a directed acyclic graph (DAG).
  • the format compatible with the SQL engine 110 is a QO-Graph such that the DAG is converted into the QO-Graph.
  • the converted calculation model may be incorporated into an execution plan during query compilation, and the query may be executed on the database according to the execution plan ( 510 ).
  • the first engine may be configured to incorporate the converted calculation model into the execution plan during query compilation, and the first engine is configured to execute the query on the database according to the execution plan. For instance, the compilation process may be resumed after receiving the converted calculation model.
  • the SQL engine 110 may be configured to incorporate the converted calculation model 132 into the execution plan 114 . Also, the SQL engine 110 may be configured to execute the query on the database 134 according to the execution plan 114 .
  • Implementations of the various techniques described herein may be implemented in digital electronic circuitry, or in computer hardware, firmware, software, or in combinations of them. Implementations may implemented as a computer program product, i.e., a computer program tangibly embodied in an information carrier, e.g., in a machine-readable storage device or in a propagated signal, for execution by, or to control the operation of, data processing apparatus, e.g., a programmable processor, a computer, or multiple computers.
  • data processing apparatus e.g., a programmable processor, a computer, or multiple computers.
  • a computer program such as the computer program(s) described above, can be written in any form of programming language, including compiled or interpreted languages, and can be deployed in any form, including as a stand-alone program or as a module, component, subroutine, or other unit suitable for use in a computing environment.
  • a computer program can be deployed to be executed on one computer or on multiple computers at one site or distributed across multiple sites and interconnected by a communication network.
  • Method steps may be performed by one or more programmable processors executing a computer program to perform functions by operating on input data and generating output. Method steps also may be performed by, and an apparatus may be implemented as, special purpose logic circuitry, e.g., an FPGA (field programmable gate array) or an ASIC (application-specific integrated circuit).
  • FPGA field programmable gate array
  • ASIC application-specific integrated circuit
  • processors suitable for the execution of a computer program include, by way of example, both general and special purpose microprocessors, and any one or more processors of any kind of digital computer.
  • a processor will receive instructions and data from a read-only memory or a random access memory or both.
  • Elements of a computer may include at least one processor for executing instructions and one or more memory devices for storing instructions and data.
  • a computer also may include, or be operatively coupled to receive data from or transfer data to, or both, one or more mass storage devices for storing data, e.g., magnetic, magneto-optical disks, or optical disks.
  • Information carriers suitable for embodying computer program instructions and data include all forms of non-volatile memory, including by way of example semiconductor memory devices, e.g., EPROM, EEPROM, and flash memory devices; magnetic disks, e.g., internal hard disks or removable disks; magneto-optical disks; and CD-ROM and DVD-ROM disks.
  • semiconductor memory devices e.g., EPROM, EEPROM, and flash memory devices
  • magnetic disks e.g., internal hard disks or removable disks
  • magneto-optical disks e.g., CD-ROM and DVD-ROM disks.
  • the processor and the memory may be supplemented by, or incorporated in special purpose logic circuitry.
  • implementations may be implemented on a computer having a display device, e.g., a cathode ray tube (CRT) or liquid crystal display (LCD) monitor, for displaying information to the user and a keyboard and a pointing device, e.g., a mouse or a trackball, by which the user can provide input to the computer.
  • a display device e.g., a cathode ray tube (CRT) or liquid crystal display (LCD) monitor
  • keyboard and a pointing device e.g., a mouse or a trackball
  • Other kinds of devices can be used to provide for interaction with a user as well; for example, feedback provided to the user can be any form of sensory feedback, e.g., visual feedback, auditory feedback, or tactile feedback; and input from the user can be received in any form, including acoustic, speech, or tactile input.
  • Implementations may be implemented in a computing system that includes a back-end component, e.g., as a data server, or that includes a middleware component, e.g., an application server, or that includes a front-end component, e.g., a client computer having a graphical user interface or a Web browser through which a user can interact with an implementation, or any combination of such back-end, middleware, or front-end components.
  • Components may be interconnected by any form or medium of digital data communication, e.g., a communication network. Examples of communication networks include a local area network (LAN) and a wide area network (WAN), e.g., the Internet.
  • LAN local area network
  • WAN wide area network

Abstract

According to an aspect, a database system for integrating calculation models into execution plans includes a first engine configured to parse a query to be applied on a database. The first engine is configured to invoke a second engine during query compilation. The second engine is configured to instantiate a calculation model based on the query, and the second engine is configured to derive a converted calculation model by converting the calculation model into a format compatible with the first engine. The first engine is configured to incorporate the converted calculation model into an execution plan during the query compilation and execute the query on the database according to execution plan.

Description

    BACKGROUND
  • A database system may include a relational database and multiple engines that are used to query the relational database. For example, the engines may include a structured query language (SQL) engine configured to query the relational database using standard SQL, and a calculation engine configured to query the relational database based on a calculation model. There may be benefits for using one type of engine over another type of engine. For example, the calculation model is a solution to express complex data flows and calculations within the database system. The calculation model is expressed in a format that allows non-relational operations and/or relatively more complex operations that are generally not possible with standard SQL. However, the SQL engine may be better suited for other types of operations such as join re-ordering or other relational operations. Both the calculation engine and the SQL engine are associated with their own optimizer. For example, the calculation engine's optimizer may be focused on filter push down, filter combination, attribute removal, etc., while the SQL engine's optimizer may be focused on relational optimizations.
  • Conventionally, the calculation models are not integrated with the execution model of the SQL optimizer. For example, if the query relates to a join involving a row store view and a calculation view, the SQL engine parses, compiles, and executes the SQL query for the row store view. After execution of the row store query, the query engine instantiates, optimizes, and then executes the calculation model for the calculation view, which is then combined with the row store view.
  • SUMMARY
  • According to an aspect, a database system for integrating calculation models into execution plans includes a first engine configured to parse a query to be applied on a database. The first engine is configured to invoke a second engine during query compilation. The second engine is configured to instantiate a calculation model based on the query, and the second engine is configured to derive a converted calculation model by converting the calculation model into a format compatible with the first engine. The first engine is configured to incorporate the converted calculation model into an execution plan during the query compilation and execute the query on the database according to execution plan.
  • In some examples, the database system may include one or more of the following features (or any combination thereof). The first engine is a structured query language (SQL) engine, and the second engine is a calculation engine. The second engine is configured to instantiate the calculation model by merging the query with the calculation model and removing one or more attributes from the calculation model that are not required by the query. The format of the calculation is a directed acyclic graph (DAG) having an arrangement of operator nodes. The format compatible with the first engine is a QO-Graph such that the DAG of the calculation model is converted into the QO-Graph. The first engine is configured to invoke the second engine during query compilation if the calculation model is convertible to the format associated with the first engine. The first engine is configured to determine whether the calculation model is fully relational, and if the calculation model is fully relational, the first engine is configured to invoke the second engine. The execution plan includes a structured query language (SQL) model integrated with the converted calculation model that produces a merged structure. Before converting, the format of the calculation model is not compatible with the format of the first engine. The query specifies a calculation view that incorporates an attribute view, and the first engine is configured to determine a structured query language (SQL) model for the attribute view, and invoke the second engine to determine the calculation model for the calculation view, where the execution plan integrates the SQL model and the converted calculation model into a merged structure.
  • According to an aspect, a computer program product tangibly embodied on a non-transitory computer-readable storage medium and including executable code that, when executed, is configured to cause at least one processor to parse, by a structured query language (SQL) engine, a query to be executed on a relational database, invoke, by the SQL engine, a calculation engine to obtain a calculation model, convert, by the calculation engine, a format of the calculation model to a format compatible with the SQL engine, incorporate, by the SQL engine, the calculation model with the converted format into an execution plan, and execute, by the SQL engine, the query on the relational database according to the execution plan incorporated with the calculation model.
  • In some examples, the computer program product may include one or more of the following features (or any combination thereof). The executable code includes instructions that, when executed by the at least one processor, are configured to instantiate, by the calculation engine, the calculation model by merging the query with the calculation model and removing one or more attributes from the calculation model that are not required by the query, and optimize, by the calculation engine, the calculation model, where the optimized calculation model is converted to the format compatible with the SQL engine. The executable code to convert the format of the calculation model includes instructions to convert a directed acyclic graph (DAG) to a QO-Graph, where the QO-Graph is incorporated into the execution plan to produce a merged QO-SQL structure. The calculation model includes an arrangement of operator nodes, and the calculation engine is not invoked for converting the calculation model if any of the operator nodes is non-relational but instantiates, optimizes and executes the calculation model. The calculation engine is invoked during SQL query compilation such that the SQL engine incorporates the calculation model before SQL execution. The executable code includes instructions that, when executed by the at least one processor, are configured to optimize, by the SQL engine, the execution plan with the integrated calculation model.
  • According to an aspect, a method for integrating calculation models into execution plans includes parsing, by a structured query language (SQL) engine, a query to be executed on a relational database, where the query requires a calculation model and an SQL model, determining, by the SQL engine, whether the calculation model is convertible into a format compatible with the SQL engine, invoking, by the SQL engine, a calculation engine to obtain the calculation model if the calculation model is determined as convertible, converting, by the calculation engine, the calculation model to the format compatible with the SQL engine, integrating, by the SQL engine, the calculation model and the SQL model into an execution plan;, optimizing, by the SQL engine, the execution plan, and executing, by the SQL engine, the query on the relational database according to the execution plan.
  • In some examples, the method may include one or more of the following features (or any combination thereof). The method may include executing, by the SQL engine, the SQL model to obtain first results if the calculation model is not convertible into the format compatible with the SQL engine, executing, by the calculation engine, the calculation model to obtain second results, and returning, by the SQL engine, the first and second results in a manner specified by the query. The calculation model is determined as not convertible into the format compatible with the SQL engine if at least one operator node of a directed acyclic graph (DAG) is not relational. The calculation model provides a graphical calculation view that incorporates at least one an attribute or analytical view.
  • The details of one or more implementations are set forth in the accompanying drawings and the description below. Other features will be apparent from the description and drawings, and from the claims.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 illustrates a database system for converting and integrating a calculation model into a SQL execution plan during query compilation according to an aspect.
  • FIG. 2 illustrates a query execution process that is performed when the calculation model is not convertible according to an aspect.
  • FIG. 3 illustrates a query execution process that is performed when the calculation model is convertible according to an aspect.
  • FIG. 4 is a flowchart illustrating example operations of the database system of FIG. 1 according to an aspect.
  • FIG. 5 is a flowchart illustrating example operations of the database system of FIG. 1 according to an aspect.
  • DETAILED DESCRIPTION
  • The embodiments provide systems and methods for integrating a calculation model into the SQL execution plan such that further optimization can be applied on the combined execution plan. Typically, the calculation model includes operators that are not compatible to the SQL's execution model. However, according to the embodiments, during SQL query compilation, the calculation model is instantiated, optimized, and then converted to a format compatible to the SQL's execution model such that the SQL optimizer can understand the converted calculation model. For instance, from the view point of the SQL optimizer, the non-converted calculation model is seen as a black box. However, after converting the calculation model, the converted calculation model may be inserted into the overall execution model during query compilation, and then further optimized by the SQL optimizer. Then, the single, combined execution plan may be executed. As a result, it is possible to have all (or substantially all) optimizations moved from execution time to compilation time of the query, which may improve the overall execution time of prepared statements. Additionally, further optimizations may be applied to the combined execution plan in a manner that previously was not possible. Further, it is possible to store the combined execution plan into a plan cache such that it may be reused for subsequent, similar queries.
  • FIG. 1 illustrates a database system 100 including a calculation engine 122 for instantiating, optimizing, and then converting a calculation model 128 into a format compatible with an SQL optimizer 112 during query compilation, and an SQL engine 110 for integrating the converted calculation model 132 into an execution plan 114, applying further optimizations on the execution plan 114, and then executing the query on a database 134 according to the execution plan 114. As a result, the efficiency and speed for query execution may be improved.
  • The database system 100 may be a relational database management system (RDBMS). In some examples, the database system 100 is an in-memory database or in-memory database system. The in-memory database system is a type of a relational database management system (RDBMS) that relies on main memory for computer data storage. In contrast, conventional database systems employ a disk storage mechanism. In some examples, the in-memory database system includes a combination of main memory and disk storage. Also, the in-memory database system may support real-time analytics and transactional processing including replication and aggregation techniques. Also, within the in-memory database environment, query/calculation logic is pushed down into the database layer (as opposed to remaining in the application layer) such that the processing time for querying and manipulating the data within the database 134 may be reduced as compared with conventional relational database systems. In some examples, the in-memory database system may be HANA Enterprise 1.0 (any other versions) that is developed by SAP. However, the techniques described herein may be applied to any type of relational database system.
  • The database system 100 operates in conjunction with Structured Query Language (SQL). Generally, SQL refers to a special-purpose programming language designed for managing data held in a relational database management system including an in-memory database. SQL may refer to various types of data related languages including, e.g., a data definition language and a data manipulation language, where a scope of SQL may include data insert, query, update and delete, schema creation and modification, and data access control, and SQL may include procedural elements. Further, in some examples, SQL may include descriptions related to various language elements, including clauses, expressions, predicates, queries, and statements. For instance, clauses may refer to various constituent components of statements and queries, and in some instances, clauses may be considered optional. Further, expressions may be configured to produce scalar values and/or tables that include columns and/or rows of data. Also, predicates may be configured to specify conditions that may be evaluated to SQL three-valued logic (3VL) (true/false/unknown) and/or Boolean truth values, which may be used to moderate effects of statements and queries, and which may be used to modify program flow.
  • The queries are requests to view, access, and/or manipulate data stored in the database 134. The queries may be received at the database system 100 from the database clients 102 in the SQL format (e.g., referred to as SQL queries). Generally, a query is a request for information from the database 134, and the query results may be generated by accessing relevant data from the database 134, and manipulating the relevant data to yield requested information. The database 134 may include one or more database structures or formats such as a row store 136, column store 138, and object store 140. The database structures may be considered complex, where desired data for the query may be retrieved from the database 134 by accessing data using different ways, with different data structures (e.g., SQL models 116, calculation models 128), and in different orders, which typically affects processing times. For instance, processing times of the same queries may vary depending on the manner in which the data is retrieved and/or selected from the database 134. It is noted that the techniques described herein may be applied regardless of the storage format of the database 134. For instance, the techniques described herein may be applied to the row store 136, the column store 138, or the object store 140, or any combinations thereof.
  • The database system 100 may include multiple engines for processing queries to be executed on the database 134, and returning the query results (e.g., views) to the database clients 102. The database clients 102 may include any type of device or application configured to interface with the database system 100. In some examples, the database clients 102 include one or more application servers. The database system 100 may include the SQL engine 110 and the calculation engine 122.
  • The SQL engine 110 may include one or more engines that process queries using SQL. The SQL engine 110 may execute queries according to an SQL model 116 which may be the execution plan 114 or apart of the execution plan 114 if combined with other query models or plans. Typically, the SQL engine 110 may process queries (or portions of queries) that require relational operators such as joins, unions, intersections, differences, selections, projections, joins, and sorting, etc. The SQL model 116 may be a query plan or query scenario for querying the database 134. The SQL model 116 may include a collection of operators designed to accomplish the functions related to the query. The SQL model 116 may include an arrangement of operator nodes that encapsulate relational operations for executing the query. The operator nodes may be arranged in a tree structure, where results flow from a lower portion of the tree to an upper portion of the tree. Each operator node may include zero or more child nodes, where output from the child nodes are fed as input to related parent nodes. For instance, a join node may include two child nodes that may represent two join operands, whereas a sort node may include a single child node with the input for sorting. Leaves of the tree may include operator nodes that produce results by scanning tables, including performing index scans and/or sequential scans.
  • The SQL engine 110 is used to process one or more SQL models 116, which may correspond to views such as attribute or analytical views. For example, the SQL engine 110 may include a join engine and/or online analytical processing (OLAP) engine. The join engine may be used to perform all types of joins. In some examples, the join engine may process the SQL models 116 to obtain attribute views. The attribute views are used to define joins between tables. Also, they can be used to select a subset of columns and rows from a table. In one specific example, an attribute view “Flight” can show Airline Code, Airline Connection Number, and flight date into one object.
  • The OLAP engine may be used for calculation and aggregation. In some examples, the OLAP engine may process the query to obtain analytical views. The analytical views are typically defined on at least one fact table that contains transactional data. Using analytic views, one can create a selection of measures, add attributes and join attribute views. The SQL engine 110 is associated with an SQL optimizer 112 configured to perform one or more optimizations on the SQL model 116. The SQL optimizer 112 may perform any type of SQL optimization procedures known to one of ordinary skill in the art.
  • During query execution process, the SQL engine 110 (including the SQL optimizer 112) is configured to receive, parse, compile, and optimize the query to obtain the SQL model 116 (or multiple SQL models). During the compilation and/or optimization steps, the SQL engine 110 determines which operations must be conducted to accomplish the query such as obtaining the parsing tree from the query, converting to an initial query plan, selecting an order for joins, and/or physical plan selection that represents the query plan as the query tree having a series of relational operators. The SQL engine 110 may be configured to incorporate other query plans (e.g., SQL models 116, calculation models 128) into the overall execution plan 114. Then, the SQL engine 110 is configured to execute the execution plan 114 on the database 134 to obtain the data relevant to the query.
  • However, during the compilation process, the SQL engine 110 determines whether the query, the execution plan 114, and/or the SQL model 116 requires one or more calculation models 128, calculation views or operations handled by the calculation engine 122. If so, the SQL optimizer 112 may invoke the calculation engine 122, which instantiates, optimizes, and then converts the calculation model 128 into the converted calculation model 132 having the compatible format. Then, the SQL optimizer 112 incorporates the converted calculation model 132 into the execution plan 114, and performs one or more additional optimizations on the combined execution plan 114. Then, the SQL optimizer 112 executes the query according to the execution plan 114. It is noted that the converted calculation model 132 is from the same structure as the SQL model 116, but the SQL model 116 originates directly from a SQL statement and the converted calculation model 132 originates from a SQL query on a calculation model 128 which is then instantiated, optimized, and converted into such a SQL model.
  • The calculation engine 122 executes queries based on calculation models 128. In some examples, the calculation engine 122 is used for complex calculations that cannot be accomplished by the SQL engine 110. The calculation engine 122 may execute the calculation models 128 to obtain the calculation views. Also, the calculation engine 122 may execute a series of calculation models 128 that may be joined or stacked to produce multiple calculation views. The calculation views may be graphical views that consume other analytical, attribute, and/or calculation views and tables. The calculation views may include union, join, projection, and aggregation nodes (or any combination thereof), and provides enhanced features such as distinct, count, calculation, and dynamic joints.
  • In some examples, the calculation model 128 is a generic query model that provides the framework for querying data in the database 134 in an efficient manner. Similar to the SQL model 116, the calculation model 128 specifies one or more operator nodes that encapsulate operations for executing the query, and the operator nodes may be arranged in a tree structure, where results flow from a lower portion of the tree to an upper portion of the tree. However, the calculation model 128 may specify relatively more complex operations on the data in order to provide one or more calculation views. The calculation model 128 may include custom calculation flows that provide enhanced functionality in contrast to standard SQL implemented by the SQL engine 110
  • In some examples, the calculation model 128 is a directed acyclic graph (DAG) that expresses complex data flows and calculations within the database 134. In some examples, the calculation model 128 includes at least one non-relational operator node that performs a non-relational function. In other examples, the calculation model 128 includes all relational operators. A relational operator (expressed by relational expressions or relational conditions) may be a programming language construct or operator that defines a relation between two entities. There may be many different types of relational operators. In some examples, the relational operators may be joins, unions, intersections, differences, selections, projections, joins, and sorting, etc. Non-relational operators may be any type of operator not considered relational. In some examples, non-relational operators may include non-relational comparisons, custom expressions, join conditions that do not follow primary/foreign key model, type constructor, field extractor, nest block, unnest block, etc.
  • Before conversion, the calculation model 128 is within a format that is not compatible with the SQL engine 110. For example, the calculation model 128 in the DAG format is not compatible with the SQL engine 110. As such, if the query specifies a non-calculation view (e.g., analytic view, attribute view, etc.) joined with the calculation view (or the calculation view requires one or more analytic or attribute views), the SQL engine 110 process and executes (and optionally optimizes) the SQL model 116 for the non-calculation view. Then, the calculation engine 122 processes, optimizes, and then executes the calculation model 128 for the calculation view to obtain intermediate results. The SQL engine 110 may combine the intermediate results of the calculation model 128 with the results of the SQL model 116 in order to complete the query.
  • However, the database system 100 changes this query execution process by incorporating the converted calculation model 132 into the SQL execution plan 114 during query compilation (instead of after execution). As a result, the SQL engine 110 may apply further optimizations to the combined execution plan 114 in a manner that previously was not possible. Further, it is possible to store the combined execution plan 114 into the plan cache 120 such that the execution plan 114 can be reused for subsequent, similar queries.
  • If the calculation model 128 is convertible, the SQL optimizer 112 calls the calculation engine 122 during compilation time of the query. If one or more operator nodes of the calculation model 128 are non-relational, the SQL engine 110 determines that the calculation model 128 cannot be converted. In this case, the SQL engine 110 may proceed as indicated above. For example, SQL execution is performed followed by calculation model execution (or vice versa). Then, the SQL engine 110 may combine the intermediate results from the calculation model 128 with the results of the SQL model 116 in order to complete the query. However, if all of the operator nodes of the calculation model 128 are relational, the SQL optimizer 112 determines that the calculation model 128 can be converted. If the calculation model 128 is convertible, the SQL optimizer 112 may invoke the calculation engine 122, as discussed below.
  • The calculation engine 122 may include a model instantiator 126, a calculation engine optimizer 127, and a model converter 132, which instantiates, optimizes, and converts, during SQL query compilation, the calculation model 128 to the converted calculation model 132 having the format that is compatible with the SQL engine 110 and/or SQL optimizer 112. The converted calculation model 132 is returned to the SQL optimizer 112. Then, the SQL optimizer 112 combines, integrates, or merges the converted calculation model 132 with other converted calculation models 132 and/or SQL model(s) 116, thereby producing the overall execution plan 114 having the merged structure.
  • The model instantiator 126 may instantiate the calculation model 128 by obtaining or deriving the calculation model 128, and merging the query for the calculation view with the calculation model 128. The model instantiator 126 may obtain one or more calculation models 128 from the database 134. For example, the model instantiator 126 may obtain the calculation model 128 from the database 134, which stores a number of different calculation models 128 by selecting the calculation model 128 (or more than one calculation model 128) that generally corresponds to the type of operations specified by the query. In other examples, the model instantiator 126 may create or derive the calculation model 128 on the fly.
  • The calculation engine optimizer 127 may tailor the calculation model 128 (which may be relatively generic) to the requested query and optimize the calculation model 128 to be executed in an efficient manner. For example, the calculation engine optimizer 127 may combine multiple filters, push down filters, remove filter attributes, and/or remove unnecessary attributes from the calculation model 128. If an attribute is not required by the calculation view and is not required by other parts of the calculation model 128, the calculation engine optimizer 127 may remove that attribute from the calculation model 128.
  • Before converting, the calculation model 128 is a format different than the format recognizable by the SQL engine 110 and/or SQL optimizer 112. For example, from the point of view of the SQL engine 110, the calculation model 128 is a black box. In other words, the SQL engine 110 may not understand the logic behind the calculation model 128. The DAG format is not compatible with the SQL engine 110. However, the model converter 130 is configured to convert the format of the calculation model 128 to the format compatible with the SQL engine 110, thereby producing the converted calculation model 132. In some examples, the model converter 130 is configured to convert the format of the calculation model 128 to a QO-graph. In some examples, the QO-graph is considered a query optimizer graph. The QO-graph is the format of the SQL model 116. In some examples, the SQL engine 110 can only consume QO-graphs.
  • With respect to the conversion process, the calculation model 128 includes several operator nodes, e.g., join, union, aggregation, etc. All relational operations of the calculation model 128 have a corresponding equivalent in the QO-graph format. In some examples, the model converter 130 is required to convert an operator node of the calculation model 128 into several QO-graph nodes since the QO-graph nodes are more fine granular, which means they can only perform one operation whereas for example the calculation engine's aggregation operator node could project attributes, aggregate attributes and filter on them in a single node. Most of calculation engine's operator nodes can project, filter, and add calculated attributes besides the real operation. Thus, in some examples, the model converter 130 performs the conversion process to create, for each calculation engine's operation node, 1 to N QO-graph nodes.
  • The calculation engine 122 provides the converted calculation model 132 to the SQL optimizer 112. During query compilation, the SQL optimizer 112 integrates the converted calculation model 132 into the overall execution plan 114. In some examples, the SQL optimizer 112 joins the converted calculation model 132 with other query plans such as the SQL model 116. For instance, the SQL optimizer 112 incorporates the converted calculation model 132 into the execution plan 114, and performs one or more additional optimizations on the combined execution plan 114. For example, the calculation engine optimizer 127 cannot reorder join operator nodes, whereas the SQL optimizer 112 can reorder join operator nodes. A pure calculation engine execution would execute the join operations in the order as they are defined in the calculation model 128. The SQL optimizer 112 may change this execution order to reduce the runtime of the query. Further, the calculation engine optimizer 127 cannot push down aggregation, therefore an aggregation operation is executed on the level where the aggregation is defined. However, the SQL optimizer 112 may push down an aggregation operator through a join operator (or another operator). In some examples, a join engine or OLAP engine view is a black box for the calculation engine optimizer 127, but not for the SQL optimizer 112. As such, this allows further optimization by the SQL optimizer 112 such as pushing a filter into the main part of such a view. Accordingly, with the merged structure, the SQL optimizer 112 may perform these types of optimizations on the combined plan in a manner that was not possible before because the calculation model 128 was separately optimized. Then, the SQL optimizer 112 executes the execution plan 114 having the converted calculation model 128 within the context of a larger query plan that includes the SQL model 116.
  • The database system 100 (all components of the database system 100) are implemented at the database level (database server). In this case, the database system 100 is implemented as the in-memory database system. If an application solution is implemented with a three tier solution (e.g., interface, application server, and database), the components of the database system 100 are implemented in the database level as opposed to the application server or the interface (web interface). As such, the database clients 102 (e.g., application servers, web applications, etc.) may interact with the database system 100 by submitting queries and receiving query results. In other examples, the components of the database system 100 are implemented as part of a relational database system such that these components may be distributed across multiple devices or layers or included within a single device or layer.
  • The database system 100 may include at least one processor 144, and a non-transitory computer-readable medium 146 storing executable code that, when executed by the at least one processor 144, is configured to implement the components and functionalities of the database system 100. The non-transitory computer-readable medium 146 may include one or more non-volatile memories, including, by way of example, semiconductor memory devices, e.g., EPROM, EEPROM, and flash memory devices; magnetic disks, e.g., internal hard disks or removable disks, magneto optical disks, and CD ROM and DVD-ROM disks. Also, the non-transitory computer-readable medium 146 may include any devices configured as main memory and/or disk storage. The at least one processor 144 may include any type of general purpose computing circuitry or special purpose logic circuitry, e.g., an FPGA (field programmable gate array) or an ASIC (application specific integrated circuit). Also, the at least one processor 144 may be one or more processors coupled to one or more semi-conductor substrates.
  • FIG. 2 illustrates a query execution process 200 that is performed when the SQL optimizer 112 determines that the calculation model 128 is not convertible for the requested query according to an aspect. For example, in operation 202, the SQL engine 110 parses the query. In operation 204, the SQL engine 110 and/or SQL optimizer 112 compiles (and potentially optimizes) the parsed query to determine the execution plan 114 which may be implemented with one or more SQL models 116 and/or one or more calculation models 128 (which is dependent upon the complexity of the query). In operation 206, the execution plan 114 may be stored in the plan cache 120 for subsequent, similar queries. Also, at this time, the SQL optimizer 112 may determine that the calculation model 128 required by the query is not convertible into the format associated with the SQL optimizer 112. In operation 208, the SQL engine 110 executes the SQL model 116 for the non-calculation view. After execution of the SQL model 116, the calculation engine 122 instantiates, optimizes, and then executes the calculation model 128 for the calculation view to obtain intermediate results. Then, the SQL engine 110 combines the intermediate results of the calculation model 128 with the results of the SQL model 116 in order to complete the query.
  • FIG. 3 illustrates a query execution process 300 that is performed when the SQL optimizer 112 determines that the calculation model 128 is convertible according to an aspect. In operation 302, the SQL engine 110 parses the query. In some examples, if the query is executed a second or nth time (assuming the database system 100 was not restarted or the plan cache 120 cleared in the time between), in operation 303, the SQL engine 110 may perform a plan cache lookup on the plan cache 120 to determine whether there is an already-existing execution plan 114. If so, the SQL engine 110 executes the execution plan 114 (operation 312). However, if an existing execution plan 114 is not stored in the plan cache 120, in operation 304, the SQL engine 110 performs first compilation operations on the parsed query to determine the general plan which may be implemented with one or more SQL models 116 and/or one or more calculation models 128 (which is dependent upon the complexity of the query). For instance, during the first compilation operations, the SQL optimizer 112 may determine if calculation models 128 are required by the query. Then, during query compilation, the SQL optimizer 112 may request the converted calculation model(s) 132 from the calculation engine 122 pertaining to the query so that they can be merged into the overall execution plan 114 which may contain one or more SQL models 116.
  • The model instantiator 126 may instantiate the calculation model 128 by obtaining or deriving the calculation model 128, and merging the query statements with the calculation model 128. The calculation engine optimizer 127 may tailor the calculation model 128 (which may be relatively generic) to the requested calculation view and optimize the calculation model 128 to be executed in an efficient manner. For example, the calculation engine optimize 127 may combine multiple filters, push down the filter within the calculation model 128, and/or remove unnecessary attributes from the calculation model 128. The model converter 130 converts the calculation model 128 to the format compatible with the SQL engine 110, thereby producing the converted calculation model 132. The model converter 130 may be configured to convert the format of the calculation model 128 to the QO-graph. Then, the calculation engine 122 is configured to provide the converted calculation model 132 to the SQL optimizer 112.
  • In operation 308, during second compilation operations, the SQL optimizer 112 integrates the converted calculation model 132 into the overall execution plan 114. The SQL optimizer 112 may join the converted calculation model 132 with other query plans such as other converted calculation models 132 and one or more SQL models 116. The SQL optimizer 112 may perform one or more additional optimizations on the combined execution plan 114. In operation 310, the SQL optimizer 112 stores the combined execution plan 114 in the plan cache 120 to be available for subsequent, similar query. In operation 312, the SQL optimizer 112 executes the execution plan 114, and obtains the appropriate query results based on the retrieved information from the database 134.
  • FIG. 4 is a flowchart illustrating example operations of the database system 100 according to an aspect. Although FIG. 4 is illustrated as a sequential, ordered listing of operations, it will be appreciated that some or all of the operations may occur in a different order, or in parallel, or iteratively, or may overlap in time.
  • In operation 402, the SQL engine 110 parses the SQL query. In operation 404, the SQL optimizer 112 compiles (and potentially optimizes) the parsed query. The SQL optimizer 112 may request the converted calculation model(s) 132 from the calculation engine 122 so that they can be merged into the overall execution plan 114 which may contain one or more SQL models 116. In operation 406, the model instantiator 126 may instantiate the calculation model 128 by obtaining or deriving the calculation model 128, and merging the query statements pertaining to the calculation views (CV1, CV2, CV3) with the calculation model 128.
  • In operation 408, the calculation engine optimizer 127 may tailor the calculation model 128 (which may be relatively generic) to the requested calculation views and optimize the calculation model 128 to be executed in an efficient manner. For example, the calculation engine optimize 127 may combine multiple filters, push down the filter within the calculation model 128, and/or remove unnecessary attributes from the calculation model 128. In operation 410, the model converter 130 converts the format of the calculation model 128 to the format compatible with the SQL engine 110, thereby producing the converted calculation model 132. In some examples, the model converter 130 converts the format of the calculation model 128 to the QO-graph. Then, the calculation engine 122 is configured to provide the converted calculation model 132 (which is the QO-Graph) to the SQL optimizer 112.
  • In operation 412, during second compilation operations, the SQL optimizer 112 integrates the converted calculation model 132 into the overall execution plan 114. The SQL optimizer 112 is configured to join the converted calculation model 132 with other query plans such as the SQL model 116 to obtain the execution plan 114, where the execution plan 114 has a merged structure (e.g., SQL-QO structure). The SQL may perform one or more additional optimizations on the combined execution plan 114. In operation 414, the SQL optimizer 112 may store the combined execution plan 114 in the plan cache 120 to be available for subsequent, similar query. In operation 312, the SQL optimizer 112 may execute the execution plan 114, and obtain the appropriate query results based on the retrieved information from the database 134.
  • FIG. 5 is a flowchart illustrating example operations of the database system 100 according to an aspect. Although FIG. 5 is illustrated as a sequential, ordered listing of operations, it will be appreciated that some or all of the operations may occur in a different order, or in parallel, or iteratively, or may overlap in time.
  • A query to be applied on a database may be parsed by a first engine (502). In some examples, the first engine is an SQL engine, and the second engine is a calculation engine. In some examples, the SQL engine 110 is configured to parse the query to be applied on the database 134.
  • A second engine may be invoked by the first engine during query compilation (504). In some examples, during query compilation (immediately proceeding the parsing), the first engine is configured to determine whether the query requires any operations to be performed by the second engine. In some examples, during query compilation, the SQL engine 110 is configured to invoke the calculation engine 122. In some examples, the SQL engine 110 is configured to invoke the calculation engine 122 if the calculation model 128 is convertible to the format of the SQL optimizer 112. In some examples, the SQL engine 110 is configured to determine whether the calculation model 128 is fully relational, and if the calculation model 128 is fully relational, the SQL engine 110 is configured to invoke the calculation engine 122.
  • A calculation model may be instantiated by the second engine (506). For example, in response to the invoking, the second engine may instantiate a calculation model for executing the query. In some examples, the calculation engine 122 (model instantiator 126) is configured to obtain or derive the calculation model 128, and merge the query with the calculation model 128. In some examples, the calculation engine 122 is configured to remove one or more attributes from the calculation model 128 that are not required by the query. Also, after instantiation, the calculation engine optimizer 127 is configured to optimize the calculation model 128.
  • The calculation may be converted by the second engine to a format associated with the first engine (508). For example, the second engine is configured to convert the format of the calculation model 128 to a format that is compatible with the first engine. In some examples, the model converter 130 of the calculation engine 122 is configured to convert the calculation model 128 into a format compatible with the SQL optimizer 112. In some examples, the format of the calculation model 128 is a directed acyclic graph (DAG). In some examples, the format compatible with the SQL engine 110 is a QO-Graph such that the DAG is converted into the QO-Graph.
  • The converted calculation model may be incorporated into an execution plan during query compilation, and the query may be executed on the database according to the execution plan (510). In some examples, the first engine may be configured to incorporate the converted calculation model into the execution plan during query compilation, and the first engine is configured to execute the query on the database according to the execution plan. For instance, the compilation process may be resumed after receiving the converted calculation model. In some examples, the SQL engine 110 may be configured to incorporate the converted calculation model 132 into the execution plan 114. Also, the SQL engine 110 may be configured to execute the query on the database 134 according to the execution plan 114.
  • Implementations of the various techniques described herein may be implemented in digital electronic circuitry, or in computer hardware, firmware, software, or in combinations of them. Implementations may implemented as a computer program product, i.e., a computer program tangibly embodied in an information carrier, e.g., in a machine-readable storage device or in a propagated signal, for execution by, or to control the operation of, data processing apparatus, e.g., a programmable processor, a computer, or multiple computers. A computer program, such as the computer program(s) described above, can be written in any form of programming language, including compiled or interpreted languages, and can be deployed in any form, including as a stand-alone program or as a module, component, subroutine, or other unit suitable for use in a computing environment. A computer program can be deployed to be executed on one computer or on multiple computers at one site or distributed across multiple sites and interconnected by a communication network.
  • Method steps may be performed by one or more programmable processors executing a computer program to perform functions by operating on input data and generating output. Method steps also may be performed by, and an apparatus may be implemented as, special purpose logic circuitry, e.g., an FPGA (field programmable gate array) or an ASIC (application-specific integrated circuit).
  • Processors suitable for the execution of a computer program include, by way of example, both general and special purpose microprocessors, and any one or more processors of any kind of digital computer. Generally, a processor will receive instructions and data from a read-only memory or a random access memory or both. Elements of a computer may include at least one processor for executing instructions and one or more memory devices for storing instructions and data. Generally, a computer also may include, or be operatively coupled to receive data from or transfer data to, or both, one or more mass storage devices for storing data, e.g., magnetic, magneto-optical disks, or optical disks. Information carriers suitable for embodying computer program instructions and data include all forms of non-volatile memory, including by way of example semiconductor memory devices, e.g., EPROM, EEPROM, and flash memory devices; magnetic disks, e.g., internal hard disks or removable disks; magneto-optical disks; and CD-ROM and DVD-ROM disks. The processor and the memory may be supplemented by, or incorporated in special purpose logic circuitry.
  • To provide for interaction with a user, implementations may be implemented on a computer having a display device, e.g., a cathode ray tube (CRT) or liquid crystal display (LCD) monitor, for displaying information to the user and a keyboard and a pointing device, e.g., a mouse or a trackball, by which the user can provide input to the computer. Other kinds of devices can be used to provide for interaction with a user as well; for example, feedback provided to the user can be any form of sensory feedback, e.g., visual feedback, auditory feedback, or tactile feedback; and input from the user can be received in any form, including acoustic, speech, or tactile input.
  • Implementations may be implemented in a computing system that includes a back-end component, e.g., as a data server, or that includes a middleware component, e.g., an application server, or that includes a front-end component, e.g., a client computer having a graphical user interface or a Web browser through which a user can interact with an implementation, or any combination of such back-end, middleware, or front-end components. Components may be interconnected by any form or medium of digital data communication, e.g., a communication network. Examples of communication networks include a local area network (LAN) and a wide area network (WAN), e.g., the Internet.
  • While certain features of the described implementations have been illustrated as described herein, many modifications, substitutions, changes and equivalents will now occur to those skilled in the art. It is, therefore, to be understood that the appended claims are intended to cover all such modifications and changes as fall within the scope of the embodiments.

Claims (20)

What is claimed is:
1. A database system for integrating calculation models into execution plans, the database system comprising:
at least one processor;
a non-transitory computer-readable medium configured to store executable instructions that when executed by the at least one processor are configured to implement:
a first engine configured to parse a query to be applied on a database, the first engine configured to invoke a second engine during query compilation; and
the second engine configured to instantiate a calculation model based on the query, the second engine configured to derive a converted calculation model by converting the calculation model into a format compatible with the first engine,
the first engine configured to incorporate the converted calculation model into an execution plan during the query compilation and execute the query on the database according to execution plan.
2. The database system of claim 1, wherein the first engine is a structured query language (SQL) engine, and the second engine is a calculation engine.
3. The database system of claim 1, wherein the second engine is configured to instantiate the calculation model by merging the query with the calculation model and removing one or more attributes from the calculation model that are not required by the query.
4. The database system of claim 1, wherein the format of the calculation is a directed acyclic graph (DAG) having an arrangement of operator nodes.
5. The database system of claim 4, wherein the format compatible with the first engine is a QO-Graph such that the DAG of the calculation model is converted into the QO-Graph.
6. The database system of claim 1, wherein the first engine is configured to invoke the second engine during query compilation if the calculation model is convertible to the format associated with the first engine.
7. The database system of claim 6, wherein the first engine is configured to determine whether the calculation model is fully relational, and if the calculation model is fully relational, the first engine is configured to invoke the second engine.
8. The database system of claim 1, wherein the execution plan includes a structured query language (SQL) model integrated with the converted calculation model that produces a merged structure.
9. The database system of claim 1, wherein, before converting, the format of the calculation model is not compatible with the format of the first engine.
10. The database system of claim 1, wherein the query specifies a calculation view that incorporates an attribute view, the first engine is configured to determine a structured query language (SQL) model for the attribute view, and invoke the second engine to determine the calculation model for the calculation view, the execution plan integrating the SQL model and the converted calculation model into a merged structure.
11. A computer program product tangibly embodied on a non-transitory computer-readable storage medium and including executable code that, when executed, is configured to cause at least one processor to:
parse, by a structured query language (SQL) engine, a query to be executed on a relational database;
invoke, by the SQL engine, a calculation engine to obtain a calculation model;
convert, by the calculation engine, a format of the calculation model to a format compatible with the SQL engine;
incorporate, by the SQL engine, the calculation model with the converted format into an execution plan; and
execute, by the SQL engine, the query on the relational database according to the execution plan incorporated with the calculation model.
12. The computer program product of claim 11, wherein the executable code includes instructions that, when executed by the at least one processor, are configured to:
instantiate, by the calculation engine, the calculation model by merging the query with the calculation model and removing one or more attributes from the calculation model that are not required by the query; and
optimize, by the calculation engine, the calculation model, wherein the optimized calculation model is converted to the format compatible with the SQL engine.
13. The computer program product of claim 11, wherein the executable code to convert the format of the calculation model includes instructions to convert a directed acyclic graph (DAG) to a QO-Graph, wherein the QO-Graph is incorporated into the execution plan to produce a merged QO-SQL structure.
14. The computer program product of claim 11, wherein the calculation model includes an arrangement of operator nodes, and the calculation engine is not invoked for converting the calculation model if any of the operator nodes is non-relational but instantiates, optimizes and executes the calculation model.
15. The computer program product of claim 11, wherein the calculation engine is invoked during SQL query compilation such that the SQL engine incorporates the calculation model before SQL execution.
16. The computer program product of claim 11, wherein the executable code includes instructions that, when executed by the at least one processor, are configured to:
optimize, by the SQL engine, the execution plan with the integrated calculation model.
17. A method for integrating calculation models into execution plans, the method being performed by at least one processor, the method comprising:
parsing, by a structured query language (SQL) engine, a query to be executed on a relational database, the query requiring a calculation model and an SQL model;
determining, by the SQL engine, whether the calculation model is convertible into a format compatible with the SQL engine;
invoking, by the SQL engine, a calculation engine to obtain the calculation model if the calculation model is determined as convertible;
converting, by the calculation engine, the calculation model to the format compatible with the SQL engine;
integrating, by the SQL engine, the calculation model and the SQL model into an execution plan;
optimizing, by the SQL engine, the execution plan; and
executing, by the SQL engine, the query on the relational database according to the execution plan.
18. The method of claim 17, further comprising:
executing, by the SQL engine, the SQL model to obtain first results if the calculation model is not convertible into the format compatible with the SQL engine;
executing, by the calculation engine, the calculation model to obtain second results; and
returning, by the SQL engine, the first and second results in a manner specified by the query.
19. The method of claim 18, wherein the calculation model is determined as not convertible into the format compatible with the SQL engine if at least one operator node of a directed acyclic graph (DAG) is not relational.
20. The method of claim 17, wherein the calculation model provides a graphical calculation view that incorporates at least one an attribute or analytical view.
US14/540,792 2014-11-13 2014-11-13 Integration of calculation models into SQL layer Active 2035-11-25 US9846724B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US14/540,792 US9846724B2 (en) 2014-11-13 2014-11-13 Integration of calculation models into SQL layer

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US14/540,792 US9846724B2 (en) 2014-11-13 2014-11-13 Integration of calculation models into SQL layer

Publications (2)

Publication Number Publication Date
US20160140175A1 true US20160140175A1 (en) 2016-05-19
US9846724B2 US9846724B2 (en) 2017-12-19

Family

ID=55961874

Family Applications (1)

Application Number Title Priority Date Filing Date
US14/540,792 Active 2035-11-25 US9846724B2 (en) 2014-11-13 2014-11-13 Integration of calculation models into SQL layer

Country Status (1)

Country Link
US (1) US9846724B2 (en)

Cited By (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20160350368A1 (en) * 2015-05-28 2016-12-01 Sap Se Integrated Execution of Relational And Non-Relational Calculation Models by a Database System
US20170147646A1 (en) * 2015-11-23 2017-05-25 Sap Se Conversion of Model Views Into Relational Models
US20170323001A1 (en) * 2016-05-09 2017-11-09 Sap Se Integration of Relational Calculation Views into a Relational Engine
US10169410B2 (en) * 2015-11-18 2019-01-01 Sap Se Merge of stacked calculation views with higher level programming language logic
CN109446255A (en) * 2018-09-30 2019-03-08 珠海沙盒网络科技有限公司 A kind of storage method and system that can be adaptive
US10380084B2 (en) * 2017-01-26 2019-08-13 Sap Se Data model view with complex calculation capability
CN110647549A (en) * 2019-09-29 2020-01-03 北京卓信智恒数据科技股份有限公司 Data index analyzing and executing method and device based on business dynamic modeling
US10554771B2 (en) 2016-07-05 2020-02-04 Sap Se Parallelized replay of captured database workload
US10552413B2 (en) 2016-05-09 2020-02-04 Sap Se Database workload capture and replay
US10592528B2 (en) 2017-02-27 2020-03-17 Sap Se Workload capture and replay for replicated database systems
CN110895529A (en) * 2018-08-23 2020-03-20 马上消费金融股份有限公司 Processing method of structured query language and related device
US10698892B2 (en) 2018-04-10 2020-06-30 Sap Se Order-independent multi-record hash generation and data filtering
US11055352B1 (en) * 2017-06-08 2021-07-06 Amazon Technologies, Inc. Engine independent query plan optimization
US20220292096A1 (en) * 2019-07-17 2022-09-15 Zte Corporation Distributed database preprocessing method, agent layer, system and storage medium
US11573947B2 (en) 2017-05-08 2023-02-07 Sap Se Adaptive query routing in a replicated database environment
US11580102B2 (en) * 2020-04-02 2023-02-14 Ocient Holdings LLC Implementing linear algebra functions via decentralized execution of query operator flows
US11615012B2 (en) 2020-04-03 2023-03-28 Sap Se Preprocessing in database system workload capture and replay
US11709752B2 (en) 2020-04-02 2023-07-25 Sap Se Pause and resume in database system workload capture and replay

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US11055331B1 (en) * 2016-11-06 2021-07-06 Tableau Software, Inc. Adaptive interpretation and compilation of database queries
US11360977B2 (en) 2019-04-01 2022-06-14 Sap Se Selectively allowing query optimization in query processing

Citations (17)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5918232A (en) * 1997-11-26 1999-06-29 Whitelight Systems, Inc. Multidimensional domain modeling method and system
US5963936A (en) * 1997-06-30 1999-10-05 International Business Machines Corporation Query processing system that computes GROUPING SETS, ROLLUP, and CUBE with a reduced number of GROUP BYs in a query graph model
US6092062A (en) * 1997-06-30 2000-07-18 International Business Machines Corporation Relational database query optimization to perform query evaluation plan, pruning based on the partition properties
US20050010565A1 (en) * 2003-05-27 2005-01-13 David Cushing System and method of transforming queries based upon E/R schema into multi-dimensional expression queries
US20050010569A1 (en) * 2003-05-27 2005-01-13 Cognos Incorporated System and method of query transformation
US20060106776A1 (en) * 2004-11-18 2006-05-18 International Business Machines Corporation Utilizing mathematical operations with abstract queries
US20070226186A1 (en) * 2006-03-24 2007-09-27 International Business Machines Corporation Progressive refinement of a federated query plan during query execution
US20090006346A1 (en) * 2007-06-29 2009-01-01 Kanthi C N Method and Apparatus for Efficient Aggregate Computation over Data Streams
US20090077001A1 (en) * 2006-11-02 2009-03-19 William Macready Integrating optimization directly into databases
US20120005190A1 (en) * 2010-05-14 2012-01-05 Sap Ag Performing complex operations in a database using a semantic layer
US20120109934A1 (en) * 2010-10-28 2012-05-03 Sap Ag Database calculation engine
US20120130942A1 (en) * 2010-11-22 2012-05-24 Sap Ag OLAP Execution Model Using Relational Operations
US20120191690A1 (en) * 2011-01-25 2012-07-26 Muthian George Parameter expressions for modeling user defined function execution in analytical data processing systems
US20150142777A1 (en) * 2013-11-19 2015-05-21 Tobias Mindnich Consistent Aggregation in a Database
US20150370865A1 (en) * 2014-06-23 2015-12-24 Sang Il Song Framework for Visualizing Re-Written Queries to Database
US20160034530A1 (en) * 2014-07-29 2016-02-04 Metanautix, Inc. Systems and methods for a query optimization engine
US9292574B2 (en) * 2012-09-28 2016-03-22 Oracle International Corporation Tactical query to continuous query conversion

Patent Citations (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5963936A (en) * 1997-06-30 1999-10-05 International Business Machines Corporation Query processing system that computes GROUPING SETS, ROLLUP, and CUBE with a reduced number of GROUP BYs in a query graph model
US6092062A (en) * 1997-06-30 2000-07-18 International Business Machines Corporation Relational database query optimization to perform query evaluation plan, pruning based on the partition properties
US5918232A (en) * 1997-11-26 1999-06-29 Whitelight Systems, Inc. Multidimensional domain modeling method and system
US20050010565A1 (en) * 2003-05-27 2005-01-13 David Cushing System and method of transforming queries based upon E/R schema into multi-dimensional expression queries
US20050010569A1 (en) * 2003-05-27 2005-01-13 Cognos Incorporated System and method of query transformation
US20060106776A1 (en) * 2004-11-18 2006-05-18 International Business Machines Corporation Utilizing mathematical operations with abstract queries
US20070226186A1 (en) * 2006-03-24 2007-09-27 International Business Machines Corporation Progressive refinement of a federated query plan during query execution
US20090077001A1 (en) * 2006-11-02 2009-03-19 William Macready Integrating optimization directly into databases
WO2009005594A2 (en) * 2007-06-29 2009-01-08 Lucent Technologies Inc. Method and apparatus for efficient aggregate computation over data streams
US20090006346A1 (en) * 2007-06-29 2009-01-01 Kanthi C N Method and Apparatus for Efficient Aggregate Computation over Data Streams
US20120005190A1 (en) * 2010-05-14 2012-01-05 Sap Ag Performing complex operations in a database using a semantic layer
US20120109934A1 (en) * 2010-10-28 2012-05-03 Sap Ag Database calculation engine
US20120130942A1 (en) * 2010-11-22 2012-05-24 Sap Ag OLAP Execution Model Using Relational Operations
US20120191690A1 (en) * 2011-01-25 2012-07-26 Muthian George Parameter expressions for modeling user defined function execution in analytical data processing systems
US9292574B2 (en) * 2012-09-28 2016-03-22 Oracle International Corporation Tactical query to continuous query conversion
US20150142777A1 (en) * 2013-11-19 2015-05-21 Tobias Mindnich Consistent Aggregation in a Database
US20150370865A1 (en) * 2014-06-23 2015-12-24 Sang Il Song Framework for Visualizing Re-Written Queries to Database
US20160034530A1 (en) * 2014-07-29 2016-02-04 Metanautix, Inc. Systems and methods for a query optimization engine

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
Stackoverflow (a computer programmers' discussion forum), article "Converting Directed Acyclic Graph(DAG) to tree". Published date 06/18/2011. *
Wikipedia (an online knowledgebase), article "Query Optimization" *
Wikipedia (an online knowledgebase), article "Query Optimization". *

Cited By (27)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US11106666B2 (en) * 2015-05-28 2021-08-31 Sap Se Integrated execution of relational and non-relational calculation models by a database system
US20160350368A1 (en) * 2015-05-28 2016-12-01 Sap Se Integrated Execution of Relational And Non-Relational Calculation Models by a Database System
US10169410B2 (en) * 2015-11-18 2019-01-01 Sap Se Merge of stacked calculation views with higher level programming language logic
US10565200B2 (en) * 2015-11-23 2020-02-18 Sap Se Conversion of model views into relational models
US20170147646A1 (en) * 2015-11-23 2017-05-25 Sap Se Conversion of Model Views Into Relational Models
US11681702B2 (en) 2015-11-23 2023-06-20 Sap Se Conversion of model views into relational models
US20170323001A1 (en) * 2016-05-09 2017-11-09 Sap Se Integration of Relational Calculation Views into a Relational Engine
US11829360B2 (en) 2016-05-09 2023-11-28 Sap Se Database workload capture and replay
US10552413B2 (en) 2016-05-09 2020-02-04 Sap Se Database workload capture and replay
US11294897B2 (en) 2016-05-09 2022-04-05 Sap Se Database workload capture and replay
US10831784B2 (en) * 2016-05-09 2020-11-10 Sap Se Integration of relational calculation views into a relational engine
US10554771B2 (en) 2016-07-05 2020-02-04 Sap Se Parallelized replay of captured database workload
US10380084B2 (en) * 2017-01-26 2019-08-13 Sap Se Data model view with complex calculation capability
US10592528B2 (en) 2017-02-27 2020-03-17 Sap Se Workload capture and replay for replicated database systems
US11914572B2 (en) 2017-05-08 2024-02-27 Sap Se Adaptive query routing in a replicated database environment
US11573947B2 (en) 2017-05-08 2023-02-07 Sap Se Adaptive query routing in a replicated database environment
US11055352B1 (en) * 2017-06-08 2021-07-06 Amazon Technologies, Inc. Engine independent query plan optimization
US11468062B2 (en) 2018-04-10 2022-10-11 Sap Se Order-independent multi-record hash generation and data filtering
US10698892B2 (en) 2018-04-10 2020-06-30 Sap Se Order-independent multi-record hash generation and data filtering
CN110895529A (en) * 2018-08-23 2020-03-20 马上消费金融股份有限公司 Processing method of structured query language and related device
CN109446255A (en) * 2018-09-30 2019-03-08 珠海沙盒网络科技有限公司 A kind of storage method and system that can be adaptive
US20220292096A1 (en) * 2019-07-17 2022-09-15 Zte Corporation Distributed database preprocessing method, agent layer, system and storage medium
US11847116B2 (en) * 2019-07-17 2023-12-19 Xi'an Zhongxing New Software Co., Ltd. Distributed database preprocessing method, agent layer, system and storage medium
CN110647549A (en) * 2019-09-29 2020-01-03 北京卓信智恒数据科技股份有限公司 Data index analyzing and executing method and device based on business dynamic modeling
US11580102B2 (en) * 2020-04-02 2023-02-14 Ocient Holdings LLC Implementing linear algebra functions via decentralized execution of query operator flows
US11709752B2 (en) 2020-04-02 2023-07-25 Sap Se Pause and resume in database system workload capture and replay
US11615012B2 (en) 2020-04-03 2023-03-28 Sap Se Preprocessing in database system workload capture and replay

Also Published As

Publication number Publication date
US9846724B2 (en) 2017-12-19

Similar Documents

Publication Publication Date Title
US9846724B2 (en) Integration of calculation models into SQL layer
US10628418B2 (en) Data driven multi-provider pruning for query execution plan
US11036735B2 (en) Dimension context propagation techniques for optimizing SQL query plans
US9619514B2 (en) Integration of optimization and execution of relational calculation models into SQL layer
US9229978B2 (en) Rule-based extendable query optimizer
US9767151B2 (en) Optimizing database queries having hierarchy filters
US9146979B2 (en) Optimization of business warehouse queries by calculation engines
US10303726B2 (en) Decoupling filter injection and evaluation by forced pushdown of filter attributes in calculation models
US10324930B2 (en) Database calculation engine with nested multiprovider merging
US20130290292A1 (en) Augmented Query Optimization by Data Flow Graph Model Optimizer
US9613094B2 (en) Constant mapping optimization in a database
US9213739B2 (en) Consistent aggregation in a database
US10198475B2 (en) Database calculation engine having forced filter pushdowns with dynamic joins
US11106666B2 (en) Integrated execution of relational and non-relational calculation models by a database system
US10831784B2 (en) Integration of relational calculation views into a relational engine
US9116953B2 (en) Calculation engine with dynamic partitioning of intermediate results
US10067980B2 (en) Database calculation engine integrating hierarchy views
US10521431B2 (en) Relational conversion of multiprovider operations in a calculation scenario for executing a query
US9116960B2 (en) Calculation engine with optimized multi-part querying
US9037570B2 (en) Optimization of business warehouse filters on complex calculation models
US10713244B2 (en) Calculation engine optimizations for join operations utilizing automatic detection of forced constraints
US10324927B2 (en) Data-driven union pruning in a database semantic layer
US11893026B2 (en) Advanced multiprovider optimization
US20180137011A1 (en) Partition aware partial query processing
US20170139988A1 (en) Merge of stacked calculation views with higher level programming language logic

Legal Events

Date Code Title Description
AS Assignment

Owner name: SAP SE, GERMANY

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:WEYERHAEUSER, CHRISTOPH;MINDNICH, TOBIAS;MERX, JOHANNES;AND OTHERS;SIGNING DATES FROM 20141107 TO 20141113;REEL/FRAME:036308/0727

STCF Information on status: patent grant

Free format text: PATENTED CASE

MAFP Maintenance fee payment

Free format text: PAYMENT OF MAINTENANCE FEE, 4TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1551); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Year of fee payment: 4