Mirrored from GitHub github.com/roostorg/osprey
0

Configure Feed

Select the types of activity you want to include in your feed.

chore(compose): remove bigtable emulator from demo stack (#296)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+1 -36
+1 -1
AGENTS.md
··· 33 33 # Install git hooks 34 34 uv run pre-commit install --install-hooks 35 35 36 - # Start full stack (Kafka, Postgres, Druid, MinIO, Bigtable emulator, worker, UI, UI API) 36 + # Start full stack (Kafka, Postgres, Druid, MinIO, worker, UI, UI API) 37 37 docker compose up -d 38 38 # or 39 39 ./start.sh
-5
docker-compose.test.yaml
··· 47 47 condition: service_healthy 48 48 osprey-kafka-topic-creator: 49 49 condition: service_completed_successfully 50 - bigtable: 51 - condition: service_healthy 52 - bigtable-initializer: 53 - condition: service_completed_successfully 54 50 minio: 55 51 condition: service_healthy 56 52 minio-bucket-init: ··· 76 72 - DD_TRACE_ENABLED=False 77 73 - DD_DOGSTATSD_DISABLE=True 78 74 - OSPREY_RULES_SINK_NUM_WORKERS=1 79 - - BIGTABLE_EMULATOR_HOST=bigtable:8361 80 75 - OSPREY_EXECUTION_RESULT_STORAGE_BACKEND=minio 81 76 - OSPREY_MINIO_ENDPOINT=minio:9000 82 77 - OSPREY_MINIO_ACCESS_KEY=minioadmin
-30
docker-compose.yaml
··· 117 117 - DD_TRACE_ENABLED=False 118 118 - DD_DOGSTATSD_DISABLE=True 119 119 - OSPREY_RULES_SINK_NUM_WORKERS=1 120 - - BIGTABLE_EMULATOR_HOST=bigtable:8361 121 120 - OSPREY_EXECUTION_RESULT_STORAGE_BACKEND=minio 122 121 - OSPREY_MINIO_ENDPOINT=minio:9000 123 122 - OSPREY_MINIO_ACCESS_KEY=minioadmin ··· 158 157 - DD_DOGSTATSD_DISABLE=True 159 158 - OSPREY_RULES_PATH=/osprey/example_rules 160 159 - OSPREY_DISABLE_VALIDATION_EXPORTER=true 161 - - BIGTABLE_EMULATOR_HOST=bigtable:8361 162 160 - SNOWFLAKE_API_ENDPOINT=http://snowflake-id-worker:8088 163 161 - SNOWFLAKE_EPOCH=1420070400000 164 162 - OSPREY_EXECUTION_RESULT_STORAGE_BACKEND=minio ··· 201 199 - EPOCH=1420070400000 202 200 - PORT=8088 203 201 restart: unless-stopped 204 - 205 - bigtable: 206 - hostname: bigtable 207 - container_name: bigtable 208 - image: gcr.io/google.com/cloudsdktool/cloud-sdk:572.0.0@sha256:f67318c2d4719e3d9579ee724dd16b9d028ae916c4919586ae01e9e26d6c1beb 209 - ports: 210 - - "127.0.0.1:8361:8361" 211 - command: > 212 - bash -c " 213 - gcloud beta emulators bigtable start --host-port=0.0.0.0:8361 --project=osprey-dev 214 - " 215 - healthcheck: 216 - test: ["CMD", "bash", "-c", "pgrep -f cbtemulator > /dev/null || exit 1"] 217 - interval: 10s 218 - timeout: 5s 219 - retries: 5 220 - start_period: 60s 221 - restart: unless-stopped 222 - 223 - bigtable-initializer: 224 - container_name: bigtable-initializer 225 - image: gcr.io/google.com/cloudsdktool/cloud-sdk:572.0.0@sha256:f67318c2d4719e3d9579ee724dd16b9d028ae916c4919586ae01e9e26d6c1beb 226 - depends_on: 227 - bigtable: 228 - condition: service_healthy 229 - volumes: 230 - - ./init-bigtable.sh:/init-bigtable.sh 231 - command: ["/bin/bash", "/init-bigtable.sh"] 232 202 233 203 # Optional test data generator - run with: 234 204 # docker compose --profile test_data up osprey-kafka-test-data-producer -d