SlideShare a Scribd company logo
San Francisco
2014-04-03
!
@julianhyde
What’s new
in Mondrian 4?
San Francisco
2014-04-03
!
@julianhyde
What’s new
in Mondrian 4?
April 3rd, 2014
@julianhyde
What’s new in
Mondrian 4?
Mondrian 4 – What's new?
• Attributes & dimensions
• Physical schema
• Measure groups & aggregate tables
• Internals
• Delivery
• Futures
4
Richer schema
5
Richer semantic model
Features
!
Attributes and Measures
Dimensions as buckets of attributes
Hierarchies to make navigation easier
Physical schema:
• Only define tables, columns,
relationships once
• Composite keys
Measure groups representing fact and
aggregate tables
Goals
!
Easier schema evolution
More flexible for user
• “Attribute-oriented
analysis”
Wider range of schemas
Non-SQL databases
6
Attributes
Mondrian 3: Dimension, Hierarchy, Level
Mondrian 4: Dimension, Attribute
!
Dimension: Customer
Attributes: Nation, Gender, Zipcode, State, City,
Age, Name
Hierarchy: Customers {Nation, State, City,
Name}
Attribute hierarchies: Nation, Gender, Zipcode,
State, City, Age, Name (created automatically)
7
Hierarchies
Hierarchies are much less important in Mondrian
4 than Mondrian 3.
Build dimensions and attributes first, hierarchies
& levels later.
Hierarchies optimize the user experience —
double-click to drill
8
Defining an attribute
<Attribute> attributes:
• Key column (or columns if composite)
• Name (default key)
• Caption (default name)
• Order column (default name)
• Properties
All of this stuff was in <Level> in Mondrian-3.
Attribute key must be unique:
• [Customer].[City].&[San Francisco]&[CA]
• [Time].[Month].&[4]&[2014]
9
Physical schema
• Define joins, data types, SQL expressions only
once
• Portability across different kinds of database
(including non-SQL), and multiple databases


<PhysicalSchema>

<Table name='product' keyColumn='product_id'/>

<Table name=‘product_class’ keyColumn=‘product_class_id’/>

<Link target='product' source='product_class'>

<ForeignKey>

<Column name='product_class_id'/>

</ForeignKey>

</Link>
10
Calculated columns
• <Column/> element allows Mondrian to use correct
table alias
<PhysicalSchema>

<Table name='customer'>

<Key>

<Column name='customer_id'/>

</Key>

<ColumnDefs>

<CalculatedColumnDef name='full_name' type='String'>

<ExpressionView>

<SQL dialect='oracle'>

<Column name='fname'/> || ' ' || <Column name='lname'/>

</SQL>

<SQL dialect='access'>

<Column name='fname'/> + ' ' + <Column name='lname'/>

</SQL>
11
Localization
<Cube name='Sales' defaultMeasure='Unit Sales'>

<Annotations>

<Annotation name='caption.de_DE'>Verkaufen</Annotation>

<Annotation name='caption.fr_FR'>Ventes</Annotation>

<Annotation name='caption+fr_FR'>Ventes</Annotation>

<Annotation name='description.fr_FR'>Cube des ventes</Annotation>

<Annotation name='description.de'>Cube Verkaufen</Annotation>

<Annotation name='description.de_AT'>Cube den Verkaufen</Annotation>

</Annotations>
Measure groups
In Mondrian 3.x, if you want a cube with multiple
fact tables, you build a virtual cube:
!
<Cube name=“Sales”>

<Table name=“sales_fact”/>

</Cube>



<Cube name=“Warehouse”>

<Table name=“warehouse_fact”/>

</Cube>



<VirtualCube name=“Warehouse and Sales”>

<Cube name=“Sales”/>

<Cube name=“Warehouse”/>

</VirtualCube>
• In Mondrian 4, cubes can
contain multiple
measure groups
• Virtual cubes are obsolete
• Many-to-many association
between measure
groups and dimensions
• Different ways to link
dimensions to fact
tables
• Aggregate tables are
measure groups
Measure groups (2)


<Cube name=“Warehouse and Sales”>

<MeasureGroups>

<MeasureGroup name=“Sales”>

<Table name=“sales_fact”/>

<Measure name=“unit_sales”/>

</MeasureGroup>

<MeasureGroup name=“Warehouse”>

<Table name=“warehouse_fact”/>

<Measure name=“inventory_units”/>

</MeasureGroup>

</MeasureGroups>

