<@ULVA73B9P> Why am I getting a red status for the...
# ask-marvin
k
@Marvin Why am I getting a red status for the deployment saying "this deployment has not been polled in the last 60 seconds"? When I trigger a run from the deployment it works fine
m
The issue you're experiencing likely stems from the polling mechanism of Prefect's deployment monitoring system. Here are a few potential reasons, along with steps to investigate and resolve the issue: 1. Worker Configuration: - Ensure that your Prefect worker is correctly configured and running. Deployments rely on workers to report their status back to the Prefect server. 2. Heartbeat Interval: - The worker is responsible for sending heartbeats to inform the server that it is alive. Make sure that the heartbeat interval is appropriately set. 3. Network Issues: - Verify that there are no network issues preventing the worker from sending data to the Prefect server. 4. System Resources: - Check if there are enough system resources (CPU, memory) allocated to handle the deployment and worker processes. 5. Logs: - Check the logs of your worker for any error messages or warnings that might indicate why it hasn't polled in the last 60 seconds. Here is a link to deployment documentation for further reading. You might also want to check the concepts of deployment for more comprehensive insights. If the problem persists after checking these, please share more details about your specific setup or any error logs you might have, so a more accurate diagnosis can be made.