SlideShare a Scribd company logo
Apache Calcite
One Front-end to Rule Them All
Michael Mior, PMC Chair
Overview
● What is Apache Calcite?
● Calcite components
● Streaming SQL
● Next steps and contributing to Calcite
What is Apache Calcite?
● An ANSI-compliant SQL parser
● A logical query optimizer
● A heterogenous data processing framework
Origins
2004 LucidEra and SQLstream were each building SQL systems
2012 Code pared down and entered the ASF incubator
2015 Graduated from incubator
2016 I joined the Calcite project as a committer
2017 Joined the PMC and was voted as chair
2018 Paper presented at SIGMOD
Powered by Calcite
● Many open source projects
(Apache Hive, Apache Drill, Apache Phoenix, Lingual, …)
● Commercial products
(MapD, Dremio, Qubole, …)
● Contributors from Huawei, Uber, Intel, Salesforce, …
Powered by Calcite
Conventional Architecture
JDBC Client JDBC Server
SQL Parser
Optimizer
Datastore
Metadata
Operators
Calcite Architecture
JDBC Client JDBC Server
SQL Parser
Optimizer
3rd party
data
Pluggable
Metadata
Adapters
Pluggable
Rules
3rd party
data
Avatica
Optimizer
● Operates on relational algebra by matching rules
● Calcite contains 100+ rewrite rules
● Currently working on validating these using Cosette
● Optimization is cost-based
● “Calling convention” allows optimization across backends
Example rules
● Join order transposition
● Transpose different operators (e.g. project before join)
● Merge adjacent operators
● Materialized view query rewriting
Optimizer
● Based on the Volcano optimizer generator
○ Logical operators are functions (e.g. join)
○ Physical operators implement logical operators
○ Physical properties are attributes of the data
(e.g. sorting, partitioning)
● Start with logical expressions and physical properties
● Optimization produces a plan with only physical operators
Materialized views
Performance
Relational Algebra and Streaming
● Scan
● Filter
● Project
● Join
● Sort
● Aggregate
● Union
● Values
● Delta (relation to stream)
● Chi (stream to relation)
Adapters
● Connect to different backends (not just relational)
● Only required operation is a table scan
● Allow push down of filter, sort, etc.
● Calcite implements remaining operators
● Calling convention allows Calcite to separate
backend-specific operators and generic implementations
● Any relational algebra operator can be pushed down
● Operator push down simply requires a new optimizer rule
Adapters
Conventions
1. Plans start as
logical nodes
3. Fire rules to
propagate conventions
to other nodes
2. Assign each
Scan its table’s
native convention
4. The best plan may
use an engine not tied
to any native format
Join
Filter Scan
ScanScan
Join
Join
Filter Scan
ScanScan
Join
Scan
ScanScan
Join
Filter
Join
Join
Filter Scan
ScanScan
Join
Conventions
● Conventions are a uniform representation
of hybrid queries
● Physical property of nodes
(like ordering, distribution)
● Adapter =
Schema factory +
Convention +
Rules to convert to a convention
Join
Filter Scan
ScanScan
Join
● Column store database
● Uses tables partitioned across servers and clustered
● Supports limited filtering and sorting
Apache Cassandra Adapter
Query example
CREATE TABLE playlists (id uuid, song_order int,
song_id uuid, title text, artist text,
PRIMARY KEY (id, song_order));
SELECT title FROM playlists WHERE
id=62c36092-82a1-3a00-93d1-46196ee77204 AND
artist='Relient K' ORDER BY song_order;
SELECT * FROM playlists;
Query example
Sort
Scan
Project
Filter
● Start with a table scan
● Remaining operations performed by Calcite
SELECT * FROM playlists WHERE
id=62c36092-82a1-3a00-93d1-46196ee77204;
Query example
Sort
Scan
Project
Filter
Filter
● Push the filter on the partition key to Cassandra
● The remaining filter is performed by Calcite
SELECT * FROM playlists WHERE
id=62c36092-82a1-3a00-93d1-46196ee77204
ORDER BY song_order;
Query example
Filter
Scan
Project
Filter
Sort
● Push the ordering to Cassandra
● This uses the table’s clustering key
SELECT title, album FROM playlists WHERE
id=62c36092-82a1-3a00-93d1-46196ee77204
ORDER BY song_order;
Query example
Scan
Filter
Filter
Sort
Project
Project
● Push down the project of necessary fields
● This is the query sent to Cassandra
● Only the filter and project are done by Calcite
● Materialized view maintenance
● View-based query rewriting
● Full SQL support
● Join with other data sources
What we get for free
● All data must be modeled as relations
● Easy for relational databases
● Also relatively easy for many wide column stores
● What about document stores?
Data representation
Semistructured Data
● Columns can have complex types (e.g. arrays and maps)
● Add UNNEST operator to relational algebra
● New rules can be added to optimize these queries
name age pets
Sally 29 [{name: Fido,
type: Dog},
{name: Jack,
type: Cat}]
name age pets
Sally 29 {name: Fido,
type: Dog}
Sally 29 {name: Jack,
type: Cat}
MongoDB Adapter
_MAP
{ _id : 02401, city : BROCKTON, loc : [
-71.03434799999999, 42.081571 ], pop
: 59498, state : MA }
{ _id : 06902, city : STAMFORD, loc : [
-73.53742800000001, 41.052552 ], pop
: 54605, state : CT }
● Use one column with the whole document
● Unnest attributes as needed
● This is very messy, but we have
no schema to work with
MongoDB Adapter
id city latitude longitude population state
02401 BROCKTON -71.034348 42.081571 59498 MA
06902 STAMFORD -73.537428 41.052552 54605 CT
● Views to the rescue!
● Users of adapters can define structured views over
semistructured data (or do this lazily! See Apache Drill)
Available Adapters
MySQL
Splunk
join
Key: productId
group
Key: productName
Agg: count
filter
Condition:
action = 'purchase'
sort
Key: c desc
scan
scan
Table: products
Table: splunk
SELECT p.productName, COUNT(*) AS c
FROM splunk.splunk AS s
JOIN mysql.products AS p
ON s.productId = p.productId
WHERE s.action = 'purchase'
GROUP BY p.productName
ORDER BY c DESC
FilterIntoJoin
MySQL
Splunk
group
Key: productName
Agg: count
sort
Key: c desc
FilterIntoJoin
join
Key: productId
filter
Condition:
action = 'purchase'
scan
scan
Table: splunk
Table: products
SELECT p.productName, COUNT(*) AS c
FROM splunk.splunk AS s
JOIN mysql.products AS p
ON s.productId = p.productId
WHERE s.action = 'purchase'
GROUP BY p.productName
ORDER BY c DESC
Streaming Data
● Calcite supports multiple windowing algorithms
(e.g. tumbling, sliding, hopping)
● Streaming queries can be combined with tables
● Streaming queries can be optimized using the same rules
along with new rules specifically for streaming queries
Streaming Data
● Relations can be used both as streams and tables
● Calcite is a reference implementation for streaming SQL
(still being standardized)
SELECT STREAM * FROM Orders AS o WHERE units >
(SELECT AVG(units) FROM Orders AS h WHERE
h.productId = o.productId AND h.rowtime >
o.rowtime - INTERVAL ‘1’ YEAR)
Windowing
Tumbling window
Hopping window
Session window
SELECT STREAM … FROM Orders
GROUP BY FLOOR(rowtime TO HOUR)
SELECT STREAM … FROM Orders
GROUP BY TUMBLE(rowtime, INTERVAL ‘1’ HOUR)
SELECT STREAM … FROM Orders
GROUP BY HOP(rowtime, INTERVAL ‘1’ HOUR,
INTERVAL ‘2’ HOUR)
SELECT STREAM … FROM Orders
GROUP BY SESSION(rowtime, INTERVAL ‘1’ HOUR)
My Use Case
● Perform view-based query rewriting to provide a logical
model over a denormalized data store
● Denormalized tables are views over (non-materialized)
logical tables
● Queries can be rewritten from logical tables to the most
cost-efficient choice of materialized views
Use Cases
● Parsing and validating SQL (not so easy)
● Adding a relational front end to an existing system
● Prototyping new query processing algorithms
● Integrating data from multiple backends
● Allowing RDBMS tools to work with non-relational DBs
Calcite Project Future Work
● Geospatial queries
● Processing scientific data formats
● Sharing data in-memory between backends
● Additional query execution engines
My Future Work
● Better cost modeling
● Query-based data source selection
● Cost-based database system selection
Contributing to Apache Calcite
● Pick an existing issue or file a new one and start coding!
● Mailing list is generally very active
● New committers and PMC members regularly added
● Many opportunities for projects at various scales
Additional areas for contribution
● Testing (SQL is hard!)
● Incorporating state-of-the-art in DB research
● Access control across multiple systems
● Adapters for new classes of database (eg. array DBs)
● Implement missing SQL features (e.g. set operations)
…
Thanks to
● Edmon Begoli, Oak Ridge National Laboratory
● Jesús Camacho-Rodríguez, Hortonworks
● Julian Hyde, Hortonworks
● Daniel Lemire, Université du Québec (TÉLUQ)
● All other Calcite contributors!
Questions?
https://calcite.apache.org/

