Skip to content

Commit

Permalink
fix(sat-etl): Avoid mergerfs for mounted filesystem (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
devsjc authored Sep 18, 2024
1 parent b2b0397 commit e747049
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion local_archives/nwp/ceda/ceda_global.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
description="".join((
"Zarr archive of NWP data from the Met Office's Global model. ",
"Sourced via FTP from CEDA ",
"(https://catalogue.ceda.ac.uk/uuid/86df725b793b4b4cb0ca0646686bd783)",
"(https://catalogue.ceda.ac.uk/uuid/86df725b793b4b4cb0ca0646686bd783). ",
"This asset is updated monthly, and surfaced as a Zarr Directory Store ",
"for each month. It is downloaded using the nwp-consumer ",
"docker image, currently from the 'major-refactor' branch ",
Expand Down
4 changes: 2 additions & 2 deletions local_archives/sat/eumetsat/eumetsat_iodc.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ def iodc_monthly(
"-m",
it.strftime("%Y-%m"),
"--path",
f"{ZARR_FOLDER}/sat/eumetsat/india",
f"/store_a_0/sat/eumetsat/india",
"--rm",
],
env={
"EUMETSAT_CONSUMER_KEY": os.environ["EUMETSAT_CONSUMER_KEY"],
"EUMETSAT_CONSUMER_SECRET": os.environ["EUMETSAT_CONSUMER_SECRET"],
},
container_kwargs={
"volumes": [f"{ZARR_FOLDER}/sat/eumetsat/india:{ZARR_FOLDER}/sat/eumetsat/india"],
"volumes": [f"/store_a_0/sat/eumetsat/india:/store_a_0/sat/eumetsat/india"],
},
context=context,
).get_results()
Expand Down

0 comments on commit e747049

Please sign in to comment.