Skip to content

Commit

Permalink
Update recipe.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jbusecke authored Jun 5, 2024
1 parent 54cbb34 commit c364cc1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions feedstock/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def expand(self, pcoll: beam.PCollection) -> beam.PCollection:
| CheckpointFileTransfer(
transfer_target=cache_target,
max_executors=10,
concurrency_per_executor=5,
concurrency_per_executor=2,
initial_backoff=3.0,
fsspec_sync_patch=False,# works but is slow. Testing with fsspec and new backoff retry
)
Expand Down Expand Up @@ -240,9 +240,8 @@ def expand(self, pcoll: beam.PCollection) -> beam.PCollection:
beam.Create(lowres_mlo_pattern.items())
| CheckpointFileTransfer(
transfer_target=cache_target,
max_executors=10,
concurrency_per_executor=5,
initial_backoff=3.0,
max_executors=5,
concurrency_per_executor=3,
fsspec_sync_patch=False,# works but is slow. Testing with fsspec and new backoff retry
)
| OpenURLWithFSSpec(cache=None, fsspec_sync_patch=True)
Expand Down

0 comments on commit c364cc1

Please sign in to comment.