https://prefect.io logo
#prefect-ui
Title
# prefect-ui
c

Christian Juhl

11/15/2022, 9:12 AM
Hi all, I am not able to see task inputs in the UI even though they are passed to the task. Am I doing something wrong, or could this be a bug? Thanks!
t

Tim-Oliver

11/15/2022, 9:21 AM
I can confirm this:
Copy code
{
  "stride": [],
  "section": [],
  "batch_size": [],
  "overlaps_x": [],
  "overlaps_y": [],
  "patch_size": [],
  "min_overlap": [],
  "max_gradient": [],
  "max_deviation": [],
  "max_magnitude": [],
  "min_patch_size": [],
  "min_peak_ratio": [],
  "integration_config": [
    {
      "inputType": "task_run",
      "id": "e57fced8-0c97-4a88-a0c7-abaf6ac5df34"
    }
  ],
  "min_peak_sharpness": [],
  "reconcile_flow_max_deviation": []
}
I use
.map()
for this task and
dask_jobqueue.SLURMCluster
as task-runner. Maybe this is related to the missing logs from such tasks?
t

Tim Galvin

11/15/2022, 10:52 AM
I have seen this before with a similar setup - a self hosted postgres and prefect orion server, using a DaskTaskExecutor and
dask_jobqueue.SLURMCluster
I am able to see the inputs to the main flow when I start things through an agent though, which I thought was interesting.
Only for the main flow being started by the agent, not any of the tasks
t

Tim-Oliver

11/15/2022, 11:42 AM
I can see the parameters for the main flow as well. However, only the ones that are different from the default values.