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
05/04/2021, 7:56 PMAndrew Hannigan
05/04/2021, 7:57 PMKevin Kho
05/04/2021, 7:58 PMAndrew Hannigan
05/04/2021, 8:00 PMKevin Kho
05/04/2021, 8:03 PMAndrew Hannigan
05/04/2021, 8:03 PMKevin Kho
05/04/2021, 8:09 PMAndrew Hannigan
05/04/2021, 8:09 PMKevin Kho
05/04/2021, 8:10 PMAndrew 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}}}]
Kevin Kho
05/05/2021, 12:31 AMZach Angell
05/05/2021, 2:03 PMflow.register()
, cli command, etc)
⢠How are you running the flow?Andrew Hannigan
05/05/2021, 10:46 PMZach Angell
05/06/2021, 2:58 PMstorage
are you using for the flow?Andrew Hannigan
05/09/2021, 6:36 PMZach Angell
05/11/2021, 3:47 PMAndrew Hannigan
05/11/2021, 3:47 PMZach Angell
05/11/2021, 3:48 PMAndrew Hannigan
05/11/2021, 11:35 PMZach Angell
05/12/2021, 1:44 AMAndrew Hannigan
05/12/2021, 6:03 PMtimestamp = prefect.context.get('scheduled_start_time')
flow_run_id = prefect.context.get('flow_run_id')
Zach Angell
05/12/2021, 7:19 PMAndrew Hannigan
05/12/2021, 7:20 PMZach Angell
05/12/2021, 7:32 PMDaskExecutor
configuration for the flow?
e.g.
flow.executor = DaskExecutor(
cluster_class="dask_cloudprovider.aws.FargateCluster",
cluster_kwargs={"n_workers": 4, "image": "my-prefect-image"},
)