connector.name=hive-hadoop2 hive.metastore.uri=thrift://localhost:9083 hive.allow-drop-table=true hive.s3.aws-access-key=YOUR_ACCESS_KEY hive.s3.aws-secret-key=YOUR_SECRET_KEY Create etc/catalog/postgresql.properties :

-- Insert data INSERT INTO memory.default.sales VALUES (1, 'Laptop', 999.99, DATE '2025-01-15'), (2, 'Mouse', 25.50, DATE '2025-01-16');

-- List all catalogs SHOW CATALOGS; -- List schemas in the memory catalog SHOW SCHEMAS FROM memory;

-- Query with aggregation SELECT product, SUM(amount) AS total FROM memory.default.sales GROUP BY product; 5.1 Cross-Connector Joins (Data Federation) One of the most celebrated features is querying across different data sources in a single SQL statement.

-- Create a sample table in memory CREATE TABLE memory.default.sales ( order_id BIGINT, product VARCHAR, amount DECIMAL(10,2), sale_date DATE );

Read more

Tutorial - Presto 8.8

connector.name=hive-hadoop2 hive.metastore.uri=thrift://localhost:9083 hive.allow-drop-table=true hive.s3.aws-access-key=YOUR_ACCESS_KEY hive.s3.aws-secret-key=YOUR_SECRET_KEY Create etc/catalog/postgresql.properties :

-- Insert data INSERT INTO memory.default.sales VALUES (1, 'Laptop', 999.99, DATE '2025-01-15'), (2, 'Mouse', 25.50, DATE '2025-01-16'); tutorial presto 8.8

-- List all catalogs SHOW CATALOGS; -- List schemas in the memory catalog SHOW SCHEMAS FROM memory; connector

-- Query with aggregation SELECT product, SUM(amount) AS total FROM memory.default.sales GROUP BY product; 5.1 Cross-Connector Joins (Data Federation) One of the most celebrated features is querying across different data sources in a single SQL statement. -- List all catalogs SHOW CATALOGS

-- Create a sample table in memory CREATE TABLE memory.default.sales ( order_id BIGINT, product VARCHAR, amount DECIMAL(10,2), sale_date DATE );