Pin local Python services to linux/amd64#415
Merged
Merged
Conversation
The vendored libpdfium.so2 is an x86-64 ELF binary, but on Apple Silicon Docker runs the containers natively as arm64, so ctypes cannot load the library. Pin the django/celery services to linux/amd64 (via the &django anchor) to match the vendored binary and the production/Lambda environment. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Problem
Loading
documentcloud/documents/processing/info_and_image/libpdfium.so2fails inside the local Docker containers on Apple Silicon, with a misleading "unable to access the file" error. The file is present — the real issue is an architecture mismatch:libpdfium.so2is an x86-64 ELF binary.ctypes.cdll.LoadLibrarycannot load the wrong-architecture library.Fix
Pin the Django/Celery services to
linux/amd64via the shared&djangoanchor inlocal.yml. This coversdocumentcloud_django,documentcloud_celeryworker, anddocumentcloud_celerybeat, matching the vendored binary and the production/Lambda x86-64 environment.Verification
After rebuilding and recreating the services:
uname -minside the container now reportsx86_64(wasaarch64).cdll.LoadLibrary('.../libpdfium.so2')succeeds.Tradeoff
These three services now run under QEMU emulation on Apple Silicon, so they will be somewhat slower. Other services (postgres, redis, solr, minio) are unchanged and stay native arm64.
🤖 Generated with Claude Code