</Cube>
Sales Warehouse
Time X X
Product X X
Customer X
Warehouse X
14
Fact tables
15
Simple aggregate table
16
More complex aggregate table
17
Hybrid fact/aggregate tables
Measure groups (fact tables):
• Have varying dimensionality, granularity;
• Reference dimension tables;
• Store un-aggregated measures.
Aggregate tables:
• Have various dimensionality, granularity;
• Sometimes reference dimension tables;
• Store aggregated measures.
!
Let’s store measures in aggregate tables!
Better… let’s make aggregate tables and measure groups
the same thing.
18
Delivering Mondrian 4
20
Gone Replacement
Mondrian 3 schema Mondrian 4 schema
upgrader
Aggregate recognizer Aggregate table API
(define, enable, disable)
Schema workbench Pentaho modeler (?)
XMLA server olap4j-xmlaserver (github)
Hierarchy syntax
● [Time.Weekly].[Day]
● [Time].[Month]
SSAS-style syntax
● [Time].[Weekly].[Day]
● [Time].[Time].[Month]
JPivot no longer in distro Get your own UI: Analyzer,
Saiku, Pivot4J
21
Done Remaining
The important things
work!
Ragged hierarchies
Schema converter Aggregate table API
3,224 of 3,277 tests
pass
Pentaho modeler
Analyzer, Saiku, Pivot4J
integration
Complex schema
mappings
BA server compliance
testing
Beta
1. Binaries at http://repo.pentaho.org/artifactory/repo under
pentaho:mondrian:4.0.0
2. Run Mondrian-4 on your current schema
● Auto-upgrade
● Schema converter tool TBA
● MDX syntax differences
mondrian.olap.SsasCompatibleNaming=true
3. Write a new-style schema
4. Log bugs http://jira.pentaho.com/browse/MONDRIAN or send a
pull request: https://github.com/pentaho/mondrian/tree/lagunitas
5. Getting started: http://mondrian.pentaho.com/documentation/
developers_guide.php
6. Running Mondrian as an XMLA service: https://github.com/
ThoughtWorksInc/mondrian-xmla-spike
23
Mondrian 4 in Pentaho BA server
• Mondrian 4 is an OSGI compatible module. It can be used
alongside Mondrian 3.
• Both versions of Mondrian are available.
• Create olap4j connections to either one:
“jdbc:mondrian:Catalog=…” or
“jdbc:mondrian4:Catalog=…”
• Behind the scenes, we inject our OSGI driver into the top-
level class loader and we register with the
java.sql.DriverManager
• Caveat: All classpath resources must also be OSGI
compatible and bundled as modules. (No loose files in
WEB-INF/classes.)
• Third party plugins: Most of the more popular analysis UIs of
the Pentaho ecosystem already support Mondrian 4.
Future features
Connections
● Defined in schema
● Multiple connections
● Non-SQL databases
!
Advanced SQL generation
Multiple connections in schema


<Schema name='FoodMart'>

<Connections>

<Connection name='default' default='true' uuid='abcd-1234'>

<Jdbc>jdbc:mysql://localhost/foodmart</Jdbc>

<JdbcUser>foodmart</JdbcUser>

<JdbcPassword>foodmart</JdbcPassword>

</Connection>

<Connection name='aggs' default='false' uuid='abcd-2345'>

<Jdbc>jdbc:mysql://localhost/foodmartAggs</Jdbc>

<JdbcUser>foodmartAggs</JdbcUser>

<Properties>

<Property name='prop1'>value1</Property>

<Property name='prop2'>value2</Property>

</Properties>

</Connection>

</Connections>!
● Cannot join tables from different connections
● Also: non-JDBC connection (via SPI or Optiq)
Advanced SQL generation
● Access control
● Killing big IN lists
● Push down aggregates (esp. time ranges)
● Evaluate as much as possible of the MDX query
in SQL
● Pivot & decompose
● MDX query planning
● Cache segments as in-memory tables
Summary
Mondrian 4 – A major improvement to Mondrian
model & engine
!
As compatible as possible
!
Will enable further improvements in performance
/ flexibility in upcoming releases
Questions?
@julianhyde
http://julianhyde.blogspot.com
http://github.com/julianhyde
http://community.pentaho.com/projects/mondrian/
San Francisco
2014-04-03
!
@julianhyde
What’s new
in Mondrian 4?

More Related Content

What's hot

DeNAの分析を支える分析基盤
DeNAの分析を支える分析基盤DeNAの分析を支える分析基盤
DeNAの分析を支える分析基盤
Kenshin Yamada
 
Eric Seufert - GDC San Francisco 2016 Presentation - Taking Flight Again: The...
Eric Seufert - GDC San Francisco 2016 Presentation - Taking Flight Again: The...Eric Seufert - GDC San Francisco 2016 Presentation - Taking Flight Again: The...
Eric Seufert - GDC San Francisco 2016 Presentation - Taking Flight Again: The...
Eric Seufert
 
The Top 10 Tech Trends In 2022 Everyone Must Be Ready For Now
The Top 10 Tech Trends In 2022 Everyone Must Be Ready For NowThe Top 10 Tech Trends In 2022 Everyone Must Be Ready For Now
The Top 10 Tech Trends In 2022 Everyone Must Be Ready For Now
Bernard Marr
 
Start Fund Q3 2009
Start Fund Q3 2009Start Fund Q3 2009
Start Fund Q3 2009
Elliott Dahan
 
レコメンドバッチ高速化に向けたSpark/MapReduceの機械学習ライブラリ比較検証
レコメンドバッチ高速化に向けたSpark/MapReduceの機械学習ライブラリ比較検証レコメンドバッチ高速化に向けたSpark/MapReduceの機械学習ライブラリ比較検証
レコメンドバッチ高速化に向けたSpark/MapReduceの機械学習ライブラリ比較検証
Recruit Technologies
 
New Trends of a Metaverse in 2022 | Technology Trends
New Trends of a Metaverse in 2022 | Technology TrendsNew Trends of a Metaverse in 2022 | Technology Trends
New Trends of a Metaverse in 2022 | Technology Trends
Insights success media and technology pvt ltd
 
Pitch deck lets works 2022 final
Pitch deck lets works 2022  final  Pitch deck lets works 2022  final
Pitch deck lets works 2022 final
AmitChauhan707161
 

What's hot (7)

DeNAの分析を支える分析基盤
DeNAの分析を支える分析基盤DeNAの分析を支える分析基盤
DeNAの分析を支える分析基盤
 
Eric Seufert - GDC San Francisco 2016 Presentation - Taking Flight Again: The...
Eric Seufert - GDC San Francisco 2016 Presentation - Taking Flight Again: The...Eric Seufert - GDC San Francisco 2016 Presentation - Taking Flight Again: The...
Eric Seufert - GDC San Francisco 2016 Presentation - Taking Flight Again: The...
 
The Top 10 Tech Trends In 2022 Everyone Must Be Ready For Now
The Top 10 Tech Trends In 2022 Everyone Must Be Ready For NowThe Top 10 Tech Trends In 2022 Everyone Must Be Ready For Now
The Top 10 Tech Trends In 2022 Everyone Must Be Ready For Now
 
