-
Notifications
You must be signed in to change notification settings - Fork 92
feat(clp-package): Add a Spider-based Docker Compose deployment for Spider-orchestrated compression. #2479
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
20001020ycx
merged 6 commits into
y-scope:main
from
20001020ycx:feat/spider-compose-integration
Aug 21, 2026
Merged
feat(clp-package): Add a Spider-based Docker Compose deployment for Spider-orchestrated compression. #2479
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7091baf
feat(deployment): add Spider Compose integration
20001020ycx de6cf6c
feat(deployment): Keep the Celery compression services in the Spider …
20001020ycx e4d78ac
feat(deployment): Make the CLP Spider worker image reference overrida…
20001020ycx daada18
Apply suggestions from code review
20001020ycx 893d418
refactor(deployment): Drop the Spider Compose download from this PR.
20001020ycx 353a23f
Merge branch 'main' into feat/spider-compose-integration
20001020ycx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| services: | ||
| spider-worker: | ||
| image: >- | ||
| ${CLP_SPIDER_WORKER_CONTAINER_IMAGE_REF:-ghcr.io/y-scope/clp/clp-spider-worker:main} | ||
| user: "${CLP_FIRST_PARTY_SERVICE_UID_GID:-1000:1000}" | ||
| environment: | ||
| CLP_CONFIG_PATH: "/etc/clp-config.yaml" | ||
| CLP_DB_PASS: "${CLP_DB_PASS:?Please set a value.}" | ||
| CLP_DB_USER: "${CLP_DB_USER:-clp-user}" | ||
| volumes: | ||
| - type: "bind" | ||
| source: "${CLP_LOGS_DIR_HOST:-./var/log}/.clp-config.yaml" | ||
| target: "/etc/clp-config.yaml" | ||
| read_only: true | ||
|
20001020ycx marked this conversation as resolved.
|
||
| - "${CLP_STAGED_ARCHIVE_OUTPUT_DIR_HOST:-empty}:/var/data/staged-archives" | ||
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,98 @@ | ||
| name: "clp-package-spider" | ||
|
|
||
| include: | ||
| - "docker-compose.utils.yaml" | ||
| - path: | ||
| - "usr/share/spider-compose/compose.yaml" | ||
| - "compose.clp-spider.yaml" | ||
|
|
||
| services: | ||
| database: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "database" | ||
|
|
||
| db-table-creator: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "db-table-creator" | ||
|
|
||
| queue: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "queue" | ||
|
|
||
| redis: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "redis" | ||
|
|
||
| results-cache: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "results-cache" | ||
|
|
||
| results-cache-indices-creator: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "results-cache-indices-creator" | ||
|
|
||
| compression-scheduler: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "compression-scheduler" | ||
|
|
||
| compression-worker: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "compression-worker" | ||
|
|
||
| compression-coordinator: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "compression-coordinator" | ||
|
|
||
| webui: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "webui" | ||
|
|
||
| garbage-collector: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "garbage-collector" | ||
|
|
||
| api-server: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "api-server" | ||
|
|
||
| query-scheduler: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "query-scheduler" | ||
|
|
||
| query-worker: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "query-worker" | ||
|
|
||
| reducer: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "reducer" | ||
|
|
||
| mcp-server: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "mcp-server" | ||
|
|
||
| log-ingestor: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "log-ingestor" | ||
|
|
||
| otel-collector: | ||
| extends: | ||
| file: "docker-compose-all.yaml" | ||
| service: "otel-collector" |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.