学会使用PrestoSQL
Presto SQL的核心要素
Presto设计了Connector、Catalog、Schema、Table这4个概念来定义SQL计算中数据源表。
Connector:Connector连接数据源与Presto,在Presto中新增Catalog时,都需要指定这个Catalog对应的Connector名称,如下,我们新增了一个Catalog(name = taobao),它对应的数据源是mysql:
// etc/catalog/taobao.properties
connector.name=mysql
connection-url=jdbc:mysql://mysql:13306
connection-user=test
connection-password=test
相关文章