Andrew Hannigan
05/04/2021, 7:54 PMFailed to retrieve task state with error: ClientError([{'path': ['get_or_create_task_run_info'], 'message': 'Expected type UUID!, found ""; Could not parse UUID: ', 'extensions': {'code': 'INTERNAL_SERVER_ERROR', 'exception': {'message': 'Expected type UUID!, found ""; Could not parse UUID: ', 'locations': [{'line': 2, 'column': 101}], 'path': None}}}])
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/prefect/engine/cloud/task_runner.py", line 154, in initialize_run
task_run_info = self.client.get_task_run_info(
File "/usr/local/lib/python3.8/dist-packages/prefect/client/client.py", line 1399, in get_task_run_info
result = self.graphql(mutation) # type: Any
File "/usr/local/lib/python3.8/dist-packages/prefect/client/client.py", line 319, in graphql
raise ClientError(result["errors"])
prefect.utilities.exceptions.ClientError: [{'path': ['get_or_create_task_run_info'], 'message': 'Expected type UUID!, found ""; Could not parse UUID: ', 'extensions': {'code': 'INTERNAL_SERVER_ERROR', 'exception': {'message': 'Expected type UUID!, found ""; Could not parse UUID: ', 'locations': [{'line': 2, 'column': 101}], 'path': None}}}]
Kevin Kho
Andrew Hannigan
05/04/2021, 7:57 PMAndrew Hannigan
05/04/2021, 7:57 PMKevin Kho
Kevin Kho
Andrew Hannigan
05/04/2021, 8:00 PMKevin Kho
Andrew Hannigan
05/04/2021, 8:00 PMAndrew Hannigan
05/04/2021, 8:03 PMAndrew Hannigan
05/04/2021, 8:03 PMKevin Kho
Andrew Hannigan
05/04/2021, 8:03 PMAndrew Hannigan
05/04/2021, 8:04 PMAndrew Hannigan
05/04/2021, 8:04 PMAndrew Hannigan
05/04/2021, 8:05 PMAndrew Hannigan
05/04/2021, 8:09 PMKevin Kho
Andrew Hannigan
05/04/2021, 8:09 PMAndrew Hannigan
05/04/2021, 8:10 PMKevin Kho
Andrew Hannigan
05/05/2021, 12:30 AMFailed to retrieve task state with error: ClientError([{'path': ['get_or_create_task_run_info'], 'message': 'Expected type UUID!, found ""; Could not parse UUID: ', 'extensions': {'code': 'INTERNAL_SERVER_ERROR', 'exception': {'message': 'Expected type UUID!, found ""; Could not parse UUID: ', 'locations': [{'line': 2, 'column': 101}], 'path': None}}}])
Traceback (most recent call last):
File "/usr/local/lib/python3.8/dist-packages/prefect/engine/cloud/task_runner.py", line 154, in initialize_run
task_run_info = self.client.get_task_run_info(
File "/usr/local/lib/python3.8/dist-packages/prefect/client/client.py", line 1399, in get_task_run_info
result = self.graphql(mutation) # type: Any
File "/usr/local/lib/python3.8/dist-packages/prefect/client/client.py", line 319, in graphql
raise ClientError(result["errors"])
prefect.utilities.exceptions.ClientError: [{'path': ['get_or_create_task_run_info'], 'message': 'Expected type UUID!, found ""; Could not parse UUID: ', 'extensions': {'code': 'INTERNAL_SERVER_ERROR', 'exception': {'message': 'Expected type UUID!, found ""; Could not parse UUID: ', 'locations': [{'line': 2, 'column': 101}], 'path': None}}}]
Andrew Hannigan
05/05/2021, 12:30 AMKevin Kho
Zach Angell
flow.register()
, cli command, etc)
⢠How are you running the flow?Andrew Hannigan
05/05/2021, 10:46 PMZach Angell
Zach Angell
storage
are you using for the flow?Andrew Hannigan
05/09/2021, 6:36 PMAndrew Hannigan
05/11/2021, 3:03 PMZach Angell
Andrew Hannigan
05/11/2021, 3:47 PMZach Angell
Andrew Hannigan
05/11/2021, 11:35 PMZach Angell
Andrew Hannigan
05/12/2021, 6:03 PMtimestamp = prefect.context.get('scheduled_start_time')
flow_run_id = prefect.context.get('flow_run_id')
Andrew Hannigan
05/12/2021, 7:05 PMAndrew Hannigan
05/12/2021, 7:15 PMZach Angell
Andrew Hannigan
05/12/2021, 7:20 PMZach Angell
DaskExecutor
configuration for the flow?
e.g.
flow.executor = DaskExecutor(
cluster_class="dask_cloudprovider.aws.FargateCluster",
cluster_kwargs={"n_workers": 4, "image": "my-prefect-image"},
)