Skip to content

Commit

Permalink
Fix: Resolve CRON value in dataset Cloud Storage Geo Index (#413)
Browse files Browse the repository at this point in the history
* fix: Added partitioning and clustering. Not production ready.

* fix: Works for landsat_index

* fix: Added sentinel-2 pipeline as well as clustering.

* fix: Clean up.

* fix: attempt to resolve pod not started.

* fix: various fixes to pipeline.yaml which caused 'pod not started' issues.  Added bigquery to requirements.txt

* fix: Resolve resource issues in pipeline.yaml.

* fix: Moved schema JSON files as per code review request.

* fix: Exposed variable values into pipeline.yaml as per code review.

* Update pipeline.yaml

* fix: Resolved older reference in cron value.

Co-authored-by: Adler Santos <adlersantos@google.com>
  • Loading branch information
nlarge-google and adlersantos committed Jul 12, 2022
1 parent 9d56363 commit 8903e82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -27,7 +27,7 @@
dag_id="cloud_storage_geo_index.cloud_storage_geo_index",
default_args=default_args,
max_active_runs=1,
schedule_interval="0 6 * * 1",
schedule_interval="* 1 * * 6",
catchup=False,
default_view="graph",
) as dag:
Expand Down
Expand Up @@ -30,7 +30,7 @@ dag:
depends_on_past: False
start_date: '2021-03-01'
max_active_runs: 1
schedule_interval: "0 6 * * 1" # 06:00 on Monday
schedule_interval: "* 1 * * 6" # 06:00 on Monday
catchup: False
default_view: graph

Expand Down

0 comments on commit 8903e82

Please sign in to comment.