File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ jobs:
177177 EXECUTOR_REPLICAS : ${{ github.event.inputs.executor_replicas || '4' }}
178178 SPIDAPTER_APP_MEMORY_LIMIT : ${{ github.event.inputs.app_memory_limit || '16Gi' }}
179179 SPIDAPTER_EXECUTOR_MEMORY_LIMIT : ${{ github.event.inputs.executor_memory_limit || '16Gi' }}
180+ SPIDAPTER_ORGANIZATION_TAG : ' spicehq'
180181 CUSTOM_IMAGE : ${{ github.event.inputs.custom_image || '' }}
181182 run : |
182183 set -euo pipefail
@@ -225,6 +226,7 @@ jobs:
225226
226227 ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_APP_MEMORY_LIMIT=${SPIDAPTER_APP_MEMORY_LIMIT}"
227228 ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_EXECUTOR_MEMORY_LIMIT=${SPIDAPTER_EXECUTOR_MEMORY_LIMIT}"
229+ ADAPTER_DOCKER_OPTS="${ADAPTER_DOCKER_OPTS} -e SPIDAPTER_ORGANIZATION_TAG"
228230
229231 # Parse custom image into registry, name, and tag for spidapter.
230232 # Expected format: registry/image:tag (e.g. ghcr.io/spiceai/spiceai-dev:spicebench-sf10)
Original file line number Diff line number Diff line change @@ -656,9 +656,7 @@ async fn run_checkpoint_validation(
656656 // Phase 0: validate table row counts first as a fast correctness probe.
657657 // Row count queries are cheap and immediately surface data loss/duplication
658658 // without waiting for expensive analytical queries to converge.
659- println ! (
660- "Checkpoint {checkpoint_idx}: validating table row counts before probing queries" ,
661- ) ;
659+ println ! ( "Checkpoint {checkpoint_idx}: validating table row counts before probing queries" , ) ;
662660 {
663661 let mut row_count_ticker = tokio:: time:: interval ( probe_period) ;
664662 let mut row_count_attempt = 0u64 ;
You can’t perform that action at this time.
0 commit comments