You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[uv](https://docs.astral.sh/uv/getting-started/installation/) is used to manage dependencies.
76
78
Install the required dependencies with `uv` by running:
77
79
```
78
-
uv sync
80
+
uv sync --dev
79
81
```
80
82
> For macOS: install libmagic with `brew install libmagic`.
81
83
@@ -111,14 +113,14 @@ To consume asynchronous tasks from the queue, such as dataset file import and da
111
113
112
114
- for macOS or Linux
113
115
```
114
-
uv run celery -A app.celery worker -P gevent -c 1 --loglevel INFO -Q dataset,generation,mail,ops_trace
116
+
uv run celery -A app.celery worker -P gevent -c 1 --loglevel INFO -Q dataset,priority_dataset,priority_pipeline,pipeline,mail,ops_trace,app_deletion,plugin,workflow_storage,conversation,workflow,schedule_poller,schedule_executor,triggered_workflow_dispatcher,trigger_refresh_executor
115
117
```
116
118
117
119
If you are using a Windows system to start the Worker service, please use the following command instead:
118
120
119
121
- for Windows
120
122
```
121
-
uv run celery -A app.celery worker -P solo --without-gossip --without-mingle -Q dataset,generation,mail,ops_trace --loglevel INFO
123
+
uv run celery -A app.celery worker -P solo --without-gossip --without-mingle --loglevel INFO -Q dataset,priority_dataset,priority_pipeline,pipeline,mail,ops_trace,app_deletion,plugin,workflow_storage,conversation,workflow,schedule_poller,schedule_executor,triggered_workflow_dispatcher,trigger_refresh_executor
122
124
```
123
125
124
126
Expected output:
@@ -189,6 +191,14 @@ To consume asynchronous tasks from the queue, such as dataset file import and da
189
191
2025-04-28 17:07:15,742 INFO [pidbox.py:111] pidbox: Connected to redis://:**@localhost:6379/1.
190
192
```
191
193
194
+
### Start the Beat service
195
+
196
+
Additionally, if you want to debug the celery scheduled tasks or run the Schedule Trigger node, you can run the following command in another terminal to start the beat service:
0 commit comments