Start Fund Q3 2009
Start Fund Q3 2009Start Fund Q3 2009
Start Fund Q3 2009
 
レコメンドバッチ高速化に向けたSpark/MapReduceの機械学習ライブラリ比較検証
レコメンドバッチ高速化に向けたSpark/MapReduceの機械学習ライブラリ比較検証レコメンドバッチ高速化に向けたSpark/MapReduceの機械学習ライブラリ比較検証
レコメンドバッチ高速化に向けたSpark/MapReduceの機械学習ライブラリ比較検証
 
New Trends of a Metaverse in 2022 | Technology Trends
New Trends of a Metaverse in 2022 | Technology TrendsNew Trends of a Metaverse in 2022 | Technology Trends
New Trends of a Metaverse in 2022 | Technology Trends
 
Pitch deck lets works 2022 final
Pitch deck lets works 2022  final  Pitch deck lets works 2022  final
Pitch deck lets works 2022 final
 

Viewers also liked

Streaming SQL (at FlinkForward, Berlin, 2016/09/12)
Streaming SQL (at FlinkForward, Berlin, 2016/09/12)Streaming SQL (at FlinkForward, Berlin, 2016/09/12)
Streaming SQL (at FlinkForward, Berlin, 2016/09/12)
Julian Hyde
 
Cost-based Query Optimization in Apache Phoenix using Apache Calcite
Cost-based Query Optimization in Apache Phoenix using Apache CalciteCost-based Query Optimization in Apache Phoenix using Apache Calcite
Cost-based Query Optimization in Apache Phoenix using Apache Calcite
Julian Hyde
 
Mondrian applying dynamic security - Pentaho
Mondrian applying  dynamic security - PentahoMondrian applying  dynamic security - Pentaho
Mondrian applying dynamic security - Pentaho
David Fombella Pombal
 
Streaming SQL
Streaming SQLStreaming SQL
Streaming SQL
Julian Hyde
 
Discardable In-Memory Materialized Queries With Hadoop
Discardable In-Memory Materialized Queries With HadoopDiscardable In-Memory Materialized Queries With Hadoop
Discardable In-Memory Materialized Queries With Hadoop
Julian Hyde
 
The twins that everyone loved too much
The twins that everyone loved too muchThe twins that everyone loved too much
The twins that everyone loved too much
Julian Hyde
 
Optiq: A dynamic data management framework
Optiq: A dynamic data management frameworkOptiq: A dynamic data management framework
Optiq: A dynamic data management framework
Julian Hyde
 
Why you care about
 relational algebra (even though you didn’t know it)
Why you care about
 relational algebra (even though you didn’t know it)Why you care about
 relational algebra (even though you didn’t know it)
Why you care about
 relational algebra (even though you didn’t know it)
Julian Hyde
 
Cost-based query optimization in Apache Hive 0.14
Cost-based query optimization in Apache Hive 0.14Cost-based query optimization in Apache Hive 0.14
Cost-based query optimization in Apache Hive 0.14
Julian Hyde
 
Planning with Polyalgebra: Bringing Together Relational, Complex and Machine ...
Planning with Polyalgebra: Bringing Together Relational, Complex and Machine ...Planning with Polyalgebra: Bringing Together Relational, Complex and Machine ...
Planning with Polyalgebra: Bringing Together Relational, Complex and Machine ...
Julian Hyde
 
Cost-based query optimization in Apache Hive 0.14
Cost-based query optimization in Apache Hive 0.14Cost-based query optimization in Apache Hive 0.14
Cost-based query optimization in Apache Hive 0.14
Julian Hyde
 
Querying the Internet of Things: Streaming SQL on Kafka/Samza and Storm/Trident
 Querying the Internet of Things: Streaming SQL on Kafka/Samza and Storm/Trident Querying the Internet of Things: Streaming SQL on Kafka/Samza and Storm/Trident
Querying the Internet of Things: Streaming SQL on Kafka/Samza and Storm/Trident
Julian Hyde
 
SQL on everything, in memory
SQL on everything, in memorySQL on everything, in memory
SQL on everything, in memory
Julian Hyde
 
Apache Calcite: One planner fits all
Apache Calcite: One planner fits allApache Calcite: One planner fits all
Apache Calcite: One planner fits all
Julian Hyde
 
Streaming SQL
Streaming SQLStreaming SQL
Streaming SQL
Julian Hyde
 
Streaming SQL
Streaming SQLStreaming SQL
Streaming SQL
Julian Hyde
 
Streaming SQL with Apache Calcite
Streaming SQL with Apache CalciteStreaming SQL with Apache Calcite
Streaming SQL with Apache Calcite
Julian Hyde
 
Apache Calcite overview
Apache Calcite overviewApache Calcite overview
Apache Calcite overview
Julian Hyde
 
Cost-based query optimization in Apache Hive
Cost-based query optimization in Apache HiveCost-based query optimization in Apache Hive
Cost-based query optimization in Apache Hive
Julian Hyde
 
Streaming SQL
Streaming SQLStreaming SQL
Streaming SQL
Julian Hyde
 

Viewers also liked (20)

Streaming SQL (at FlinkForward, Berlin, 2016/09/12)
Streaming SQL (at FlinkForward, Berlin, 2016/09/12)Streaming SQL (at FlinkForward, Berlin, 2016/09/12)
Streaming SQL (at FlinkForward, Berlin, 2016/09/12)
 
Cost-based Query Optimization in Apache Phoenix using Apache Calcite
Cost-based Query Optimization in Apache Phoenix using Apache CalciteCost-based Query Optimization in Apache Phoenix using Apache Calcite
Cost-based Query Optimization in Apache Phoenix using Apache Calcite
 
Mondrian applying dynamic security - Pentaho
Mondrian applying  dynamic security - PentahoMondrian applying  dynamic security - Pentaho
Mondrian applying dynamic security - Pentaho
 
