Skip to content
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

DM-46178: Use new query system in Prompt Processing #4151

Merged
merged 1 commit into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,4 @@ prompt-proto-service:
endpointUrl: https://usdf-rsp-dev.slac.stanford.edu/sasquatch-rest-proxy
auth_env: false

debug:
# A cache efficiency workaround breaks on RC2 tests; see DM-43205.
cacheCalibs: false

fullnameOverride: "prompt-proto-service-hsc"
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,4 @@ prompt-proto-service:
endpointUrl: https://usdf-rsp-dev.slac.stanford.edu/sasquatch-rest-proxy
auth_env: false

debug:
# A cache efficiency workaround breaks when mixing observing dates; see DM-43205, DM-43913.
cacheCalibs: false

fullnameOverride: "prompt-proto-service-latiss"
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,4 @@ prompt-proto-service:
endpointUrl: https://usdf-rsp-dev.slac.stanford.edu/sasquatch-rest-proxy
auth_env: false

debug:
# A cache efficiency workaround breaks when mixing observing dates; see DM-43205, DM-43913.
cacheCalibs: false

fullnameOverride: "prompt-proto-service-lsstcomcam"
1 change: 0 additions & 1 deletion charts/prompt-proto-service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ Event-driven processing of camera images
| cache.patchesPerImage | int | `4` | A factor by which to multiply `baseSize` for templates and other patch-based datasets. |
| cache.refcatsPerImage | int | `4` | A factor by which to multiply `baseSize` for refcat datasets. |
| containerConcurrency | int | `1` | The number of Knative requests that can be handled simultaneously by one container |
| debug.cacheCalibs | bool | `true` | Whether or not calibs should be cached between runs of a pod. This is a temporary flag that should only be unset in specific circumstances, and only in the development environment. |
| debug.exportOutputs | bool | `true` | Whether or not pipeline outputs should be exported to the central repo. This flag does not turn off APDB writes or alert generation; those must be handled at the pipeline level or by setting up an alternative destination. |
| fullnameOverride | string | `"prompt-proto-service"` | Override the full name for resources (includes the release name) |
| image.pullPolicy | string | `IfNotPresent` in prod, `Always` in dev | Pull policy for the PP image |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,6 @@ spec:
value: {{ .Values.cache.refcatsPerImage | toString | quote }}
- name: PATCHES_PER_IMAGE
value: {{ .Values.cache.patchesPerImage | toString | quote }}
- name: DEBUG_CACHE_CALIBS
value: {{ if .Values.debug.cacheCalibs }}'1'{{ else }}'0'{{ end }}
- name: DEBUG_EXPORT_OUTPUTS
value: {{ if .Values.debug.exportOutputs }}'1'{{ else }}'0'{{ end }}
volumeMounts:
Expand Down
3 changes: 0 additions & 3 deletions charts/prompt-proto-service/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,6 @@ fullnameOverride: "prompt-proto-service"
containerConcurrency: 1

debug:
# -- Whether or not calibs should be cached between runs of a pod.
# This is a temporary flag that should only be unset in specific circumstances, and only in the development environment.
cacheCalibs: true
# -- Whether or not pipeline outputs should be exported to the central repo.
# This flag does not turn off APDB writes or alert generation; those must be handled at the pipeline level or by setting up an alternative destination.
exportOutputs: true
Expand Down
Loading