GitHub user dosubot[bot] added a comment to the discussion: how superset worker
pods are used and where to configure to utilise workloads in helm
<!-- Answer -->
To verify if the Celery worker is being utilized, you can check the logs of the
worker pod for any tasks being processed. If you're not seeing any logs, ensure
that the `SUPERSET_LOG_LEVEL` environment variable is set correctly. By
default, it is set to "info", but you can increase the verbosity to "debug" to
capture more detailed logs. You can do this by modifying the `values.yaml` file
in your Helm chart:
```yaml
supersetWorker:
environment:
SUPERSET_LOG_LEVEL: "debug"
```
Additionally, you can troubleshoot missing logs by checking the health of the
Celery worker using Kubernetes commands. Use `kubectl logs <pod-name>` to view
the logs and `kubectl describe pod <pod-name>` to check for any issues with the
pod's configuration or status. Ensure that the liveness probe is correctly
configured to verify the worker's responsiveness:
```yaml
livenessProbe:
exec:
command:
- "celery"
- "inspect"
- "ping"
initialDelaySeconds: 120
periodSeconds: 60
timeoutSeconds: 60
successThreshold: 1
failureThreshold: 3
```
If the health check fails, it might indicate issues with the Celery worker's
connectivity or configuration
<sup>[[1]](https://github.com/apache/superset/blob/master/docs/docs/configuration/alerts-reports.mdx)</sup><sup>[[2]](https://github.com/apache/superset/blob/master/docker-compose.yml)</sup>.
<!-- Dosu Comment Footer -->
*To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
---
<sup>Help Dosu learn! Give it feedback: [Great
Response](https://app.dosu.dev/response-feedback/f12dd4bb-488c-465f-a3c0-cad7c164a49a?feedback_type=great_response)
| [Irrelevant
Answer](https://app.dosu.dev/response-feedback/f12dd4bb-488c-465f-a3c0-cad7c164a49a?feedback_type=irrelevant_answer)
| [Incorrect
Sources](https://app.dosu.dev/response-feedback/f12dd4bb-488c-465f-a3c0-cad7c164a49a?feedback_type=incorrect_sources)
| [Too
Verbose](https://app.dosu.dev/response-feedback/f12dd4bb-488c-465f-a3c0-cad7c164a49a?feedback_type=too_verbose)
|
[Hallucination](https://app.dosu.dev/response-feedback/f12dd4bb-488c-465f-a3c0-cad7c164a49a?feedback_type=hallucination)
| [Bug
Report](https://app.dosu.dev/response-feedback/f12dd4bb-488c-465f-a3c0-cad7c164a49a?feedback_type=bug_report)
|
[Other](https://app.dosu.dev/response-feedback/f12dd4bb-488c-465f-a3c0-cad7c164a49a?feedback_type=other)</sup>
GitHub link:
https://github.com/apache/superset/discussions/33006#discussioncomment-13028197
----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]