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
1.**Simple Interval**: Specify execution frequency in seconds
167
167
168
-
```json
168
+
```json
169
169
"interval": "60"// Execute every 60 seconds
170
-
```
170
+
```
171
171
172
172
2.**Cron Expression**: Use powerful cron syntax for complex schedules
173
173
174
-
```json
174
+
```json
175
175
"cron": "0 0 9-17 ? * MON-FRI"// Every hour from 9am-5pm on weekdays
176
-
```
176
+
```
177
177
178
-
> **Tip**: Creating cron expressions can be challenging. AI tools like Google, ChatGPT, or Claude can help you define the correct cron expression for your specific scheduling needs. Simply ask something like "Create a cron expression that runs every Tuesday at 3 PM" to get assistance.
178
+
> **Tip**: Creating cron expressions can be challenging. AI tools like Google, ChatGPT, or Claude can help you define the correct cron expression for your specific scheduling needs. Simply ask something like "Create a cron expression that runs every Tuesday at 3 PM" to get assistance.
179
179
180
180
### Listeners Configuration
181
181
@@ -194,12 +194,12 @@ Storage determines how job information is persisted and enables clustering:
194
194
195
195
1.**In-Memory (Default)**: No configuration needed
196
196
197
-
- Jobs are stored in memory and read/saved to the config file
198
-
- No clustering support
197
+
- Jobs are stored in memory and read/saved to the config file
198
+
- No clustering support
199
199
200
200
2.**Database Storage**:
201
201
202
-
```json
202
+
```json
203
203
"store": {
204
204
"type": "datasource",
205
205
"datasource": "quartz",
@@ -208,11 +208,11 @@ Storage determines how job information is persisted and enables clustering:
208
208
"clusterCheckinInterval": "15000",
209
209
"misfireThreshold": "60000"
210
210
}
211
-
```
211
+
```
212
212
213
213
3.**Redis Storage**:
214
214
215
-
```json
215
+
```json
216
216
"store": {
217
217
"type": "redis",
218
218
"host": "localhost",
@@ -227,7 +227,7 @@ Storage determines how job information is persisted and enables clustering:
0 commit comments