## Context
Docker image qdrant/qdrant:v1.4.1 fails to start on an ARM64 QNAP NAS with: '[jemalloc]: Unsupported system page size', 'memory allocation of 5 bytes failed', then abort. Same failure reported on Kunpeng 920 ARM servers and Raspberry Pi 5.
## Verified resolution
Root cause (maintainer generall): some ARM64 systems run kernels with a non-4KB page size (16KB/64KB), while the bundled jemalloc was compiled for a fixed page size. Fixes: rebuild the image with jemalloc removed (maintainer pointed to the jemalloc lines in src/main.rs), use a community-built no-jemalloc image for affected boards (e.g. y0mg/qdrant-raspberry-pi), or adjust the kernel page size. Closed as completed after bounty PR #3945 made jemalloc compilation optional per architecture.