Exago Logo
Search
Generic filters
Exact matches only

Special Cartesian Processing

Part of the Performance and Scaling series.

Exago BI can detect when a report query will return a Cartesian product or cross join and process the query in such a way to avoid returning a nonsensical table. This can considerably improve the end-user experience, but it can negatively impact execution performance.

Special Cartesian Processing, enabled by default for all reports, looks at the join configuration to see whether a report contains multiple one-to-many join relationships.

Assuming that the “many” side of these relationships have no direct join to each other, a Cartesian product will be formed when executing this query. This results in a table where every field in the first object is joined to every field in the second object, causing many duplicate entries.

With Cartesian processing turned on, each joined pair is executed as a separate query, then the resulting tables are joined in the application according to the key fields for the “one” side of the joins.

Example

Take the following object relationships as an example. Let’s say we have a report with the following three data objects:

  • Cities
  • Avenues (by city)
  • Boulevards (by city)

We potentially have the following joins:

  1. (one) Cities >> Avenues (many)
  2. (one) Cities >> Boulevards (many)

There is no given relationship between Avenues and Boulevards. When we execute this query without Special Cartesian Processing, the dataset returned is a Cartesian product:

City Avenue Boulevard
Los Angeles Melrose Ave Hollywood Blvd
Los Angeles Melrose Ave Sunset Blvd
Los Angeles Melrose Ave Colorado Blvd
Los Angeles La Brea Ave Hollywood Blvd
Los Angeles La Brea Ave Sunset Blvd
Los Angeles La Brea Ave Colorado Blvd

With Special Cartesian Processing, the resulting dataset is:

City Avenue Boulevard
Los Angeles Melrose Ave Hollywood Blvd
Los Angeles La Brea Ave Sunset Blvd
Los Angeles   Colorado Blvd

As long as we remember that there is no implied relationship between Avenue and Boulevard, we will get a much more readable table. The downside is that this will take longer to execute than the Cartesian product, especially for large data sets.

Enabling Special Cartesian Processing

By default, Special Cartesian Processing is on for all reports that have multiple one-to-many joins. To turn it off by default, set Admin Console > General > Database Settings  > Enable Special Cartesian Processing to False. Note, this does not make the feature unavailable at the report-level.

To enable or disable Cartesian processing for a specific report, click Report Options > Advanced > Joins to open the Joins window, then select True or False from the Enable Special Cartesian Processing dropdown.

Note

The Enable Special Cartesian Processing dropdown is only available when a report has multiple one-to-many joins. It is hidden otherwise.

xBOUeaCuxl.png
Was this article helpful?
5 out of 5 stars
5 Stars 100%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
How can we improve this article?
Please submit the reason for your vote so that we can improve the article.
Table of Contents