Skip to content

Commit

Permalink
Increase storage allocation for ComCam Prompt Processing.
Browse files Browse the repository at this point in the history
The current cache settings allow each pod to store 4 GiB of templates,
<~1 GB of calibs, and ~2 GB of pipeline outputs. 8 GiB provides some
margin for unusually large runs.
  • Loading branch information
kfindeisen committed Dec 3, 2024
1 parent 71d6d42 commit 0adcc60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions applications/prompt-proto-service-lsstcomcam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ Prompt Proto Service is an event driven service for processing camera images. Th
| prompt-proto-service.instrument.skymap | string | `"lsst_cells_v1"` | Skymap to use with the instrument |
| prompt-proto-service.knative.cpuLimit | int | `1` | The maximum cpu cores for the full pod (see `containerConcurrency`). |
| prompt-proto-service.knative.cpuRequest | int | `1` | The cpu cores requested for the full pod (see `containerConcurrency`). |
| prompt-proto-service.knative.ephemeralStorageLimit | string | `"5Gi"` | The maximum storage space allowed for each container (mostly local Butler). This allocation is for the full pod (see `containerConcurrency`) |
| prompt-proto-service.knative.ephemeralStorageRequest | string | `"5Gi"` | The storage space reserved for each container (mostly local Butler). This allocation is for the full pod (see `containerConcurrency`) |
| prompt-proto-service.knative.ephemeralStorageLimit | string | `"8Gi"` | The maximum storage space allowed for each container (mostly local Butler). This allocation is for the full pod (see `containerConcurrency`) |
| prompt-proto-service.knative.ephemeralStorageRequest | string | `"8Gi"` | The storage space reserved for each container (mostly local Butler). This allocation is for the full pod (see `containerConcurrency`) |
| prompt-proto-service.knative.gpu | bool | `false` | GPUs enabled. |
| prompt-proto-service.knative.gpuRequest | int | `0` | The number of GPUs to request for the full pod (see `containerConcurrency`). |
| prompt-proto-service.knative.idleTimeout | int | `900` | Maximum time that a container can send nothing to Knative (seconds). This is only useful if the container runs async workers. If 0, idle timeout is ignored. |
Expand Down
4 changes: 2 additions & 2 deletions applications/prompt-proto-service-lsstcomcam/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ prompt-proto-service:
cpuLimit: 1
# -- The storage space reserved for each container (mostly local Butler).
# This allocation is for the full pod (see `containerConcurrency`)
ephemeralStorageRequest: "5Gi"
ephemeralStorageRequest: "8Gi"
# -- The maximum storage space allowed for each container (mostly local Butler).
# This allocation is for the full pod (see `containerConcurrency`)
ephemeralStorageLimit: "5Gi"
ephemeralStorageLimit: "8Gi"
# -- GPUs enabled.
gpu: false
# -- The number of GPUs to request for the full pod (see `containerConcurrency`).
Expand Down

0 comments on commit 0adcc60

Please sign in to comment.