Slide 3
Slide 3 text
Presto Connector
● Connector: Driver for a data source
○ Access HDFS datasets, e.g., Hive
○ Extend to real-time event streams, e.g., Kafka
○ Push-down/offload computation to data engines, e.g., Druid
● Data model from users’ perspective
○ Catalog: Contains schemas from a datasource specified by the connector
○ Schema: Namespace to organize tables.
○ Table: Set of unordered rows organized into columns with types.
SHOW TABLES FROM hive.default;
select * from hive.default.employees limit 1;