stafftastic / jitsu-chart

MIT License
14 stars 7 forks source link

Sync Tasks failing #51

Closed canob closed 1 month ago

canob commented 1 month ago

Hi everyone,

After installed Jitsu with this helm chart, I created a RSS Connected service, and added one destination, PostgreSQL.

The problem is that the Sync Tasks are failing:

2024-10-17 01:21:58.520 INFO [jitsu] Sidecar. command: read. syncId: cm2ckwjeq0006kk0aa7ywojrk-njq0-9bos-xwIW9h, taskId: 8e40ebd4-8aed-484e-bb4e-b619dec687e6, package: airbyte/source-rss:1.0.22 startedAt: 2024-10-17T01:21:47Z
2024-10-17 01:21:58.566 ERROR [jitsu] Error loading destination config: destination config file /config/destinationConfig.json doesn't exist
2024-10-17 01:21:58.571 ERROR [jitsu] READ FAILED: ERROR: Error loading destination config: destination config file /config/destinationConfig.json doesn't exist

I tried with other connected service (an API) too, with the same error.

Is there a simple way to troubleshoot what is going on?

Thanks in advance for your help.

echozio commented 1 month ago

Hi, I believe this might be due to the sync sidecar image defaulting to the latest tag as described in #47 Current workaround (for chart version v1.9.2) is to manually pin it to the same version as the other components:

syncctl:
  env:
    - name: SYNCCTL_SIDECAR_IMAGE
      value: jitsucom/sidecar:2.7.0

This should be fixed by #50 once it's merged.

canob commented 1 month ago

Perfect, thanks @echozio , worked after add the env variables to syncctl.

echozio commented 1 month ago

Awesome. Glad to hear it!