Streaming SQL
Streaming SQLStreaming SQL
Streaming SQL
 
Discardable In-Memory Materialized Queries With Hadoop
Discardable In-Memory Materialized Queries With HadoopDiscardable In-Memory Materialized Queries With Hadoop
Discardable In-Memory Materialized Queries With Hadoop
 
The twins that everyone loved too much
The twins that everyone loved too muchThe twins that everyone loved too much
The twins that everyone loved too much
 
Optiq: A dynamic data management framework
Optiq: A dynamic data management frameworkOptiq: A dynamic data management framework
Optiq: A dynamic data management framework
 
Why you care about
 relational algebra (even though you didn’t know it)
Why you care about
 relational algebra (even though you didn’t know it)Why you care about
 relational algebra (even though you didn’t know it)
Why you care about
 relational algebra (even though you didn’t know it)
 
Cost-based query optimization in Apache Hive 0.14
Cost-based query optimization in Apache Hive 0.14Cost-based query optimization in Apache Hive 0.14
Cost-based query optimization in Apache Hive 0.14
 
Planning with Polyalgebra: Bringing Together Relational, Complex and Machine ...
Planning with Polyalgebra: Bringing Together Relational, Complex and Machine ...Planning with Polyalgebra: Bringing Together Relational, Complex and Machine ...
Planning with Polyalgebra: Bringing Together Relational, Complex and Machine ...
 
Cost-based query optimization in Apache Hive 0.14
Cost-based query optimization in Apache Hive 0.14Cost-based query optimization in Apache Hive 0.14
Cost-based query optimization in Apache Hive 0.14
 
Querying the Internet of Things: Streaming SQL on Kafka/Samza and Storm/Trident
 Querying the Internet of Things: Streaming SQL on Kafka/Samza and Storm/Trident Querying the Internet of Things: Streaming SQL on Kafka/Samza and Storm/Trident
Querying the Internet of Things: Streaming SQL on Kafka/Samza and Storm/Trident
 
SQL on everything, in memory
SQL on everything, in memorySQL on everything, in memory
SQL on everything, in memory
 
Apache Calcite: One planner fits all
Apache Calcite: One planner fits allApache Calcite: One planner fits all
Apache Calcite: One planner fits all
 
Streaming SQL
Streaming SQLStreaming SQL
Streaming SQL
 
Streaming SQL
Streaming SQLStreaming SQL
Streaming SQL
 
Streaming SQL with Apache Calcite
Streaming SQL with Apache CalciteStreaming SQL with Apache Calcite
Streaming SQL with Apache Calcite
 
Apache Calcite overview
Apache Calcite overviewApache Calcite overview
Apache Calcite overview
 
Cost-based query optimization in Apache Hive
Cost-based query optimization in Apache HiveCost-based query optimization in Apache Hive
Cost-based query optimization in Apache Hive
 
Streaming SQL
Streaming SQLStreaming SQL
Streaming SQL
 

Similar to What's new in Mondrian 4?

Mondrian update (Pentaho community meetup 2012, Amsterdam)
Mondrian update (Pentaho community meetup 2012, Amsterdam)Mondrian update (Pentaho community meetup 2012, Amsterdam)
Mondrian update (Pentaho community meetup 2012, Amsterdam)
Julian Hyde
 
Retail referencearchitecture productcatalog
Retail referencearchitecture productcatalogRetail referencearchitecture productcatalog
Retail referencearchitecture productcatalog
MongoDB
 
Unify Your Selling Channels in One Product Catalog Service
Unify Your Selling Channels in One Product Catalog ServiceUnify Your Selling Channels in One Product Catalog Service
Unify Your Selling Channels in One Product Catalog Service
MongoDB
 
SQL To NoSQL - Top 6 Questions Before Making The Move
SQL To NoSQL - Top 6 Questions Before Making The MoveSQL To NoSQL - Top 6 Questions Before Making The Move
SQL To NoSQL - Top 6 Questions Before Making The Move
IBM Cloud Data Services
 
Building rednoseday.com on Drupal 8
Building rednoseday.com on Drupal 8Building rednoseday.com on Drupal 8
Building rednoseday.com on Drupal 8
Peter Vanhee
 
Prepare for Peak Holiday Season with MongoDB
Prepare for Peak Holiday Season with MongoDBPrepare for Peak Holiday Season with MongoDB
Prepare for Peak Holiday Season with MongoDB
MongoDB
 
Customer Webinar: Scaling and Optimizing a Large e-Commerce Drupal Solution
Customer Webinar: Scaling and Optimizing a Large e-Commerce Drupal SolutionCustomer Webinar: Scaling and Optimizing a Large e-Commerce Drupal Solution
Customer Webinar: Scaling and Optimizing a Large e-Commerce Drupal Solution
SearchStax
 
SAP BOBI 4.1 with SAP HANA 1.0 SP7 Online Training - By Eliaz
SAP BOBI 4.1 with SAP HANA 1.0 SP7 Online Training - By EliazSAP BOBI 4.1 with SAP HANA 1.0 SP7 Online Training - By Eliaz
SAP BOBI 4.1 with SAP HANA 1.0 SP7 Online Training - By Eliaz
elearnsap
 
SAP Business Objects - Lopes Supermarket
SAP   Business Objects - Lopes SupermarketSAP   Business Objects - Lopes Supermarket
SAP Business Objects - Lopes Supermarket
Douglas Bernardini
 
Budapest Data Forum 2017 - BigQuery, Looker And Big Data Analytics At Petabyt...
Budapest Data Forum 2017 - BigQuery, Looker And Big Data Analytics At Petabyt...Budapest Data Forum 2017 - BigQuery, Looker And Big Data Analytics At Petabyt...
Budapest Data Forum 2017 - BigQuery, Looker And Big Data Analytics At Petabyt...
Rittman Analytics
 
Cassandra's Sweet Spot - an introduction to Apache Cassandra
Cassandra's Sweet Spot - an introduction to Apache CassandraCassandra's Sweet Spot - an introduction to Apache Cassandra
Cassandra's Sweet Spot - an introduction to Apache Cassandra
Dave Gardner
 
Ember vs Backbone
Ember vs BackboneEmber vs Backbone
Ember vs Backbone
Abdriy Mosin
 
Grails patterns and practices
Grails patterns and practicesGrails patterns and practices
Grails patterns and practices
paulbowler
 
Salesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - ExplainedSalesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - Explained
Carl Brundage
 
Building Responsive Applications Using XPages
Building Responsive Applications Using XPagesBuilding Responsive Applications Using XPages
Building Responsive Applications Using XPages
Teamstudio
 
Using MyBatis in Alfresco custom extensions - Alfresco Devcon 2012 - Berlin
Using MyBatis in Alfresco custom extensions - Alfresco Devcon 2012 - BerlinUsing MyBatis in Alfresco custom extensions - Alfresco Devcon 2012 - Berlin
Using MyBatis in Alfresco custom extensions - Alfresco Devcon 2012 - BerlinSébastien Le Marchand
 
Where to save my data, for devs!
Where to save my data, for devs!Where to save my data, for devs!
Where to save my data, for devs!
SharePoint Saturday New Jersey
 
Application architecture jumpstart
Application architecture jumpstartApplication architecture jumpstart
Application architecture jumpstart
Clint Edmonson
 
Solr and ElasticSearch demo and speaker feb 2014
Solr  and ElasticSearch demo and speaker feb 2014Solr  and ElasticSearch demo and speaker feb 2014
Solr and ElasticSearch demo and speaker feb 2014
nkabra
 
How city of chicago boosts their sap business objects environment prepares fo...
How city of chicago boosts their sap business objects environment prepares fo...How city of chicago boosts their sap business objects environment prepares fo...
How city of chicago boosts their sap business objects environment prepares fo...
Sebastien Goiffon
 

Similar to What's new in Mondrian 4? (20)

Mondrian update (Pentaho community meetup 2012, Amsterdam)
Mondrian update (Pentaho community meetup 2012, Amsterdam)Mondrian update (Pentaho community meetup 2012, Amsterdam)
Mondrian update (Pentaho community meetup 2012, Amsterdam)
 
Retail referencearchitecture productcatalog
Retail referencearchitecture productcatalogRetail referencearchitecture productcatalog
Retail referencearchitecture productcatalog
 
Unify Your Selling Channels in One Product Catalog Service
Unify Your Selling Channels in One Product Catalog ServiceUnify Your Selling Channels in One Product Catalog Service
Unify Your Selling Channels in One Product Catalog Service
 
SQL To NoSQL - Top 6 Questions Before Making The Move
SQL To NoSQL - Top 6 Questions Before Making The MoveSQL To NoSQL - Top 6 Questions Before Making The Move
SQL To NoSQL - Top 6 Questions Before Making The Move
 
Building rednoseday.com on Drupal 8
Building rednoseday.com on Drupal 8Building rednoseday.com on Drupal 8
Building rednoseday.com on Drupal 8
 
Prepare for Peak Holiday Season with MongoDB
Prepare for Peak Holiday Season with MongoDBPrepare for Peak Holiday Season with MongoDB
Prepare for Peak Holiday Season with MongoDB
 
Customer Webinar: Scaling and Optimizing a Large e-Commerce Drupal Solution
Customer Webinar: Scaling and Optimizing a Large e-Commerce Drupal SolutionCustomer Webinar: Scaling and Optimizing a Large e-Commerce Drupal Solution
Customer Webinar: Scaling and Optimizing a Large e-Commerce Drupal Solution
 
SAP BOBI 4.1 with SAP HANA 1.0 SP7 Online Training - By Eliaz
SAP BOBI 4.1 with SAP HANA 1.0 SP7 Online Training - By EliazSAP BOBI 4.1 with SAP HANA 1.0 SP7 Online Training - By Eliaz
SAP BOBI 4.1 with SAP HANA 1.0 SP7 Online Training - By Eliaz
 
SAP Business Objects - Lopes Supermarket
SAP   Business Objects - Lopes SupermarketSAP   Business Objects - Lopes Supermarket
SAP Business Objects - Lopes Supermarket
 
Budapest Data Forum 2017 - BigQuery, Looker And Big Data Analytics At Petabyt...
Budapest Data Forum 2017 - BigQuery, Looker And Big Data Analytics At Petabyt...Budapest Data Forum 2017 - BigQuery, Looker And Big Data Analytics At Petabyt...
Budapest Data Forum 2017 - BigQuery, Looker And Big Data Analytics At Petabyt...
 
Cassandra's Sweet Spot - an introduction to Apache Cassandra
Cassandra's Sweet Spot - an introduction to Apache CassandraCassandra's Sweet Spot - an introduction to Apache Cassandra
Cassandra's Sweet Spot - an introduction to Apache Cassandra
 
Ember vs Backbone
Ember vs BackboneEmber vs Backbone
Ember vs Backbone
 
Grails patterns and practices
Grails patterns and practicesGrails patterns and practices
Grails patterns and practices
 
Salesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - ExplainedSalesforce Analytics Cloud - Explained
Salesforce Analytics Cloud - Explained
 
Building Responsive Applications Using XPages
Building Responsive Applications Using XPagesBuilding Responsive Applications Using XPages
Building Responsive Applications Using XPages
 
Using MyBatis in Alfresco custom extensions - Alfresco Devcon 2012 - Berlin
Using MyBatis in Alfresco custom extensions - Alfresco Devcon 2012 - BerlinUsing MyBatis in Alfresco custom extensions - Alfresco Devcon 2012 - Berlin
Using MyBatis in Alfresco custom extensions - Alfresco Devcon 2012 - Berlin
 