More Related Content

PPTX
Apache Calcite overview
PDF
Better than you think: Handling JSON data in ClickHouse
PDF
Apache Calcite Tutorial - BOSS 21
PDF
Apache Calcite: A Foundational Framework for Optimized Query Processing Over ...
PDF
Introduction to Apache Calcite
PDF
Apache Calcite: One planner fits all
PDF
Apache Calcite (a tutorial given at BOSS '21)
PPTX
SQL Query Optimization: Why Is It So Hard to Get Right?
Apache Calcite overview
Better than you think: Handling JSON data in ClickHouse
Apache Calcite Tutorial - BOSS 21
Apache Calcite: A Foundational Framework for Optimized Query Processing Over ...
Introduction to Apache Calcite
Apache Calcite: One planner fits all
Apache Calcite (a tutorial given at BOSS '21)
SQL Query Optimization: Why Is It So Hard to Get Right?

What's hot (20)

PDF
Data all over the place! How SQL and Apache Calcite bring sanity to streaming...
PDF
A Day in the Life of a ClickHouse Query Webinar Slides
PDF
Fast federated SQL with Apache Calcite
PDF
Using Apache Calcite for Enabling SQL and JDBC Access to Apache Geode and Oth...
PDF
Streaming SQL with Apache Calcite
PDF
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
PDF
InfluxDB IOx Tech Talks: Query Engine Design and the Rust-Based DataFusion in...
PDF
All About JSON and ClickHouse - Tips, Tricks and New Features-2022-07-26-FINA...
PDF
ClickHouse Monitoring 101: What to monitor and how
PDF
ClickHouse Query Performance Tips and Tricks, by Robert Hodges, Altinity CEO
PDF
Impacts of Sharding, Partitioning, Encoding, and Sorting on Distributed Query...
PDF
Webinar slides: MORE secrets of ClickHouse Query Performance. By Robert Hodge...
PDF
Deep Dive on ClickHouse Sharding and Replication-2202-09-22.pdf
PDF
Understanding Presto - Presto meetup @ Tokyo #1
PDF
ksqlDB: A Stream-Relational Database System
PDF
PostgreSQLの運用・監視にまつわるエトセトラ
PDF
より深く知るオプティマイザとそのチューニング
PDF
Introduction to Apache Beam
PDF
RDB技術者のためのNoSQLガイド NoSQLの必要性と位置づけ
PDF
Introducing DataFrames in Spark for Large Scale Data Science
Data all over the place! How SQL and Apache Calcite bring sanity to streaming...
A Day in the Life of a ClickHouse Query Webinar Slides
Fast federated SQL with Apache Calcite
Using Apache Calcite for Enabling SQL and JDBC Access to Apache Geode and Oth...
Streaming SQL with Apache Calcite
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
InfluxDB IOx Tech Talks: Query Engine Design and the Rust-Based DataFusion in...
All About JSON and ClickHouse - Tips, Tricks and New Features-2022-07-26-FINA...
ClickHouse Monitoring 101: What to monitor and how
ClickHouse Query Performance Tips and Tricks, by Robert Hodges, Altinity CEO
Impacts of Sharding, Partitioning, Encoding, and Sorting on Distributed Query...
Webinar slides: MORE secrets of ClickHouse Query Performance. By Robert Hodge...
Deep Dive on ClickHouse Sharding and Replication-2202-09-22.pdf
Understanding Presto - Presto meetup @ Tokyo #1
ksqlDB: A Stream-Relational Database System
PostgreSQLの運用・監視にまつわるエトセトラ
より深く知るオプティマイザとそのチューニング
Introduction to Apache Beam
RDB技術者のためのNoSQLガイド NoSQLの必要性と位置づけ
Introducing DataFrames in Spark for Large Scale Data Science
Ad

Similar to Apache Calcite: One Frontend to Rule Them All (20)

PDF
Anatomy of Data Frame API : A deep dive into Spark Data Frame API
PPTX
Presto query optimizer: pursuit of performance
PPTX
Offline first: application data and synchronization
PDF
Nzitf Velociraptor Workshop
PPTX
Hadoop and HBase experiences in perf log project
PDF
SQL for Analytics.pdfSQL for Analytics.pdf
PDF
Tajo_Meetup_20141120
PDF
RMLL 2013 - Synchronize OpenLDAP and Active Directory with LSC
PPTX
Querying Druid in SQL with Superset
PPTX
Catalyst optimizer
PDF
How We Added Replication to QuestDB - JonTheBeach
PDF
Argus Production Monitoring at Salesforce
PDF
Argus Production Monitoring at Salesforce
PDF
Declarative benchmarking of cassandra and it's data models
ODP
Introduction to Structured Streaming
PPTX
Cost-based Query Optimization in Hive
PPTX
Cost-based query optimization in Apache Hive
PPTX
Presentación Oracle Database Migración consideraciones 10g/11g/12c
PDF
What's New in MariaDB Server 10.2 and MariaDB MaxScale 2.1
PDF
What's New in MariaDB Server 10.2 and MariaDB MaxScale 2.1
Anatomy of Data Frame API : A deep dive into Spark Data Frame API
Presto query optimizer: pursuit of performance
Offline first: application data and synchronization
Nzitf Velociraptor Workshop
Hadoop and HBase experiences in perf log project
SQL for Analytics.pdfSQL for Analytics.pdf
Tajo_Meetup_20141120
RMLL 2013 - Synchronize OpenLDAP and Active Directory with LSC
Querying Druid in SQL with Superset
Catalyst optimizer
How We Added Replication to QuestDB - JonTheBeach
Argus Production Monitoring at Salesforce
Argus Production Monitoring at Salesforce
Declarative benchmarking of cassandra and it's data models
Introduction to Structured Streaming
Cost-based Query Optimization in Hive
Cost-based query optimization in Apache Hive
Presentación Oracle Database Migración consideraciones 10g/11g/12c
What's New in MariaDB Server 10.2 and MariaDB MaxScale 2.1
What's New in MariaDB Server 10.2 and MariaDB MaxScale 2.1
Ad

More from Michael Mior (6)

PDF
A view from the ivory tower: Participating in Apache as a member of academia
PDF
Physical Design for Non-Relational Data Systems
PDF
Locomotor: transparent migration of client-side database code
PDF
Automated Schema Design for NoSQL Databases
PDF
NoSE: Schema Design for NoSQL Applications
PDF
FlurryDB: A Dynamically Scalable Relational Database with Virtual Machine Clo...
A view from the ivory tower: Participating in Apache as a member of academia
Physical Design for Non-Relational Data Systems
Locomotor: transparent migration of client-side database code
Automated Schema Design for NoSQL Databases
NoSE: Schema Design for NoSQL Applications
FlurryDB: A Dynamically Scalable Relational Database with Virtual Machine Clo...

Recently uploaded (20)

PDF
CIFDAQ's Token Spotlight: SKY - A Forgotten Giant's Comeback?
PDF
agentic-ai-and-the-future-of-autonomous-systems.pdf
PDF
creating-agentic-ai-solutions-leveraging-aws.pdf
PPTX
CroxyProxy Instagram Access id login.pptx
PDF
SparkLabs Primer on Artificial Intelligence 2025
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
PDF
REPORT: Heating appliances market in Poland 2024
PDF
Google’s NotebookLM Unveils Video Overviews
PDF
Dell Pro 14 Plus: Be better prepared for what’s coming
PDF
Transforming Manufacturing operations through Intelligent Integrations
PPTX
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
PPTX
ChatGPT's Deck on The Enduring Legacy of Fax Machines
PPTX
How Much Does It Cost to Build a Train Ticket App like Trenitalia in Italy.pptx
PPTX
ABU RAUP TUGAS TIK kelas 8 hjhgjhgg.pptx
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...
CIFDAQ's Token Spotlight: SKY - A Forgotten Giant's Comeback?
agentic-ai-and-the-future-of-autonomous-systems.pdf
creating-agentic-ai-solutions-leveraging-aws.pdf
CroxyProxy Instagram Access id login.pptx
SparkLabs Primer on Artificial Intelligence 2025
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
REPORT: Heating appliances market in Poland 2024
Google’s NotebookLM Unveils Video Overviews
Dell Pro 14 Plus: Be better prepared for what’s coming
Transforming Manufacturing operations through Intelligent Integrations
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
Automating ArcGIS Content Discovery with FME: A Real World Use Case
ChatGPT's Deck on The Enduring Legacy of Fax Machines
How Much Does It Cost to Build a Train Ticket App like Trenitalia in Italy.pptx
ABU RAUP TUGAS TIK kelas 8 hjhgjhgg.pptx
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
NewMind AI Weekly Chronicles - August'25 Week I
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...

Apache Calcite: One Frontend to Rule Them All

  • 1. Apache Calcite One Front-end to Rule Them All Michael Mior, PMC Chair
  • 2. Overview ● What is Apache Calcite? ● Calcite components ● Streaming SQL ● Next steps and contributing to Calcite
  • 3. What is Apache Calcite? ● An ANSI-compliant SQL parser ● A logical query optimizer ● A heterogenous data processing framework
  • 4. Origins 2004 LucidEra and SQLstream were each building SQL systems 2012 Code pared down and entered the ASF incubator 2015 Graduated from incubator 2016 I joined the Calcite project as a committer 2017 Joined the PMC and was voted as chair 2018 Paper presented at SIGMOD
  • 5. Powered by Calcite ● Many open source projects (Apache Hive, Apache Drill, Apache Phoenix, Lingual, …) ● Commercial products (MapD, Dremio, Qubole, …) ● Contributors from Huawei, Uber, Intel, Salesforce, …
  • 7. Conventional Architecture JDBC Client JDBC Server SQL Parser Optimizer Datastore Metadata Operators
  • 8. Calcite Architecture JDBC Client JDBC Server SQL Parser Optimizer 3rd party data Pluggable Metadata Adapters Pluggable Rules 3rd party data
  • 10. Optimizer ● Operates on relational algebra by matching rules ● Calcite contains 100+ rewrite rules ● Currently working on validating these using Cosette ● Optimization is cost-based ● “Calling convention” allows optimization across backends
  • 11. Example rules ● Join order transposition ● Transpose different operators (e.g. project before join) ● Merge adjacent operators ● Materialized view query rewriting
  • 12. Optimizer ● Based on the Volcano optimizer generator ○ Logical operators are functions (e.g. join) ○ Physical operators implement logical operators ○ Physical properties are attributes of the data (e.g. sorting, partitioning) ● Start with logical expressions and physical properties ● Optimization produces a plan with only physical operators
  • 15. Relational Algebra and Streaming ● Scan ● Filter ● Project ● Join ● Sort ● Aggregate ● Union ● Values ● Delta (relation to stream) ● Chi (stream to relation)
  • 16. Adapters ● Connect to different backends (not just relational) ● Only required operation is a table scan ● Allow push down of filter, sort, etc. ● Calcite implements remaining operators
  • 17. ● Calling convention allows Calcite to separate backend-specific operators and generic implementations ● Any relational algebra operator can be pushed down ● Operator push down simply requires a new optimizer rule Adapters
  • 18. Conventions 1. Plans start as logical nodes 3. Fire rules to propagate conventions to other nodes 2. Assign each Scan its table’s native convention 4. The best plan may use an engine not tied to any native format Join Filter Scan ScanScan Join Join Filter Scan ScanScan Join Scan ScanScan Join Filter Join Join Filter Scan ScanScan Join
  • 19. Conventions ● Conventions are a uniform representation of hybrid queries ● Physical property of nodes (like ordering, distribution) ● Adapter = Schema factory + Convention + Rules to convert to a convention Join Filter Scan ScanScan Join
  • 20. ● Column store database ● Uses tables partitioned across servers and clustered ● Supports limited filtering and sorting Apache Cassandra Adapter
  • 21. Query example CREATE TABLE playlists (id uuid, song_order int, song_id uuid, title text, artist text, PRIMARY KEY (id, song_order)); SELECT title FROM playlists WHERE id=62c36092-82a1-3a00-93d1-46196ee77204 AND artist='Relient K' ORDER BY song_order;
  • 22. SELECT * FROM playlists; Query example Sort Scan Project Filter ● Start with a table scan ● Remaining operations performed by Calcite
  • 23. SELECT * FROM playlists WHERE id=62c36092-82a1-3a00-93d1-46196ee77204; Query example Sort Scan Project Filter Filter ● Push the filter on the partition key to Cassandra ● The remaining filter is performed by Calcite
  • 24. SELECT * FROM playlists WHERE id=62c36092-82a1-3a00-93d1-46196ee77204 ORDER BY song_order; Query example Filter Scan Project Filter Sort ● Push the ordering to Cassandra ● This uses the table’s clustering key
  • 25. SELECT title, album FROM playlists WHERE id=62c36092-82a1-3a00-93d1-46196ee77204 ORDER BY song_order; Query example Scan Filter Filter Sort Project Project ● Push down the project of necessary fields ● This is the query sent to Cassandra ● Only the filter and project are done by Calcite
  • 26. ● Materialized view maintenance ● View-based query rewriting ● Full SQL support ● Join with other data sources What we get for free
  • 27. ● All data must be modeled as relations ● Easy for relational databases ● Also relatively easy for many wide column stores ● What about document stores? Data representation
  • 28. Semistructured Data ● Columns can have complex types (e.g. arrays and maps) ● Add UNNEST operator to relational algebra ● New rules can be added to optimize these queries name age pets Sally 29 [{name: Fido, type: Dog}, {name: Jack, type: Cat}] name age pets Sally 29 {name: Fido, type: Dog} Sally 29 {name: Jack, type: Cat}
  • 29. MongoDB Adapter _MAP { _id : 02401, city : BROCKTON, loc : [ -71.03434799999999, 42.081571 ], pop : 59498, state : MA } { _id : 06902, city : STAMFORD, loc : [ -73.53742800000001, 41.052552 ], pop : 54605, state : CT } ● Use one column with the whole document ● Unnest attributes as needed ● This is very messy, but we have no schema to work with
  • 30. MongoDB Adapter id city latitude longitude population state 02401 BROCKTON -71.034348 42.081571 59498 MA 06902 STAMFORD -73.537428 41.052552 54605 CT ● Views to the rescue! ● Users of adapters can define structured views over semistructured data (or do this lazily! See Apache Drill)
  • 32. MySQL Splunk join Key: productId group Key: productName Agg: count filter Condition: action = 'purchase' sort Key: c desc scan scan Table: products Table: splunk SELECT p.productName, COUNT(*) AS c FROM splunk.splunk AS s JOIN mysql.products AS p ON s.productId = p.productId WHERE s.action = 'purchase' GROUP BY p.productName ORDER BY c DESC FilterIntoJoin
  • 33. MySQL Splunk group Key: productName Agg: count sort Key: c desc FilterIntoJoin join Key: productId filter Condition: action = 'purchase' scan scan Table: splunk Table: products SELECT p.productName, COUNT(*) AS c FROM splunk.splunk AS s JOIN mysql.products AS p ON s.productId = p.productId WHERE s.action = 'purchase' GROUP BY p.productName ORDER BY c DESC
  • 34. Streaming Data ● Calcite supports multiple windowing algorithms (e.g. tumbling, sliding, hopping) ● Streaming queries can be combined with tables ● Streaming queries can be optimized using the same rules along with new rules specifically for streaming queries
  • 35. Streaming Data ● Relations can be used both as streams and tables ● Calcite is a reference implementation for streaming SQL (still being standardized) SELECT STREAM * FROM Orders AS o WHERE units > (SELECT AVG(units) FROM Orders AS h WHERE h.productId = o.productId AND h.rowtime > o.rowtime - INTERVAL ‘1’ YEAR)
  • 36. Windowing Tumbling window Hopping window Session window SELECT STREAM … FROM Orders GROUP BY FLOOR(rowtime TO HOUR) SELECT STREAM … FROM Orders GROUP BY TUMBLE(rowtime, INTERVAL ‘1’ HOUR) SELECT STREAM … FROM Orders GROUP BY HOP(rowtime, INTERVAL ‘1’ HOUR, INTERVAL ‘2’ HOUR) SELECT STREAM … FROM Orders GROUP BY SESSION(rowtime, INTERVAL ‘1’ HOUR)
  • 37. My Use Case ● Perform view-based query rewriting to provide a logical model over a denormalized data store ● Denormalized tables are views over (non-materialized) logical tables ● Queries can be rewritten from logical tables to the most cost-efficient choice of materialized views
  • 38. Use Cases ● Parsing and validating SQL (not so easy) ● Adding a relational front end to an existing system ● Prototyping new query processing algorithms ● Integrating data from multiple backends ● Allowing RDBMS tools to work with non-relational DBs
  • 39. Calcite Project Future Work ● Geospatial queries ● Processing scientific data formats ● Sharing data in-memory between backends ● Additional query execution engines
  • 40. My Future Work ● Better cost modeling ● Query-based data source selection ● Cost-based database system selection
  • 41. Contributing to Apache Calcite ● Pick an existing issue or file a new one and start coding! ● Mailing list is generally very active ● New committers and PMC members regularly added ● Many opportunities for projects at various scales
  • 42. Additional areas for contribution ● Testing (SQL is hard!) ● Incorporating state-of-the-art in DB research ● Access control across multiple systems ● Adapters for new classes of database (eg. array DBs) ● Implement missing SQL features (e.g. set operations) …
  • 43. Thanks to ● Edmon Begoli, Oak Ridge National Laboratory ● Jesús Camacho-Rodríguez, Hortonworks ● Julian Hyde, Hortonworks ● Daniel Lemire, Université du Québec (TÉLUQ) ● All other Calcite contributors!