Skip to content

Commit

Permalink
Merge pull request #4151 from lsst-sqre/tickets/DM-46178
Browse files Browse the repository at this point in the history
DM-46178: Use new query system in Prompt Processing
  • Loading branch information
kfindeisen authored Jan 31, 2025
2 parents d12700b + 2302676 commit 1951bfd
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 18 deletions.
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

0 comments on commit 1951bfd

Please sign in to comment.