https://prefect.io logo
l

Luca Schneider

11/16/2022, 10:44 AM
Hi all, I’m struggling on using the radar and would need your guidance about it. My flows are running fine, but it seems that no radar is being displayed (see first picture), while I have a functional radar for a subflow being called (see second picture). The following flow relies on some data being passed downstream. Let me know how i can get a working Radar for it please. Thanks
Copy code
@flow
def flow():

   f1 = subflow1()
   f2 = subflow2()

   data1 = task1.submit(wait_for=[f1, f2])
   data2 = task2().submit()
   data3 = task3.submit(data1, data2, wait_for=[data1, data2])

    if data3.result():
       data4 = task4.submit(data3, wait_for=[data3])
       task5.submit(data4, wait_for=[data4])
    else:
        pass
m

Mathijs Carlu

11/16/2022, 10:51 AM
What happens if you go to
/flow-runs/flow-run/{FlowRunId}/radar
? If you're using cloud, prepend
/account/{account-uuid}/workspace/{workspace-uuid}
. Or go to the flow-run page and append /radar to the URI šŸ˜›
l

Luca Schneider

11/16/2022, 11:33 AM
Nada as you can see
FYI, I’m running prefect 2.6.7 on openshift. I dont really know where the issue comes from ? Where are radar being stored ? should I reset postgres ?
m

Mathijs Carlu

11/16/2022, 12:06 PM
Does executing the API call directly provide more info?
m

Mason Menges

11/16/2022, 5:22 PM
Hey @Luca Schneider This might be worth opening an issue for on our repo, https://github.com/PrefectHQ/prefect/issues, including the details of your Orion configuration as well as the Code example for the flow, This could be a caching thing and reset the DB might help if you haven't tried that already but it sounds like this is consistently reproducible so definitely could be a bug
l

Luca Schneider

11/16/2022, 8:20 PM
The graph API call seems ok
it seems to be a front-end issue. Has the front-end been tested for microsoft edge ? Sorry im not a front-end expert
m

Mason Menges

11/16/2022, 9:32 PM
Neither am I haha šŸ˜…, I think this is still worth opening a bug on our repo especially if it's working through the CLI, you could also try clearing the cache on your browser for the sake of argument but I can't think of a solid reason this would be occurring for the Orion UI
l

Luca Schneider

11/16/2022, 10:13 PM
ok will do
Checking this with a coworker with front-end exp. Could someone from Prefect UI team tells us what (files, log,..) they would need to investigate this before creating ticket? It seems to be a typescript issue raised by the browser
m

Mason Menges

11/18/2022, 4:23 PM
Brilliant Thanks @Luca Schneider!!
5 Views