增加数据源,在Trino安装目录配置对应的catalog文件即可,以MySQL数据源为例:
- 创建${trino_home}/etc/catalog/mysql.properties。
- 编辑mysql.properties:
connector.name=mysql connection-url=jdbc:mysql://127.0.0.1:3306 connection-user=test connection-password=test
说明具体的数据源配置可参考Trino相应官方文档。