Skip to content

Commit

Permalink
Merge branch 'main' into limit-concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
jbusecke committed Jun 4, 2024
2 parents cf7833a + 5010cef commit 82882c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions feedstock/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ async def get_recipe_inputs():
f"Creating {iid}" >> beam.Create(pattern.items())
| CheckpointFileTransfer(
transfer_target=cache_target,
max_executors=2,
concurrency_per_executor=4,
# fsspec_sync_patch=True,
max_executors=1,
concurrency_per_executor=2,
# fsspec_sync_patch=True,
)
| OpenURLWithFSSpec(cache=None, fsspec_sync_patch=True)
# do not specify file type to accomodate both ncdf3 and ncdf4
Expand Down

0 comments on commit 82882c6

Please sign in to comment.