Browse Source
REAL ROOT CAUSE: --abort-on-container-exit stops ALL containers immediately when the test container exits, including the filer. So we couldn't download files because filer was already stopped. SOLUTION: Run tests in detached mode, wait for completion, then download while filer is still running. Changes: 1. docker compose up -d spark-tests (detached mode) 2. docker wait seaweedfs-spark-tests (wait for completion) 3. docker inspect to get exit code 4. docker compose logs to show test output 5. Download file while all services still running 6. Then exit with test exit code Improved grep pattern to be more specific: part-[a-f0-9-]+\.c000\.snappy\.parquet This MUST work - filer is guaranteed to be running during download!pull/7526/head
1 changed files with 25 additions and 12 deletions
Loading…
Reference in new issue