Skip to content

Latest commit

History

History
91 lines (64 loc) 路 1.92 KB

README.md

File metadata and controls

91 lines (64 loc) 路 1.92 KB

Federated SQL Query

Fetch combined data from S3 Parquet, PostgreSQL, and Dremio in a single query.

Requirements

  • Docker

Follow these steps to use Spice to federate SQL queries across data sources

Step 1. Clone the github.com/spiceai/quickstarts repo and navigate to the federation directory.

git clone https://github.com/spiceai/quickstarts
cd quickstarts/federation

Step 2. Initialize the Spice app. Use the default name by pressing enter when prompted.

spice init
name: (federation)?

Step 3. Log into the demo Dremio instance.

spice login dremio -u demo -p demo1234

Step 4. Start a local PostgreSQL instance preloaded with demo data via Docker Compose.

make

Step 5. Start the Spice runtime.

spice run

Step 6. In another terminal window, add the spiceai/fed-demo Spicepod from spicerack.org.

spice add spiceai/fed-demo

Step 7. Start the Spice SQL REPL and perform the following SQL queries:

spice sql
-- Query the federated S3 source
select * from s3_source;

-- Query the accelerated S3 source
select * from s3_source_accelerated;

-- Query the federated PostgreSQL source
select * from pg_source;

-- Query the federated Dremio source
select * from dremio_source;

-- Query the accelerated Dremio source
select * from dremio_source_accelerated;

-- Perform an aggregation query that combines data from S3, PostgreSQL, and Dremio
WITH all_sales AS (
  SELECT sales FROM pg_source
  UNION ALL
  SELECT sales FROM s3_source_accelerated
  UNION ALL
  select fare_amount+tip_amount as sales from dremio_source_accelerated
)

SELECT SUM(sales) as total_sales,
       COUNT(*) AS total_transactions,
       MAX(sales) AS max_sale,
       AVG(sales) AS avg_sale
FROM all_sales

Step 8. Clean up the demo environment:

make clean