Describe the problem/error/question
I am currently facing an issue regarding execution missing data. I currently updated to latest published version 1.103.2 (Which on n8n official repository is still a pre-release curiously).
What is the error message (if any)?
This is the error occuring to multiple executions.
Worker errored while running execution 37137 (job 470)
Worker failed to find data for execution 37137 (job 470) (execution 37137)
Error: Worker failed to find data for execution 37137 (job 470)
at JobProcessor.processJob (/usr/local/lib/node_modules/n8n/src/scaling/job-processor.ts:59:10)
at processTicksAndRejections (node:internal/process/task_queues:105:5)
at Queue.<anonymous> (/usr/local/lib/node_modules/n8n/src/scaling/scaling.service.ts:103:5)
Share the output returned by the last node
Information on your n8n setup
n8n version: 1.103.2
Database: Postgres
n8n EXECUTIONS_PROCESS setting: main
Running n8n via: Docker
Operating system: Ubuntu 20.04
This error appears when attempting to process a queued job, but failing to load data from the database or store. GitHub Issue #12535 suggests that the error arises when the execution was deleted or never saved correctly, and the worker can’t find the corresponding data.
opened 01:04PM - 09 Jan 25 UTC
in linear
team:nodes
### Bug Description
Production workflows execution with a worker started output… ing the error below. Although I have tried to check for Redis and postgres connection based on correct credentials, the instance still complains.
```
Problem with execution 116: Worker failed to find data for execution 116 (job 147). Aborting.
Worker failed to find data for execution 116 (job 147) (execution 116)
Error: Worker failed to find data for execution 116 (job 147)
at Queue.onFailed (/usr/local/lib/node_modules/n8n/node_modules/bull/lib/job.js:516:18)
at Queue.emit (node:events:519:28)
at Object.module.exports.emitSafe (/usr/local/lib/node_modules/n8n/node_modules/bull/lib/utils.js:50:20)
at EventEmitter.messageHandler (/usr/local/lib/node_modules/n8n/node_modules/bull/lib/queue.js:476:15)
at EventEmitter.emit (node:events:519:28)
at DataHandler.handleSubscriberReply (/usr/local/lib/node_modules/n8n/node_modules/ioredis/built/DataHandler.js:80:32)
at DataHandler.returnReply (/usr/local/lib/node_modules/n8n/node_modules/ioredis/built/DataHandler.js:47:18)
at JavascriptRedisParser.returnReply (/usr/local/lib/node_modules/n8n/node_modules/ioredis/built/DataHandler.js:21:22)
at JavascriptRedisParser.execute (/usr/local/lib/node_modules/n8n/node_modules/redis-parser/lib/parser.js:544:14)
at Socket.<anonymous> (/usr/local/lib/node_modules/n8n/node_modules/ioredis/built/DataHandler.js:25:20)
```
### To Reproduce
```
services:
n8n_editor:
image: n8nio/n8n:latest
environment:
## Database configuration
- DB_TYPE=postgresdb
- DB_POSTGRESDB_HOST=postgres
- DB_POSTGRESDB_PORT=5432
- DB_POSTGRESDB_DATABASE=n8n_queue
- DB_POSTGRESDB_USER=postgres
- DB_POSTGRESDB_PASSWORD=postgres
# Authentication for the editor UI
- N8N_SECURE_COOKIE=false
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
- N8N_BASIC_AUTH_ACTIVE=true
- N8N_BASIC_AUTH_USER=n8n_username
- N8N_BASIC_AUTH_PASSWORD=n8n_password
- N8N_PROTOCOL=https
- N8N_PORT=5679
- WEBHOOK_URL=https://n8n.example.com
## Dados do Redis
- QUEUE_BULL_REDIS_HOST=redis
- QUEUE_BULL_REDIS_PORT=6379
- QUEUE_BULL_REDIS_DB=2
- NODE_FUNCTION_ALLOW_EXTERNAL=moment,lodash,moment-with-locales
- EXECUTIONS_DATA_PRUNE=true
- EXECUTIONS_DATA_MAX_AGE=336
## Modo do Node
- NODE_ENV=production
# Execution settings
- EXECUTIONS_MODE=queue
#- N8N_CONCURRENCY_PRODUCTION_LIMIT=20
## Community Nodes
- N8N_REINSTALL_MISSING_PACKAGES=true
- N8N_COMMUNITY_PACKAGES_ENABLED=true
- N8N_NODE_PATH=/home/node/.n8n/nodes
## Timezone
- GENERIC_TIMEZONE=America/Sao_Paulo
- TZ=America/Sao_Paulo
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.role == manager
resources:
limits:
cpus: "1"
memory: 1024M
labels:
- "traefik.enable=true"
- "traefik.http.services.n8n_dekcomercial.loadbalancer.server.port=5679"
- "traefik.http.routers.n8n_dekcomercial.rule=Host(`n8n.example.com`)"
- "traefik.http.routers.n8n_dekcomercial.entrypoints=websecure"
networks:
- "traefik_network"
volumes:
- n8n-data:/home/node/.n8n
n8n_worker:
image: n8nio/n8n:latest ## Versão do N8N
command: worker --concurrency=10
networks:
- traefik_network ## Nome da rede interna
environment:
## Dados do postgres
- DB_TYPE=postgresdb
- DB_POSTGRESDB_DATABASE=n8n_queue
- DB_POSTGRESDB_HOST=postgres
- DB_POSTGRESDB_PORT=5432
- DB_POSTGRESDB_USER=postgres
- DB_POSTGRESDB_PASSWORD=postgres
## Url do N8N
- WEBHOOK_URL=https://n8n.example.com
- N8N_PROTOCOL=https
- N8N_ENCRYPTION_KEY=fcrHIa/MRy6z5Z6kc8RS3egRwrfzCVlU
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
## Modo do Node
- NODE_ENV=production
## Modo de execução (deletar caso deseje em modo regular)
- EXECUTIONS_MODE=queue
## Community Nodes
- N8N_REINSTALL_MISSING_PACKAGES=true
- N8N_COMMUNITY_PACKAGES_ENABLED=true
- N8N_NODE_PATH=/home/node/.n8n/nodes
## Dados do Redis
- QUEUE_BULL_REDIS_HOST=redis
- QUEUE_BULL_REDIS_PORT=6379
- QUEUE_BULL_REDIS_DB=2
- NODE_FUNCTION_ALLOW_EXTERNAL=moment,lodash,moment-with-locales
- EXECUTIONS_DATA_PRUNE=true
- EXECUTIONS_DATA_MAX_AGE=336
## Timezone
- GENERIC_TIMEZONE=America/Sao_Paulo
- TZ=America/Sao_Paulo
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.role == manager
resources:
limits:
cpus: "1"
memory: 1024M
volumes:
n8n-data:
networks:
traefik_network:
external: true
name: "traefik_network"
```
### Expected behavior
I expected to run without this error.
### Operating System
Ubuntu 22.04
### n8n Version
1.74.0
### Node.js Version
18.16.0
### Database
PostgreSQL
### Execution mode
queue
Other threads also report that if an execution is canceled or orphaned in Redis, it could block the queue and generate the same error.
I recommend checking:
Data integrity in Redis/Postgres.
Centralized queue configuration.
Enable DEBUG logs.
Issue OP is myself. The error occurs even before the node execution, i.e., it does not even start manually. Example: Schedule and Webhook Nodes triggering fail without passing data through.
Additionally, which actions should be performed for below suggestions?
Data integrity in Redis/Postgres.
Centralized queue configuration.
Enable DEBUG logs.
system
Closed
October 20, 2025, 2:24pm
4
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.