Open wjmolina opened 1 year ago
Also see this on 0.44.5 on sync job, Amazon Linux 2 EBS deployment (using docker-compose).
➕ Also seeing this for metrics collected using otel airbyte version 0.45.22
airbyte/metrics-reporter:0.44.10
. Error is being thrown in the metrics reporter.
Anyone who is still experiencing this, I resolved by just using the helm chart configuration and deploying my own otel pods.
I found by following this guide, it resulted in the first reported error. I am guessing there are some unknown version constraints which are causing the issue. Would be helpful in the future if there was a more up to date guide that can be followed.
This was the env generated for the metrics container that worked (airbyte version 0.45.22
).
containers:
- env:
- name: AIRBYTE_VERSION
valueFrom:
configMapKeyRef:
key: AIRBYTE_VERSION
name: airbyte-airbyte-env
- name: DATABASE_PASSWORD
valueFrom:
secretKeyRef:
key: password
name: airbyte-cloudsql-user-password
- name: DATABASE_URL
valueFrom:
configMapKeyRef:
key: DATABASE_URL
name: airbyte-airbyte-env
- name: DATABASE_USER
valueFrom:
secretKeyRef:
key: DATABASE_USER
name: airbyte-airbyte-secrets
- name: CONFIGS_DATABASE_MINIMUM_FLYWAY_MIGRATION_VERSION
valueFrom:
configMapKeyRef:
key: CONFIGS_DATABASE_MINIMUM_FLYWAY_MIGRATION_VERSION
name: airbyte-airbyte-env
- name: METRIC_CLIENT
valueFrom:
configMapKeyRef:
key: METRIC_CLIENT
name: airbyte-airbyte-env
- name: OTEL_COLLECTOR_ENDPOINT
valueFrom:
configMapKeyRef:
key: OTEL_COLLECTOR_ENDPOINT
name: airbyte-airbyte-env
- name: PUBLISH_METRICS
value: 'true'
image: 'airbyte/metrics-reporter:0.40.3'
Steps to Reproduce
I included them above.
Are you willing to submit a PR?
Yes