Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

External Postgres Database Setup Issues #49304

Closed
PrestonBlackburn opened this issue Dec 12, 2024 · 3 comments
Closed

External Postgres Database Setup Issues #49304

PrestonBlackburn opened this issue Dec 12, 2024 · 3 comments
Labels

Comments

@PrestonBlackburn
Copy link

Helm Chart Version

1.1.0

What step the error happened?

On deploy

Relevant information

I've been trying to point our Airbyte instance to an external postgres database with no luck. To troubleshoot I've tried to restore the external database from an existing Aribyte Postgres database, and tried with a new blank external database. Neither are working for me, but they result in different errors/issues.

When specifying an new blank external database in the helm chart, the database gets populated with the airbyte tables (state, stream_stats, jobs, etc...), but the deployment fails. The bootloader pod will not throw an error and show up as the Completed status, but the next step of the process gets stuck somewhere and no other deployment pods get created.

When specifying an external database in the helm chart that has been restored from a backup the whole stack spins up, but I get an error when testing out the web app.

In both cases I'm following the aribyte documentation (https://docs.airbyte.com/deploying-airbyte/integrations/database), but there isn't information about if anything else needs to be set up for the Postgres database. Config changes
Secrets created first (objects are create in the external database, so I don't think secrets/connectivity is the issue):

apiVersion: v1
kind: Secret
metadata:
  name: airbyte-config-secrets

type: Opaque
stringData:
  database-user: postgres
  database-password: my_password

Updated fields in values.yaml (the rest of the the vaulues are just the defaults)

postgresql:
  enabled: false

global:
  database:
    type: "external"
    secretName: "airbyte-config-secrets"
    host: "<rds db name>.<rds id>.<rds region>.rds.amazonaws.com"
    port: "5432"
    database: "airbyte"
    userSecretKey: "database-user"
    passwordSecretKey: "database-password"

When I try to restore from an existing Airbyte deployment in a new database it seems like there is some sort of issue . All of the pods spin up, but there is a communication error in the frontend. This is the error it throws when I port forward the web app service to localhost:8000
and try to access the app at localhost:8000:

{
  "url": "http://localhost:8000/",
  "airbyteVersion": "1.1.0",
  "errorType": "HttpError",
  "errorConstructor": "wd",
  "error": {
    "i18nKey": "errors.http.notFound",
    "i18nParams": {
      "status": 404
    },
    "name": "HttpError",
    "requestId": "wYzX5fvXPLGtXUENhGE8Np",
    "request": {
      "url": "/api/v1/instance_configuration",
      "method": "get"
    },
    "status": 404,
    "response": "<html>\r\n<head><title>404 Not Found</title></head>\r\n<body>\r\n<center><h1>404 Not Found</h1></center>\r\n<hr><center>nginx/1.27.1</center>\r\n</body>\r\n</html>\r\n<!-- a padding to disable MSIE and Chrome friendly error page -->\r\n<!-- a padding to disable MSIE and Chrome friendly error page -->\r\n<!-- a padding to disable MSIE and Chrome friendly error page -->\r\n<!-- a padding to disable MSIE and Chrome friendly error page -->\r\n<!-- a padding to disable MSIE and Chrome friendly error page -->\r\n<!-- a padding to disable MSIE and Chrome friendly error page -->\r\n"
  },
  "stacktrace": "HttpError: errors.http.notFound\n    at Jve (http://localhost:8000/assets/core-icl96mliue.js:120:10572)",
  "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",
  "featureFlags": {}
}

I'm not sure why it wouldn't be able to access the server, since I can do the same thing without the external database info in the values.yaml and this works.

Other Notes:

  • There are no "errors" in the log output from the boot loader for the new postgres database (not from a backup/restore), so I just added the tail of the logs - not sure if that is useful
  • Also, I'm testing against Postgres on RDS, not sure if there are any additional considerations that need to be taken into account for the database setup when using RDS

Relevant log output

2024-12-11 22:54:28 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:28 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-merge:0.2.0
2024-12-11 22:54:29 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:29 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:29 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:29 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-bitly:0.0.1
2024-12-11 22:54:29 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:29 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-hardcoded-records:0.0.14
2024-12-11 22:54:30 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-gorgias:0.0.1
2024-12-11 22:54:30 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-faker:6.2.11
2024-12-11 22:54:30 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-lever-hiring:0.4.1
2024-12-11 22:54:30 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:31 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-unleash:0.1.17
2024-12-11 22:54:31 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-braze:0.3.0
2024-12-11 22:54:31 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-pardot:0.1.20
2024-12-11 22:54:32 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:32 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-sftp:0.2.2
2024-12-11 22:54:32 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-google-drive:0.0.12
2024-12-11 22:54:32 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-mailjet-sms:0.2.1
2024-12-11 22:54:33 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-chameleon:0.0.2
2024-12-11 22:54:33 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:33 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-gcs:0.7.2
2024-12-11 22:54:34 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-ringcentral:0.2.0
2024-12-11 22:54:34 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-statuspage:0.2.1
2024-12-11 22:54:34 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:35 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-basecamp:0.0.1
2024-12-11 22:54:35 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-open-exchange-rates:0.3.1
2024-12-11 22:54:35 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-qualaroo:0.3.21
2024-12-11 22:54:36 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-nytimes:0.2.0
2024-12-11 22:54:36 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:36 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-greenhouse:0.5.21
2024-12-11 22:54:36 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-front:0.0.1
2024-12-11 22:54:37 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applySourceDefinition):138 - Adding new connector airbyte/source-you-need-a-budget-ynab:0.0.1
2024-12-11 22:54:37 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:37 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-starburst-galaxy:0.0.1
2024-12-11 22:54:37 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-gcs:0.4.6
2024-12-11 22:54:38 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-clickhouse:1.0.0
2024-12-11 22:54:38 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-mssql:1.0.0
2024-12-11 22:54:38 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:39 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-mysql:1.0.2
2024-12-11 22:54:39 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:39 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:39 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:39 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:39 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:39 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-pubsub:0.2.0
2024-12-11 22:54:39 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-kafka:0.1.10
2024-12-11 22:54:40 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-weaviate:0.2.39
2024-12-11 22:54:40 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:40 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-mongodb:0.2.0
2024-12-11 22:54:40 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-vectara:0.2.25
2024-12-11 22:54:41 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-s3-glue:0.1.8
2024-12-11 22:54:41 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:41 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-dev-null:0.7.2
2024-12-11 22:54:41 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-snowflake-cortex:0.2.22
2024-12-11 22:54:42 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-timeplus:0.1.23
2024-12-11 22:54:42 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-csv:1.0.0
2024-12-11 22:54:42 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:43 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-convex:0.2.8
2024-12-11 22:54:43 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-firestore:0.1.8
2024-12-11 22:54:43 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-redshift:3.5.0
2024-12-11 22:54:44 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:44 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-dynamodb:0.1.8
2024-12-11 22:54:44 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-rabbitmq:0.1.22
2024-12-11 22:54:44 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-sqlite:0.1.9
2024-12-11 22:54:45 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-qdrant:0.1.14
2024-12-11 22:54:45 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:45 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-snowflake:3.15.0
2024-12-11 22:54:45 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-databricks:3.3.0
2024-12-11 22:54:46 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-oracle:1.0.0
2024-12-11 22:54:46 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:46 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-aws-datalake:0.1.31
2024-12-11 22:54:47 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector ghcr.io/devmate-cloud/streamr-airbyte-connectors:0.0.1
2024-12-11 22:54:47 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-milvus:0.0.34
2024-12-11 22:54:47 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-firebolt:0.2.20
2024-12-11 22:54:48 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:48 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-google-sheets:0.2.25
2024-12-11 22:54:48 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-astra:0.1.26
2024-12-11 22:54:48 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-chroma:0.0.31
2024-12-11 22:54:49 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:49 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:49 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:49 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:49 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-teradata:0.1.6
2024-12-11 22:54:49 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-local-json:0.2.11
2024-12-11 22:54:49 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:50 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-pinecone:0.1.24
2024-12-11 22:54:50 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-duckdb:0.4.22
2024-12-11 22:54:50 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-iceberg:0.2.2
2024-12-11 22:54:51 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:51 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-sftp-json:0.1.0
2024-12-11 22:54:51 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-s3:1.2.1
2024-12-11 22:54:51 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-redis:0.1.4
2024-12-11 22:54:52 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-typesense:0.1.26
2024-12-11 22:54:52 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:52 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-bigquery:2.9.0
2024-12-11 22:54:52 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-elasticsearch:0.1.6
2024-12-11 22:54:53 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-azure-blob-storage:0.2.2
2024-12-11 22:54:53 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:53 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-pgvector:0.1.1
2024-12-11 22:54:54 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-yellowbrick:0.0.3
2024-12-11 22:54:54 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(applyDestinationDefinition):213 - Adding new connector airbyte/destination-postgres:2.4.0
2024-12-11 22:54:54 �[32mINFO�[m i.a.c.i.SupportStateUpdater(updateSupportStates):154 - Updating support states for all definitions
2024-12-11 22:54:54 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:57 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:57 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:58 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:58 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:59 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:59 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:59 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:59 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:54:59 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:00 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:00 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:01 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:01 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:02 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:02 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:03 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:03 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:04 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:04 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:05 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:06 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:06 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:07 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:07 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:08 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:08 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:09 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:09 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:09 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:09 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:09 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:10 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:10 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:11 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:11 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:12 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:12 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:13 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:13 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:14 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:14 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:15 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:15 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:16 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:17 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:17 �[32mINFO�[m i.a.c.i.SupportStateUpdater(updateSupportStates):220 - Finished updating support states for all definitions
2024-12-11 22:55:17 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(apply):106 - New connectors added: 402
2024-12-11 22:55:17 �[32mINFO�[m i.a.c.i.ApplyDefinitionsHelper(apply):107 - Version changes applied: 0
2024-12-11 22:55:17 �[32mINFO�[m i.a.b.DefaultPostLoadExecutor(execute):46 - Done updating connector definitions
2024-12-11 22:55:17 �[32mINFO�[m i.a.c.i.DeclarativeSourceUpdater(apply):46 - Persisted new declarative manifest image version for new major version 0: 0.90.0 with sha sha256:d4b897be4f4c9edc5073b60f625cadb6853d8dc7e6178b19c414fe9b743fde33
2024-12-11 22:55:17 �[33mWARN�[m i.m.s.r.u.Loggers$Slf4JLogger(warn):299 - [35276149, L:/127.0.0.1:49961 - R:localhost/127.0.0.1:8125] An exception has been observed post termination, use DEBUG level to see the full stack: java.net.PortUnreachableException: recvAddress(..) failed: Connection refused
2024-12-11 22:55:18 �[32mINFO�[m i.a.c.i.DeclarativeSourceUpdater(apply):46 - Persisted new declarative manifest image version for new major version 1: 1.7.0 with sha sha256:3cd10771ef1608e8a637ec54a3e5e55760953e2bb187bb0ea4851b869c61258d
2024-12-11 22:55:18 �[32mINFO�[m i.a.c.i.DeclarativeSourceUpdater(apply):46 - Persisted new declarative manifest image version for new major version 2: 2.1.0 with sha sha256:1e0df4ded4ea1e75b762872cb44c2f62458b1851dc76601cb733400465b790d0
2024-12-11 22:55:18 �[32mINFO�[m i.a.c.i.DeclarativeSourceUpdater(apply):46 - Persisted new declarative manifest image version for new major version 3: 3.10.4 with sha sha256:aded5b43dfa140f18c55777205bf654690399c3cf0a51aaf26218eba75274eb5
2024-12-11 22:55:18 �[32mINFO�[m i.a.c.i.DeclarativeSourceUpdater(apply):46 - Persisted new declarative manifest image version for new major version 4: 4.3.0 with sha sha256:538af3f6237799f10458b2b7bb5d69889c4ebae2b7d82b84b7b887fde9c53aa4
2024-12-11 22:55:18 �[32mINFO�[m i.a.b.DefaultPostLoadExecutor(execute):48 - Loaded seed data.
2024-12-11 22:55:18 �[32mINFO�[m i.a.b.DefaultPostLoadExecutor(execute):55 - Auth secret initializer not present. Skipping.
2024-12-11 22:55:18 �[32mINFO�[m i.a.b.Bootloader(load):131 - Finished running post load Execution.
2024-12-11 22:55:18 �[32mINFO�[m i.a.b.Bootloader(load):134 - Finished bootstrapping Airbyte environment.
2024-12-11 22:55:18 �[32mINFO�[m i.m.r.Micronaut(lambda$start$0):118 - Embedded Application shutting down
2024-12-11T22:55:18.429816222Z Thread-16 INFO Loading mask data from '/seed/specs_secrets_mask.yaml
2024-12-11T22:55:18.438887054Z Thread-16 WARN Unable to register Log4j shutdown hook because JVM is shutting down. Using SimpleLogger
@PrestonBlackburn
Copy link
Author

Update

I found this Video (https://www.youtube.com/watch?v=YX8wyrlLKNU), and realized that with a fresh postgres install I needed to manually create the airbyte, temporal, and temporal_visibility databases.

CREATE DATABASE airbyte WITH OWNER = postgres;
CREATE DATABASE temporal WITH OWNER = postgres;
CREATE DATABASE temporal_visibility WITH OWNER = postgres;

(where "OWNER" is the same user set in the secret airbyte-config-secrets

I still get an error from helm, but when I port forward the service

Error: INSTALLATION FAILED: failed post-install: 1 error occurred:
        * timed out waiting for the condition

Note - the RDS instance is using postgres version 13.15

I also updated my helm chart to 1.3.0, but I got the same error until I created the three databases.

However, this still doesn't address the issues related to repointing the external database to a Postgres RDS database that was created from a restore of a postgres database previously running in the airbyte cluster.

@PrestonBlackburn
Copy link
Author

I think part of the issue was that the postgres versions were not matching with RDS, but the Postgres version isn't specified in the docs. Using Postgres 13.15 worked for me.

I was able to bacckup and restore from one instance to another by copying over each database individually:

First manually create the new databases:

CREATE DATABASE airbyte WITH OWNER = postgres;
CREATE DATABASE temporal WITH OWNER = postgres;
CREATE DATABASE temporal_visibility WITH OWNER = postgres;

Then test backing up then restoring from the on prem/old database to the new external database

pg_dump -h <rds db name>.<rds id>.<rds region>.rds.amazonaws.com -U postgres airbyte > airbyte.sql
pg_dump -h <rds db name>.<rds id>.<rds region>.rds.amazonaws.com -U postgres temporal > temporal.sql
pg_dump -h <rds db name>.<rds id>.<rds region>.rds.amazonaws.com -U postgres temporal_visibility > temporal_visibility.sql

# create the dbs first
psql -h <new rds db name>.<rds id>.<rds region>.rds.amazonaws.com -U postgres -d airbyte -f airbyte.sql
psql -h <new rds db name>.<rds id>.<rds region>.rds.amazonaws.com -U postgres -d temporal -f temporal.sql
psql -h <new rds db name>.<rds id>.<rds region>.rds.amazonaws.com -U postgres -d temporal_visibility -f temporal_visibility.sql

@PrestonBlackburn
Copy link
Author

Also Note -
I was trying a different postgres version and it was failing - it looks like it actually takes longer than the default 5m helm timeout to spin up, so I had to run the
helm install release-1 airbyte/airbyte -f values.yaml
command twice. I haven't tried with a longer timeout yet, like - helm install release-1 airbyte/airbyte -f values.yaml --timeout 10m0s

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants