Ravi Nathwani
09/25/2024, 8:05 AMuser
09/25/2024, 8:05 AMRavi Nathwani
09/25/2024, 8:06 AMuser
09/25/2024, 8:06 AMuser
09/25/2024, 8:06 AMyaml temporal: extraEnv: - name: SQL_TLS value: "true" - name: SQL_TLS_ENABLED value: "true"
If you're having trouble with the main Airbyte DB connection, you can use jdbcUrl
to add `sslMode=require`: yaml externalDatabase: jdbcURL: jdbc:<postgresql://your-postgres-host/dbname?required_param=value&sslMode=require>
Temporal doesn't look at jdbcURL
, it takes the other values from externalDatabase
for host
, password
, and database
and builds its own connection URL. Please note that these configurations are based on the information provided in the knowledge sources and may need to be adjusted based on your specific setup and requirements. For more detailed instructions, you may want to refer to the official Airbyte documentation or their GitHub repository. [Source](https://github.com/airbytehq/airbyte/issues/24201)Ravi Nathwani
09/25/2024, 8:07 AMuser
09/25/2024, 8:07 AMuser
09/25/2024, 8:08 AMfalse
if you want to disable SSL for your Postgres database in Airbyte. Here's how you can do it: yaml temporal: extraEnv: - name: SQL_TLS value: "false" - name: SQL_TLS_ENABLED value: "false"
And for the main Airbyte DB connection, you can modify the sslMode
parameter in the `jdbcURL`: yaml externalDatabase: jdbcURL: jdbc:<postgresql://your-postgres-host/dbname?required_param=value&sslMode=disable>
Please note that these configurations are based on the information provided in the knowledge sources and may need to be adjusted based on your specific setup and requirements. For more detailed instructions, you may want to refer to the official Airbyte documentation or their GitHub repository. [Source](https://github.com/airbytehq/airbyte/issues/24201)Ravi Nathwani
09/25/2024, 8:09 AMsql schema version compatibility check failed: pq: database "temporal" does not exist
Unable to create server. Error: could not build arguments for function "go.uber.org/fx".(*module).constructCustomLogger.func2 (/go/pkg/mod/go.uber.org/fx@v1.20.0/module.go:251): failed to build fxevent.Logger: could not build arguments for function "go.temporal.io/server/temporal".init.func8 (/home/builder/temporal/temporal/fx.go:1029): failed to build log.Logger: received non-nil error from function "go.temporal.io/server/temporal".ServerOptionsProvider (/home/builder/temporal/temporal/fx.go:180): sql schema version compatibility check failed: pq: database "temporal" does not exist.
user
09/25/2024, 8:09 AMuser
09/25/2024, 8:10 AMyaml temporal: extraEnv: - name: DBNAME value: temporal
Please note that these configurations are based on the information provided in the knowledge sources and may need to be adjusted based on your specific setup and requirements. For more detailed instructions, you may want to refer to the official Airbyte documentation or their GitHub repository. [Source](https://github.com/airbytehq/airbyte/issues/26647)