-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update batch processing to store historical datasets for all st…
…atuses except deprecated (#457)
- Loading branch information
1 parent
70e7195
commit ef48282
Showing
7 changed files
with
100 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
# Environment variables for tokens function to run locally | ||
export FEEDS_DATABASE_URL={{FEEDS_DATABASE_URL}} | ||
# Environment variables for tokens function to run locally. Delete this line after rename the file. | ||
FEEDS_DATABASE_URL=postgresql://postgres:postgres@localhost:5432/MobilityDatabase | ||
PROJECT_ID=my-project-id | ||
PUBSUB_TOPIC_NAME=my-topic | ||
DATASTORE_DATASET=my-project-id | ||
DATASTORE_EMULATOR_HOST=localhost:8044 | ||
DATASTORE_EMULATOR_HOST_PATH=localhost:8044/datastore | ||
DATASTORE_HOST=http://localhost:8044 | ||
DATASTORE_PROJECT_ID=my-project-id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/bin/bash | ||
# | ||
# | ||
# MobilityData 2023 | ||
|