Where to save my data, for devs!
Where to save my data, for devs!Where to save my data, for devs!
Where to save my data, for devs!
 
Application architecture jumpstart
Application architecture jumpstartApplication architecture jumpstart
Application architecture jumpstart
 
Solr and ElasticSearch demo and speaker feb 2014
Solr  and ElasticSearch demo and speaker feb 2014Solr  and ElasticSearch demo and speaker feb 2014
Solr and ElasticSearch demo and speaker feb 2014
 
How city of chicago boosts their sap business objects environment prepares fo...
How city of chicago boosts their sap business objects environment prepares fo...How city of chicago boosts their sap business objects environment prepares fo...
How city of chicago boosts their sap business objects environment prepares fo...
 

More from Julian Hyde

Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)
Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)
Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)
Julian Hyde
 
Building a semantic/metrics layer using Calcite
Building a semantic/metrics layer using CalciteBuilding a semantic/metrics layer using Calcite
Building a semantic/metrics layer using Calcite
Julian Hyde
 
Cubing and Metrics in SQL, oh my!
Cubing and Metrics in SQL, oh my!Cubing and Metrics in SQL, oh my!
Cubing and Metrics in SQL, oh my!
Julian Hyde
 
Adding measures to Calcite SQL
Adding measures to Calcite SQLAdding measures to Calcite SQL
Adding measures to Calcite SQL
Julian Hyde
 
Morel, a data-parallel programming language
Morel, a data-parallel programming languageMorel, a data-parallel programming language
Morel, a data-parallel programming language
Julian Hyde
 
