You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to test pangeo-forge-runner by writing a zarr to disk using the direct runner on Denali, but I'm running into issues.
The recipe is on the us-ssebop branch of this repo. Would you take a look before I bug their dev?
Here's my config.py
BUCKET_PREFIX = "test_run/"
c.Bake.bakery_class = "pangeo_forge_runner.bakery.local.LocalDirectBakery"
c.Bake.feedstock_subdir = 'recipes/us-ssebop'
c.TargetStorage.fsspec_class = "fsspec.implementations.local.LocalFileSystem"
c.TargetStorage.root_path = f"{BUCKET_PREFIX}/test_run/output"
c.TargetStorage.fsspec_args = {}
c.InputCacheStorage.fsspec_class = c.TargetStorage.fsspec_class
c.InputCacheStorage.fsspec_args = c.TargetStorage.fsspec_args
# Input data cache should *not* be partitioned by job id, as we want to get the datafile
# from the source only once
c.InputCacheStorage.root_path = f"{BUCKET_PREFIX}/cache/input"
c.MetadataCacheStorage.fsspec_class = c.TargetStorage.fsspec_class
c.MetadataCacheStorage.fsspec_args = c.TargetStorage.fsspec_args
# Metadata cache should be per job, as kwargs changing can change metadata
#c.MetadataCacheStorage.root_path = f"{BUCKET_PREFIX}/{{job}}/cache/metadata"
c.MetadataCacheStorage.root_path = f"{BUCKET_PREFIX}/test_run/cache/metadata"
File "/home/thodson/.local/miniconda3/envs/pangeo-forge/lib/python3.11/site-packages/apache_beam/runners/worker/sdk_worker.py", line 194, in __init__
grpc.channel_ready_future(self._control_channel).result(timeout=60)
File "/home/thodson/.local/miniconda3/envs/pangeo-forge/lib/python3.11/site-packages/grpc/_utilities.py", line 162, in result
self._block(timeout)
File "/home/thodson/.local/miniconda3/envs/pangeo-forge/lib/python3.11/site-packages/grpc/_utilities.py", line 106, in _block
raise grpc.FutureTimeoutError()
grpc.FutureTimeoutError
The text was updated successfully, but these errors were encountered:
@rsignell-usgs,
Trying to test pangeo-forge-runner by writing a zarr to disk using the direct runner on Denali, but I'm running into issues.
The recipe is on the
us-ssebop
branch of this repo. Would you take a look before I bug their dev?Here's my
config.py
I run the following
which generates lots of messages ending in
The text was updated successfully, but these errors were encountered: