itay livni
02/08/2020, 4:35 PMKillworker and dask-worker: error: unrecognized arguments: <tcp://127.0.0.5:8786> with the second error always being any arguments I give the scheduler. Any thoughts on how to profile the DaskExecutor?Chris White
itay livni
02/08/2020, 4:38 PMexecutor = DaskExecutor(address="<tcp://127.0.0.5:8786>", debug=True) or debug=Falseitay livni
02/08/2020, 4:39 PMif make_nodes_executor=='dask':
from prefect.engine.executors import DaskExecutor
#client = Client()
executor = DaskExecutor(address="<tcp://127.0.0.5:8786>", debug=True) # Does not work
else:# make_nodes_executor=="local":
from prefect.engine.executors import LocalExecutor
executor = LocalExecutor()Chris White
itay livni
02/08/2020, 5:21 PMFlow within a LOOP task . That task is triggered by another flow run locally.Chris White
itay livni
02/08/2020, 5:27 PMChris White
itay livni
02/08/2020, 5:33 PMitay livni
02/08/2020, 5:35 PMChris White
itay livni
02/08/2020, 5:39 PMmultiprocessing or some other library/method?itay livni
02/08/2020, 5:39 PMitay livni
02/08/2020, 7:08 PMgenerate_knowledge_graph is put together. It works but.. running it in the cloud or using storage does not. Basically anything that has a cloudpickle fails. I need to learn how to chain and update flows.Chris White
itay livni
02/08/2020, 9:30 PM