Xavier LAI
06/18/2025, 9:31 AMSérgio Marçal
06/18/2025, 9:34 AMDavid Rubio Piqueras
06/18/2025, 9:37 AMGeorge Polichronides
06/18/2025, 10:17 AMCenk Batman
06/18/2025, 8:32 PMSoumya B
06/19/2025, 6:34 AMSanthosh Chandrasekharan
06/19/2025, 7:16 AMcurl -X GET "<http://localhost:8000/api/v1/workspaces>" -H "Content-Type: application/json" -H "Authorization: Bearer <Token> | jq .
Response:
<.ore1UoMWinW-7pM09X8qP4nUsV1weuOVGOjDd6qGSm8" | jq .
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 165 100 165 0 0 9152 0 --:--:-- --:--:-- --:--:-- 9166
{
"message": "Forbidden",
"_links": {
"self": {
"href": "/api/v1/workspaces",
"templated": false
}
},
"_embedded": {
"errors": [
{
"message": "Forbidden",
"_links": {},
"_embedded": {}
}
]
}
}
Paul
06/19/2025, 7:32 AMEuan Blackledge
06/19/2025, 9:23 AMJAVA_OPTS
and LOG_LEVEL
to ERROR
everywhere with no luck. I noticed that the workload pods always unset the JAVA_OPTS
env var meaning it was disregarding the value I was setting.
In the end I’ve set up Kyverno in our cluster and used that to inject the env vars into all pods. This shouldn’t be necessary and if anyone else knows a different way then let me know.
Regardless, it works and reduced our hourly log production by over 3 million hits in KibanaGuilherme Banhudo
06/19/2025, 11:17 AMabctl
but as far as I can see, the whole thing is combined. Anyone tried this architecture?Justin Rea
06/19/2025, 1:52 PMSanthosh Chandrasekharan
06/19/2025, 3:00 PMPayload URL: <http://localhost:8000/api/public/v1/sources>
🔧 Payload: {'name': 'Reddit Ads Test Source', 'workspaceId': '<workspace_id>', 'configuration': {'client_id': '<client_id>', 'client_secret': '<client_secret>', 'refresh_token': '<refresh_token>', 'ad_account_id': '<account_id>', 'page_size': 1000}}
📡 Response Status: 422
❌ Source creation failed: 422
📝 Response: {"status":422,"type":"<https://reference.airbyte.com/reference/errors#unprocessable-entity>","title":"unprocessable-entity","detail":"The body of the request was not understood","documentationUrl":null,"data":null}
the sources endpoint expects the payload which confirms to structure in documentation. However the payload expects data and documentationUrl. Am i missing something?Kenneth Fernandez
06/19/2025, 7:58 PMJustin Frye
06/22/2025, 9:26 PMabctl local install --insecure-cookies
, I still get the error
your credentials were correct, but the server failed to set a cookie. You appear to have deployed over HTTP. Make sure you have disabled secure cookies.
This is running on a droplet in Digital Ocean and on ubuntu 24.04LTS
Installed via the same steps as above
I am currently trying the --no-browser method, but I would ideally like to still use a browser to setup the connectors. This is simply a PoC so I am not really looking to setup a cert for this. However, if that is going to resolve my issue-I am all ears and would be extremely grateful if someone had steps to do thisGiacomo Chiarella
06/23/2025, 8:12 AMPranay Gangaram Deokar
06/23/2025, 9:42 AMBernardo Fernandes
06/23/2025, 11:51 AMunknown status code returned: Status 500
│ {"status":500,"type":"<https://reference.airbyte.com/reference/errors>","title":"unexpected-problem","detail":"An
│ unexpected problem has occurred. If this is an error that needs to be
│ addressed, please submit a pull request or github
│ issue.","documentationUrl":null,"data":{"message":"java.util.concurrent.ExecutionException:
│ io.airbyte.data.exceptions.ConfigNotFoundException: config type:
│ STANDARD_WORKSPACE id: cc585b57-9873-44db-823e-4bc3ed02180f"}}
Aneela Saleem
06/23/2025, 2:20 PMPedro Roque
06/23/2025, 9:45 PMglobal:
jobs:
resources:
requests:
memory: 16Gi
limits:
memory: 16Gi
and ran abctl local install --values .airbyte/values.yaml
but it looks like it didn't work
is this the correct way to increase memory?Aaron Robins
06/24/2025, 3:32 AMLouis Gabilly
06/24/2025, 4:05 PMcurl -X POST "<http://airbyte-prod-airbyte-server-svc.airbyte.svc.cluster.local:8001/api/v1/connections/sync>" -H "Accept: application/json" -H "Content-Type: application/json" -d '{"connectionId":"b971a860-254b-4e0a-b4ff-db3e4761f3be"}'
When I try to run the following command to get the job status :
curl --request GET \
--url <http://airbyte-prod-airbyte-server-svc.airbyte.svc.cluster.local:8001/v1/jobs/1518> \
--header 'accept: application/json'
I get a weird HTML saying "You need to enable JavaScript to run this app."
I have tried many settings (I share the last one of them) to setup a Airbyte connection within the Airflow interface, but both Airbyte and HTTP connection keep failing.
airflow.exceptions.AirflowException: HTTPConnectionPool(host='airbyte-prod-airbyte-server-svc.airbyte.svc.cluster.local', port=80): Max retries exceeded with url: /v1/applications/token (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x7ff5616a7590>, 'Connection to airbyte-prod-airbyte-server-svc.airbyte.svc.cluster.local timed out. (connect timeout=None)'))
Can you guys help me see what I am missing ?Alec Sharp
06/25/2025, 8:29 AMIdan Moradov
06/25/2025, 10:15 AMMert Ors
06/25/2025, 10:16 AMOleksandr Riabyi
06/25/2025, 10:42 AM./gradlew :airbyte-integrations:connectors:destination-mysql:build -x test -x integrationTestJava
3. This created the image airbyte/destination-mysql:dev
. I then tagged and pushed it to my public Docker Hub account:
docker tag df5787833601 olria97/testmysql_3:latest
docker push olria97/testmysql_3:latest
4.
However, when I try to add this connector as a destination in the Airbyte UI, I receive the following error:
An unexpected error occurred. Please report this if the issue persists. (HTTP 500)
I suspect it might be related to the image architecture or compatibility. Here’s some info about my setup:
• Python: 3.11.9
• Java: OpenJDK 21 (JAVA_HOME=/opt/homebrew/opt/openjdk@21
)
• Architecture: arm64
• CPU: Apple M3
I also tried passing platform-specific flags during the build:
./gradlew ... -Dos.arch=amd64 -Dos.name=Linux
…but that didn’t seem to help.
Can anyone help me understand what might be going wrong? Should I be building the image differently to support Airbyte on this setup?
Thanks in advance!Mert Karabulut
06/25/2025, 12:00 PMJacob Batt
06/25/2025, 2:35 PMMohd Asad
06/25/2025, 7:58 PMhelm repo add airbyte
<https://airbytehq.github.io/helm-charts>
helm install my-airbyte airbyte/airbyte --version 1.7.0
The core components are running fine. However, when I create a source and destination and trigger a sync, a new replication job pod is created. This pod includes three containers—`source`, destination
, and `orchestrator`—and it requests a total of 4 CPUs, which is too high for my environment.
I attempted to reduce the CPU and memory usage by setting the following values in my `values.yaml`:
global:
jobs:
resources:
requests:
cpu: 250m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi
I also tried setting these environment variables:
JOB_MAIN_CONTAINER_CPU_REQUEST
JOB_MAIN_CONTAINER_CPU_LIMIT
JOB_MAIN_CONTAINER_MEMORY_REQUEST
JOB_MAIN_CONTAINER_MEMORY_LIMIT
Despite these changes, the replication job pods are still requesting 4 CPUs. I’m looking for a reliable way to reduce their resource requests to around
1.5 to 2 CPUs
in total.Jordan Lee
06/26/2025, 4:42 AM