Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

COSMOS CMDBf Query Processing Approach

Revision as of 14:34, 5 June 2008 by Hkyleung.ca.ibm.com (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

In order to provide a common framework or design pattern to solve the problem of interpreting CMDBf queries, we need to formalize the approach in interpreting the queries.

  1. Each CMDBf query consists of one or more connected graphs, called query graphs.
  2. Each query graph will result in a "logical query".
  3. The number of logical queries equals to the number of disjoint graphs in the CMDBf query.
  4. Form heuristics of mappings between each logical query (in CMDBf query syntax) and the native query language. The mapping needs to be a two-way mapping. Hence some features of the either query language may not be utilized. If the logical query is expressed in a way that's outside the capability of the native query, several simpler native queries will result, and extra processing is required by the MDR to process what the backend application cannot handle. The MDR can also decide to simply reject the query without processing.
  5. The result sets of the native queries are combined using the UNION operation, and returned to the query client in the CMDBf query response format.

There are several classes of query languages.

  1. SQL (relational database)
  2. XPath (path queries / hierarchical data)
  3. calling an application API - the complexity of the query is hidden by a program interface

The mapping of query responses to CMDBf query response

  1. JDBC result set (or SQL result in general)
  2. XML



http://wiki.eclipse.org/COSMOS_CMDBf_Query_to_SQL_Mapping


Q) Does this impact the CMDBf toolkit that david has been working on?

Back to the top