在 Trino 配置文件中添加两种具有不同配置的 PostgreSQL 连接器类型

问题描述 投票:0回答:1

我的 PostgreSQL 实例中有两个数据库,我希望将它们连接到 Trino。我已将它们的配置添加到目录文件夹中的 postgres.properties 文件中:

connection-url=jdbc:postgresql://localhost:5432/postgres
connection-user=postgres
connection-password=postgres
case-insensitive-name-matching= true



connector.name=postgresql
connection-url=jdbc:postgresql://localhost:5432/report
connection-user=postgres
connection-password=postgres
case-insensitive-name-matching= true

但我只能在 Trino 中看到其中的一个。

postgresql presto trino presto-jdbc
1个回答
0
投票

您需要为每个数据库创建一个属性文件,最佳实践是将文件名定义为与数据库相同的名称,如下所示。

文件:postgres.properties

connection-url=jdbc:postgresql://localhost:5432/postgres
connection-user=postgres
connection-password=postgres
case-insensitive-name-matching= true

文件:report.properties

connector.name=postgresql
connection-url=jdbc:postgresql://localhost:5432/report
connection-user=postgres
connection-password=postgres
case-insensitive-name-matching= true
© www.soinside.com 2019 - 2024. All rights reserved.