Is there a perfect data-parallel programming language? (Experiments with More...
Is there a perfect data-parallel programming language? (Experiments with More...Is there a perfect data-parallel programming language? (Experiments with More...
Is there a perfect data-parallel programming language? (Experiments with More...
Julian Hyde
 
Morel, a Functional Query Language
Morel, a Functional Query LanguageMorel, a Functional Query Language
Morel, a Functional Query Language
Julian Hyde
 
Apache Calcite (a tutorial given at BOSS '21)
Apache Calcite (a tutorial given at BOSS '21)Apache Calcite (a tutorial given at BOSS '21)
Apache Calcite (a tutorial given at BOSS '21)
Julian Hyde
 
The evolution of Apache Calcite and its Community
The evolution of Apache Calcite and its CommunityThe evolution of Apache Calcite and its Community
The evolution of Apache Calcite and its Community
Julian Hyde
 
What to expect when you're Incubating
What to expect when you're IncubatingWhat to expect when you're Incubating
What to expect when you're Incubating
Julian Hyde
 
Open Source SQL - beyond parsers: ZetaSQL and Apache Calcite
Open Source SQL - beyond parsers: ZetaSQL and Apache CalciteOpen Source SQL - beyond parsers: ZetaSQL and Apache Calcite
Open Source SQL - beyond parsers: ZetaSQL and Apache Calcite
Julian Hyde
 
Efficient spatial queries on vanilla databases
Efficient spatial queries on vanilla databasesEfficient spatial queries on vanilla databases
Efficient spatial queries on vanilla databases
Julian Hyde
 
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
Julian Hyde
 
Tactical data engineering
Tactical data engineeringTactical data engineering
Tactical data engineering
Julian Hyde
 
Don't optimize my queries, organize my data!
Don't optimize my queries, organize my data!Don't optimize my queries, organize my data!
Don't optimize my queries, organize my data!
Julian Hyde
 
Spatial query on vanilla databases
Spatial query on vanilla databasesSpatial query on vanilla databases
Spatial query on vanilla databases
Julian Hyde
 
Data all over the place! How SQL and Apache Calcite bring sanity to streaming...
Data all over the place! How SQL and Apache Calcite bring sanity to streaming...Data all over the place! How SQL and Apache Calcite bring sanity to streaming...
Data all over the place! How SQL and Apache Calcite bring sanity to streaming...
Julian Hyde
 
Apache Calcite: A Foundational Framework for Optimized Query Processing Over ...
Apache Calcite: A Foundational Framework for Optimized Query Processing Over ...Apache Calcite: A Foundational Framework for Optimized Query Processing Over ...
Apache Calcite: A Foundational Framework for Optimized Query Processing Over ...
Julian Hyde
 
Lazy beats Smart and Fast
Lazy beats Smart and FastLazy beats Smart and Fast
Lazy beats Smart and Fast
Julian Hyde
 
Don’t optimize my queries, optimize my data!
Don’t optimize my queries, optimize my data!Don’t optimize my queries, optimize my data!
Don’t optimize my queries, optimize my data!
Julian Hyde
 

More from Julian Hyde (20)

Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)
Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)
Measures in SQL (a talk at SF Distributed Systems meetup, 2024-05-22)
 
Building a semantic/metrics layer using Calcite
Building a semantic/metrics layer using CalciteBuilding a semantic/metrics layer using Calcite
Building a semantic/metrics layer using Calcite
 
Cubing and Metrics in SQL, oh my!
Cubing and Metrics in SQL, oh my!Cubing and Metrics in SQL, oh my!
Cubing and Metrics in SQL, oh my!
 
Adding measures to Calcite SQL
Adding measures to Calcite SQLAdding measures to Calcite SQL
Adding measures to Calcite SQL
 
Morel, a data-parallel programming language
Morel, a data-parallel programming languageMorel, a data-parallel programming language
Morel, a data-parallel programming language
 
Is there a perfect data-parallel programming language? (Experiments with More...
Is there a perfect data-parallel programming language? (Experiments with More...Is there a perfect data-parallel programming language? (Experiments with More...
Is there a perfect data-parallel programming language? (Experiments with More...
 
Morel, a Functional Query Language
Morel, a Functional Query LanguageMorel, a Functional Query Language
Morel, a Functional Query Language
 
Apache Calcite (a tutorial given at BOSS '21)
Apache Calcite (a tutorial given at BOSS '21)Apache Calcite (a tutorial given at BOSS '21)
Apache Calcite (a tutorial given at BOSS '21)
 
The evolution of Apache Calcite and its Community
The evolution of Apache Calcite and its CommunityThe evolution of Apache Calcite and its Community
The evolution of Apache Calcite and its Community
 
What to expect when you're Incubating
What to expect when you're IncubatingWhat to expect when you're Incubating
What to expect when you're Incubating
 
Open Source SQL - beyond parsers: ZetaSQL and Apache Calcite
Open Source SQL - beyond parsers: ZetaSQL and Apache CalciteOpen Source SQL - beyond parsers: ZetaSQL and Apache Calcite
Open Source SQL - beyond parsers: ZetaSQL and Apache Calcite
 
Efficient spatial queries on vanilla databases
Efficient spatial queries on vanilla databasesEfficient spatial queries on vanilla databases
Efficient spatial queries on vanilla databases
 
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
 
Tactical data engineering
Tactical data engineeringTactical data engineering
Tactical data engineering
 
Don't optimize my queries, organize my data!
Don't optimize my queries, organize my data!Don't optimize my queries, organize my data!
Don't optimize my queries, organize my data!
 
Spatial query on vanilla databases
Spatial query on vanilla databasesSpatial query on vanilla databases
Spatial query on vanilla databases
 
Data all over the place! How SQL and Apache Calcite bring sanity to streaming...
Data all over the place! How SQL and Apache Calcite bring sanity to streaming...Data all over the place! How SQL and Apache Calcite bring sanity to streaming...
Data all over the place! How SQL and Apache Calcite bring sanity to streaming...
 
Apache Calcite: A Foundational Framework for Optimized Query Processing Over ...
Apache Calcite: A Foundational Framework for Optimized Query Processing Over ...Apache Calcite: A Foundational Framework for Optimized Query Processing Over ...
Apache Calcite: A Foundational Framework for Optimized Query Processing Over ...
 
Lazy beats Smart and Fast
Lazy beats Smart and FastLazy beats Smart and Fast
Lazy beats Smart and Fast
 
Don’t optimize my queries, optimize my data!
Don’t optimize my queries, optimize my data!Don’t optimize my queries, optimize my data!
Don’t optimize my queries, optimize my data!
 

Recently uploaded

Adjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTESAdjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTES
Subhajit Sahu
 
一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单
ocavb
 
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
g4dpvqap0
 
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
dwreak4tg
 
Influence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business PlanInfluence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business Plan
jerlynmaetalle
 
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptxData_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
AnirbanRoy608946
 
一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单
enxupq
 
一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单
enxupq
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单
ewymefz
 
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
yhkoc
 
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
ahzuo
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
vcaxypu
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP
 
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
2023240532
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP
 
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
slg6lamcq
 
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
mbawufebxi
 
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
axoqas
 
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
oz8q3jxlp
 
Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)
TravisMalana
 

Recently uploaded (20)

Adjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTESAdjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTES
 
一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单
 
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
 
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
 
Influence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business PlanInfluence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business Plan
 
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptxData_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
 
一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单
 
一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单
 
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
 
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
 
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
 
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
 
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
 
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
 
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
 
Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)
 

What's new in Mondrian 4?

  • 2. San Francisco 2014-04-03 ! @julianhyde What’s new in Mondrian 4? April 3rd, 2014 @julianhyde What’s new in Mondrian 4?
  • 3. Mondrian 4 – What's new? • Attributes & dimensions • Physical schema • Measure groups & aggregate tables • Internals • Delivery • Futures
  • 5. 5 Richer semantic model Features ! Attributes and Measures Dimensions as buckets of attributes Hierarchies to make navigation easier Physical schema: • Only define tables, columns, relationships once • Composite keys Measure groups representing fact and aggregate tables Goals ! Easier schema evolution More flexible for user • “Attribute-oriented analysis” Wider range of schemas Non-SQL databases
  • 6. 6 Attributes Mondrian 3: Dimension, Hierarchy, Level Mondrian 4: Dimension, Attribute ! Dimension: Customer Attributes: Nation, Gender, Zipcode, State, City, Age, Name Hierarchy: Customers {Nation, State, City, Name} Attribute hierarchies: Nation, Gender, Zipcode, State, City, Age, Name (created automatically)
  • 7. 7 Hierarchies Hierarchies are much less important in Mondrian 4 than Mondrian 3. Build dimensions and attributes first, hierarchies & levels later. Hierarchies optimize the user experience — double-click to drill
  • 8. 8 Defining an attribute <Attribute> attributes: • Key column (or columns if composite) • Name (default key) • Caption (default name) • Order column (default name) • Properties All of this stuff was in <Level> in Mondrian-3. Attribute key must be unique: • [Customer].[City].&[San Francisco]&[CA] • [Time].[Month].&[4]&[2014]
  • 9. 9 Physical schema • Define joins, data types, SQL expressions only once • Portability across different kinds of database (including non-SQL), and multiple databases 
 <PhysicalSchema>
 <Table name='product' keyColumn='product_id'/>
 <Table name=‘product_class’ keyColumn=‘product_class_id’/>
 <Link target='product' source='product_class'>
 <ForeignKey>
 <Column name='product_class_id'/>
 </ForeignKey>
 </Link>
  • 10. 10 Calculated columns • <Column/> element allows Mondrian to use correct table alias <PhysicalSchema>
 <Table name='customer'>
 <Key>
 <Column name='customer_id'/>
 </Key>
 <ColumnDefs>
 <CalculatedColumnDef name='full_name' type='String'>
 <ExpressionView>
 <SQL dialect='oracle'>
 <Column name='fname'/> || ' ' || <Column name='lname'/>
 </SQL>
 <SQL dialect='access'>
 <Column name='fname'/> + ' ' + <Column name='lname'/>
 </SQL>
  • 11. 11 Localization <Cube name='Sales' defaultMeasure='Unit Sales'>
 <Annotations>
 <Annotation name='caption.de_DE'>Verkaufen</Annotation>
 <Annotation name='caption.fr_FR'>Ventes</Annotation>
 <Annotation name='caption+fr_FR'>Ventes</Annotation>
 <Annotation name='description.fr_FR'>Cube des ventes</Annotation>
 <Annotation name='description.de'>Cube Verkaufen</Annotation>
 <Annotation name='description.de_AT'>Cube den Verkaufen</Annotation>
 </Annotations>
  • 12. Measure groups In Mondrian 3.x, if you want a cube with multiple fact tables, you build a virtual cube: ! <Cube name=“Sales”>
 <Table name=“sales_fact”/>
 </Cube>
 
 <Cube name=“Warehouse”>
 <Table name=“warehouse_fact”/>
 </Cube>
 
 <VirtualCube name=“Warehouse and Sales”>
 <Cube name=“Sales”/>
 <Cube name=“Warehouse”/>
 </VirtualCube>
  • 13. • In Mondrian 4, cubes can contain multiple measure groups • Virtual cubes are obsolete • Many-to-many association between measure groups and dimensions • Different ways to link dimensions to fact tables • Aggregate tables are measure groups Measure groups (2) 
 <Cube name=“Warehouse and Sales”>
 <MeasureGroups>
 <MeasureGroup name=“Sales”>
 <Table name=“sales_fact”/>
 <Measure name=“unit_sales”/>
 </MeasureGroup>
 <MeasureGroup name=“Warehouse”>
 <Table name=“warehouse_fact”/>
 <Measure name=“inventory_units”/>
 </MeasureGroup>
 </MeasureGroups>
 </Cube> Sales Warehouse Time X X Product X X Customer X Warehouse X
  • 17. 17 Hybrid fact/aggregate tables Measure groups (fact tables): • Have varying dimensionality, granularity; • Reference dimension tables; • Store un-aggregated measures. Aggregate tables: • Have various dimensionality, granularity; • Sometimes reference dimension tables; • Store aggregated measures. ! Let’s store measures in aggregate tables! Better… let’s make aggregate tables and measure groups the same thing.
  • 19.
  • 20. 20 Gone Replacement Mondrian 3 schema Mondrian 4 schema upgrader Aggregate recognizer Aggregate table API (define, enable, disable) Schema workbench Pentaho modeler (?) XMLA server olap4j-xmlaserver (github) Hierarchy syntax ● [Time.Weekly].[Day] ● [Time].[Month] SSAS-style syntax ● [Time].[Weekly].[Day] ● [Time].[Time].[Month] JPivot no longer in distro Get your own UI: Analyzer, Saiku, Pivot4J
  • 21. 21 Done Remaining The important things work! Ragged hierarchies Schema converter Aggregate table API 3,224 of 3,277 tests pass Pentaho modeler Analyzer, Saiku, Pivot4J integration Complex schema mappings BA server compliance testing
  • 22. Beta 1. Binaries at http://repo.pentaho.org/artifactory/repo under pentaho:mondrian:4.0.0 2. Run Mondrian-4 on your current schema ● Auto-upgrade ● Schema converter tool TBA ● MDX syntax differences mondrian.olap.SsasCompatibleNaming=true 3. Write a new-style schema 4. Log bugs http://jira.pentaho.com/browse/MONDRIAN or send a pull request: https://github.com/pentaho/mondrian/tree/lagunitas 5. Getting started: http://mondrian.pentaho.com/documentation/ developers_guide.php 6. Running Mondrian as an XMLA service: https://github.com/ ThoughtWorksInc/mondrian-xmla-spike
  • 23. 23 Mondrian 4 in Pentaho BA server • Mondrian 4 is an OSGI compatible module. It can be used alongside Mondrian 3. • Both versions of Mondrian are available. • Create olap4j connections to either one: “jdbc:mondrian:Catalog=…” or “jdbc:mondrian4:Catalog=…” • Behind the scenes, we inject our OSGI driver into the top- level class loader and we register with the java.sql.DriverManager • Caveat: All classpath resources must also be OSGI compatible and bundled as modules. (No loose files in WEB-INF/classes.) • Third party plugins: Most of the more popular analysis UIs of the Pentaho ecosystem already support Mondrian 4.
  • 24. Future features Connections ● Defined in schema ● Multiple connections ● Non-SQL databases ! Advanced SQL generation
  • 25. Multiple connections in schema 
 <Schema name='FoodMart'>
 <Connections>
 <Connection name='default' default='true' uuid='abcd-1234'>
 <Jdbc>jdbc:mysql://localhost/foodmart</Jdbc>
 <JdbcUser>foodmart</JdbcUser>
 <JdbcPassword>foodmart</JdbcPassword>
 </Connection>
 <Connection name='aggs' default='false' uuid='abcd-2345'>
 <Jdbc>jdbc:mysql://localhost/foodmartAggs</Jdbc>
 <JdbcUser>foodmartAggs</JdbcUser>
 <Properties>
 <Property name='prop1'>value1</Property>
 <Property name='prop2'>value2</Property>
 </Properties>
 </Connection>
 </Connections>! ● Cannot join tables from different connections ● Also: non-JDBC connection (via SPI or Optiq)
  • 26. Advanced SQL generation ● Access control ● Killing big IN lists ● Push down aggregates (esp. time ranges) ● Evaluate as much as possible of the MDX query in SQL ● Pivot & decompose ● MDX query planning ● Cache segments as in-memory tables
  • 27.
  • 28. Summary Mondrian 4 – A major improvement to Mondrian model & engine ! As compatible as possible ! Will enable further improvements in performance / flexibility in upcoming releases