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

🚀 Update to 2023.9.20-rc.1 #316

Merged
merged 1 commit into from
Sep 22, 2023
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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2023.7.17
2023.9.20-rc.1
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ services:
volumes: *default-volumes
environment:
- MAPS_API_V3_RESOURCE_URL_TEMPLATE_NEW=https://$${host}/api/$${path}
- NODE_OPTIONS=--max-old-space-size=1875
- NODE_OPTIONS=--max-old-space-size=3072
restart: unless-stopped
logging:
driver: "local"
Expand Down Expand Up @@ -196,7 +196,7 @@ services:
env_file:
- .env
environment:
- NODE_OPTIONS=--max-old-space-size=2048
- NODE_OPTIONS=--max-old-space-size=4096
command: node -r /usr/src/app/tsconfig-paths-bootstrap.js /usr/src/app/dist/app/subscriber/index.js
restart: unless-stopped
logging:
Expand Down
10 changes: 9 additions & 1 deletion env.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -103,17 +103,25 @@ IMPORT_WORKER_PROCESSING_DIR=/tmp/import-worker
IMPORT_PUBSUB_TENANT_BUS_TOPIC=projects/${SELFHOSTED_GCP_PROJECT_ID}/topics/tenant-bus
IMPORT_PUBSUB_TENANT_BUS_SUBSCRIPTION=projects/${SELFHOSTED_GCP_PROJECT_ID}/subscriptions/tenant-bus-import-sub

### GDAL
IMPORT_GDAL_OGR2OGR=
IMPORT_GDAL_OGRINFO=
IMPORT_GDAL_GDALINFO=

## CDN Invalidator config
CDN_INVALIDATOR_BACKEND_ENGINE=varnish
CDN_INVALIDATOR_OPERATION_MODE=surrogate-key
CDN_INVALIDATOR_SUBSCRIBER_SUBSCRIPTION=projects/${SELFHOSTED_GCP_PROJECT_ID}/subscriptions/event-bus-cdn-inval-sub
CDN_INVALIDATOR_TENANT_ID=${SELFHOSTED_TENANT_ID}

## SQL worker config

MAPS_API_V3_PUBSUB_TENANT_BUS_TOPIC=projects/${SELFHOSTED_GCP_PROJECT_ID}/topics/tenant-bus
MAPS_API_V3_PUBSUB_TENANT_BUS_SUBSCRIPTION=projects/${SELFHOSTED_GCP_PROJECT_ID}/subscriptions/tenant-bus-sql-worker-sub

## DW Consumption Tracking (compute-sub)
COMPUTE_PUBSUB_DATA_UPDATES_SUBSCRIPTION=projects/${SELFHOSTED_GCP_PROJECT_ID}/subscriptions/data-updates-compute-sub
# Note: compute-sub also uses WORKSPACE_PUBSUB_DATA_UPDATES_TOPIC

# ERROR_RESPONSE_STACK_TRACE
MAPS_API_V3_ERROR_RESPONSE_STACK_TRACE=false
WORKSPACE_ERROR_RESPONSE_STACK_TRACE=false
Expand Down
Loading