Spaces:
Sleeping
Sleeping
File size: 7,512 Bytes
ea2b6ec | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | # n8n Workflow Examples for Job Failure Prediction
This document provides examples for integrating the ML service with n8n workflows.
## Service Endpoints
- **Base URL**: `http://job-ml:8000` (internal) or `http://localhost:8000` (local)
- **Health Check**: `GET /health`
- **Job Failure Prediction**: `POST /predict/job-fail`
- **Anomaly Detection**: `POST /detect/anomaly`
## Example 1: Job Failure Prediction Workflow
### Workflow Structure
1. **Trigger**: Database query / Webhook / Schedule
2. **HTTP Request**: Call prediction endpoint
3. **IF Node**: Check risk level
4. **Action**: Send alert (Slack / PagerDuty / Email)
### HTTP Request Node Configuration
**Method**: `POST`
**URL**: `http://job-ml:8000/predict/job-fail`
**Headers**:
```
Content-Type: application/json
```
**Body (JSON)**:
```json
{
"zone": "{{ $json.zone }}",
"job_nm": "{{ $json.job_nm }}",
"tasksgroup_nm": "{{ $json.tasksgroup_nm }}",
"job_start_time": "{{ $json.job_start_time }}",
"duration": "{{ $json.duration }}",
"duration_sec": {{ $json.duration_sec }},
"status": "{{ $json.status }}",
"err_msg": "{{ $json.err_msg }}",
"zeppelin": "{{ $json.zeppelin }}",
"explain": true
}
```
### IF Node Conditions
**WARNING Condition** (Medium Risk):
```javascript
{{ $json.fail_probability >= 0.5 && $json.fail_probability < 0.8 }}
```
**CRITICAL Condition** (High Risk):
```javascript
{{ $json.fail_probability >= 0.8 }}
```
**Combined Alert Condition** (WARNING or CRITICAL):
```javascript
{{ $json.fail_probability >= 0.5 }}
```
### Example Response Handling
The response will look like:
```json
{
"fail_probability": 0.79,
"risk_level": "MEDIUM",
"top_drivers": [
{
"feature": "failure_rate_7",
"shap_value": 0.30,
"effect": "increase"
},
{
"feature": "duration_zscore",
"shap_value": 0.18,
"effect": "increase"
}
],
"recommended_actions": [
"Monitor upstream dependencies and recent job history",
"Check for resource constraints or data volume spikes"
]
}
```
### Slack Alert Example
**Slack Node Configuration**:
- **Channel**: `#job-alerts`
- **Text**:
```
🚨 Job Failure Alert
Job: {{ $json.job_nm }}
Zone: {{ $json.zone }}
Risk Level: *{{ $('HTTP Request').item.json.risk_level }}*
Failure Probability: {{ $('HTTP Request').item.json.fail_probability * 100 }}%
Top Risk Factors:
{{ $('HTTP Request').item.json.top_drivers.map(d => `• ${d.feature}: ${d.effect}`).join('\n') }}
Recommended Actions:
{{ $('HTTP Request').item.json.recommended_actions.map(a => `• ${a}`).join('\n') }}
```
---
## Example 2: Anomaly Detection Workflow
### HTTP Request Node Configuration
**Method**: `POST`
**URL**: `http://job-ml:8000/detect/anomaly`
**Headers**:
```
Content-Type: application/json
```
**Body (JSON)**:
```json
{
"features": {
"duration_sec": {{ $json.duration_sec }},
"duration_zscore": {{ $json.duration_zscore }},
"avg_duration_7": {{ $json.avg_duration_7 }},
"failure_rate_7": {{ $json.failure_rate_7 }},
"err_msg_len": {{ $json.err_msg_len || 0 }},
"hour_sin": {{ $json.hour_sin || 0 }},
"hour_cos": {{ $json.hour_cos || 0 }}
},
"threshold": 0.01
}
```
### IF Node Condition
**Anomaly Detected**:
```javascript
{{ $json.is_anomaly === true }}
```
**High Severity Anomaly** (reconstruction error > 3x threshold):
```javascript
{{ $json.is_anomaly === true && $json.reconstruction_error > ($json.threshold * 3) }}
```
### Example Response
```json
{
"reconstruction_error": 0.0235,
"is_anomaly": true,
"threshold": 0.01,
"top_drivers": [
{
"feature": "duration_zscore",
"error": 0.0142
},
{
"feature": "duration_sec",
"error": 0.0068
}
]
}
```
---
## Example 3: Combined Workflow (Prediction + Anomaly)
### Workflow Structure
1. **Trigger**: Job completion event
2. **HTTP Request 1**: Job failure prediction
3. **HTTP Request 2**: Anomaly detection
4. **IF Node**: Combined alert logic
5. **Action**: Send alert
### Combined Alert Condition
**Alert if EITHER prediction is risky OR anomaly is detected**:
```javascript
{{
($('Predict').item.json.fail_probability >= 0.5) ||
($('Anomaly').item.json.is_anomaly === true)
}}
```
**High Priority Alert** (both conditions):
```javascript
{{
($('Predict').item.json.fail_probability >= 0.8) ||
($('Anomaly').item.json.is_anomaly === true && $('Anomaly').item.json.reconstruction_error > ($('Anomaly').item.json.threshold * 3))
}}
```
---
## Example 4: Scheduled Monitoring Workflow
### Workflow Structure
1. **Schedule Trigger**: Every 15 minutes
2. **Database Query**: Get recent job runs
3. **Loop**: For each job
- HTTP Request: Predict failure
- HTTP Request: Detect anomaly
- IF: Check conditions
- Action: Alert if needed
### Code Node for Batch Processing
```javascript
// Process multiple jobs
const jobs = $input.all();
const results = [];
for (const job of jobs) {
// Call prediction API
const predictResponse = await $http.post('http://job-ml:8000/predict/job-fail', {
zone: job.json.zone,
job_nm: job.json.job_nm,
job_start_time: job.json.job_start_time,
duration_sec: job.json.duration_sec,
status: job.json.status,
err_msg: job.json.err_msg,
explain: true
});
// Call anomaly API
const anomalyResponse = await $http.post('http://job-ml:8000/detect/anomaly', {
features: {
duration_sec: job.json.duration_sec,
duration_zscore: job.json.duration_zscore || 0,
err_msg_len: (job.json.err_msg || '').length
}
});
results.push({
job: job.json.job_nm,
prediction: predictResponse.data,
anomaly: anomalyResponse.data,
should_alert: predictResponse.data.fail_probability >= 0.5 || anomalyResponse.data.is_anomaly
});
}
return results.map(r => ({ json: r }));
```
---
## Alert Severity Levels
### INFO
- `fail_probability < 0.3` and no anomaly
- Normal operations
### LOW
- `0.3 <= fail_probability < 0.5`
- Minor deviations detected
### WARNING (MEDIUM)
- `0.5 <= fail_probability < 0.8`
- OR `is_anomaly === true` with `reconstruction_error < threshold * 3`
- Requires monitoring
### CRITICAL
- `fail_probability >= 0.8`
- OR `is_anomaly === true` with `reconstruction_error >= threshold * 3`
- Immediate action required
---
## Error Handling
### HTTP Request Error Handling
In n8n, configure the HTTP Request node to:
- **Continue on Error**: Enabled
- **Response Format**: JSON
Add an IF node after HTTP Request to check for errors:
```javascript
{{ $json.error !== undefined && $json.error !== null }}
```
### Retry Logic
For critical predictions, add a retry mechanism:
1. HTTP Request node
2. IF node: Check if response has error
3. Wait node: 5 seconds
4. HTTP Request node: Retry (max 3 times)
---
## Testing the Workflow
### Test Payload (Job Failure Prediction)
```json
{
"zone": "prod",
"job_nm": "daily_export_customer",
"tasksgroup_nm": "export_group",
"job_start_time": "2026-01-21T01:00:00",
"duration": "01:30:00",
"duration_sec": 5400,
"status": "SUCCESS",
"err_msg": "",
"zeppelin": null
}
```
### Test Payload (Anomaly Detection)
```json
{
"features": {
"duration_sec": 5400,
"duration_zscore": 1.6,
"avg_duration_7": 3000,
"failure_rate_7": 0.15,
"err_msg_len": 0,
"hour_sin": 0.2588,
"hour_cos": 0.9659
},
"threshold": 0.01
}
```
---
## n8n Workflow JSON Export
See `n8n_workflow_job_monitoring.json` for a complete importable workflow.
|