Flows getting stuck in "LATE" stage despite trying very simple tutorial codes #16150
Replies: 7 comments 1 reply
-
hello @GildeshAbhay - this commonly happens when you do not run a worker, e.g. when opening issues, its most helpful if you can include all the information needed to reproduce your problem |
Beta Was this translation helpful? Give feedback.
-
so i have been directly running the python file.py command. |
Beta Was this translation helpful? Give feedback.
-
hi @GildeshAbhay can you share the contents of your python file? you can always just call the
yes if using a worker, you need to select a work pool i'd guess you have a |
Beta Was this translation helpful? Give feedback.
-
from prefect import flow @flow(log_prints=True) if name == "main": |
Beta Was this translation helpful? Give feedback.
-
C:\Users\abhay.saini\Desktop\prefect-testing>prefect deployment run my-flow/my-third-deployment |
Beta Was this translation helpful? Give feedback.
-
hi @GildeshAbhay - yes, so to get started, all you need is the following # some_file.py
from prefect import flow
@flow(log_prints=True)
def my_flow():
print("Hello, Prefect!")
if __name__ == "__main__":
my_flow() and
and then if you want to move on to create a docker-based deployment, you can |
Beta Was this translation helpful? Give feedback.
-
So I have done everything mentinoed above and am not using workers explicity. Please advise anyone |
Beta Was this translation helpful? Give feedback.
-
Bug summary
no matter what i try, flow gets stuck in LATE stage. It never executes.
Version info
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions