Stuck on the start line #3068
Replies: 2 comments
-
Also my log contains
|
Beta Was this translation helpful? Give feedback.
-
Hi @waterworthd-cim 👋 Thanks for reporting your experience — sounds like you’ve run into a few startup issues. Let’s walk through some suggestions to help you get OpenLineage running smoothly with Docker + Colima on macOS M3. ✅ 1. ./docker/up.sh only working with --no-web Suggestions: Try increasing Docker's allocated memory/CPU via Colima: Alternatively, run in two steps:
❌ 2. 403 Forbidden when posting lineage events The namespace doesn't exist yet Marquez uses RBAC/auth controls — and in some configurations, default policies may block API access Fix: Try first registering the namespace and job using the proper API calls, or run the seeding script:
If you're still getting 403 after seeding, check for: Token/auth headers required (check config or any reverse proxy) Logs in marquez-api — sometimes stack traces hint at missing permissions or bad payloads 🔁 3. Endless stack traces & OpenSearch crash
Exit code 137 usually means “Out Of Memory” (OOM) — OpenSearch needs a fair amount of RAM. Suggestions: Again, increase Colima memory: Or disable the search container temporarily by editing docker-compose.yml and commenting out marquez-search 🧪 Summary Checklist Use --no-web then --web as a workaround for DB timing Make sure namespace/job exist before sending lineage events Check marquez-api logs for permission or validation errors Temporarily disable OpenSearch if not essential for testing Let me know if you'd like a custom minimal docker-compose.override.yml for testing without search & web. Hope this helps you get past the starting line! 🚀 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm interested in marquez/open-lineage but I cannot get it to work. I'm working through the "getting started" (https://openlineage.io/getting-started) but haven't made it very far. Any help appreciated
I'm running on macos (m3) using colima. The first issue was
./docker/up.sh
failed until I ran./docker/up.sh --no-web
to create the database. I don't think this is expected but looked to me like there was some sort of race - but I didn't copy the error message.Now
./docker/up.sh
seems to work but every time I try and create a job I get a 403?I also tried
./docker/up.sh --seed
and now there's a never ending loop of stack traces in the logsBeta Was this translation helpful? Give feedback.
All reactions