fix: resolve examples startup failures on arm64#7
Open
deangoodmanson wants to merge 1 commit intodevelopfrom
Open
fix: resolve examples startup failures on arm64#7deangoodmanson wants to merge 1 commit intodevelopfrom
deangoodmanson wants to merge 1 commit intodevelopfrom
Conversation
- Use pgvector/pgvector:pg17 image so the vector extension is available - Add platform: linux/amd64 for py-std-worker to suppress emulation warning - Remove ivfflat index on document_chunks (vector(3072) exceeds 2000-dim limit) - Fix health CLI to parse flat "ok" strings from readiness endpoint Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
pgvector/pgvector:pg17image for thepostgresservice so thevectorextension is available when running./docker up --examplesplatform: linux/amd64forpy-std-workerto suppress the emulation warning on Apple Siliconivfflatindex ondocument_chunks—vector(3072)(OpenAI text-embedding-3-large) exceeds pgvector's 2000-dimension index limit; sequential scan is fine for the examples dataset"ok"strings from/health/ready— the readiness endpoint returns{"database": "ok"}but the parser expected{"database": {"status": "healthy"}}, causingdatabaseto always show as unknownTest plan
./docker clean && ./docker up --examplesstarts without errors on arm64 (Apple Silicon)./docker exec kruxiaflow /kruxiaflow healthreports✅ database(not❓ unknown)cargo test -p kruxiaflow healthpassesNotes
The
orchestratorcheck in the health CLI still reports❓ Not reported in readiness check— this is a pre-existing gap (the orchestrator runs as an internal Tokio task with no health reporting intoAppState). Tracked separately.🤖 Generated with Claude Code