Problem with delete execution in it’s workflow

Hi,
I followed the steps from the Topic in the Description but my List for Workflows keeps getting longer.

Here is my Docker run Command with the Variables:
docker run -it --name n8n --restart always -p 5678:5678 -v n8n_data:/home/node/.n8n -e N8N_SECURE_COOKIE=false -e N8N_EDITOR_BASE_URL=https://n8n.domain.ending -e WEBHOOK_URL=https://n8n.domain.ending -e EXECUTIONS_DATA_MAX_AGE=72 -e EXECUTIONS_DATA_PRUNE_MAX_COUNT=1000 -e N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true -e N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true -v /var/run/docker.sock:/var/run/docker.sock docker.n8n.io/n8nio/n8n

Here is my Debug Information:

instance information

Debug info

core

  • n8nVersion: 1.88.0
  • platform: docker (self-hosted)
  • nodeJsVersion: 20.19.0
  • database: sqlite
  • executionMode: regular
  • concurrency: -1
  • license: community
  • consumerId: unknown

storage

  • success: all
  • error: all
  • progress: false
  • manual: true
  • binaryMode: memory

pruning

  • enabled: true
  • maxAge: 72 hours
  • maxCount: 1000 executions

client

  • userAgent: mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/134.0.0.0 safari/537.36
  • isTouchDevice: false

security

  • secureCookie: false

Generated at: 2025-04-22T09:41:01.212Z

Any Idea?

Hi,

There is something like VACUUM on startup for SQLite databases

Have you tried that?

Regards
J.

Thanks for the hint.
I ran VACUUM using:
docker run --rm -v n8n_data:/data alpine sh -c “apk add sqlite && sqlite3 /data/database.sqlite ‘VACUUM;’”

and

docker run --rm -v n8n_data:/data nouchka/sqlite3 /data/database.sqlite “VACUUM;”

The Docker Overlay shrank down 14 GB and its size is now “only” 29 GB.

But the crshed flows are still there.
[/quote]

Thanks for the hint.
I ran VACUUM using:
docker run --rm -v n8n_data:/data alpine sh -c “apk add sqlite && sqlite3 /data/database.sqlite ‘VACUUM;’”

and

docker run --rm -v n8n_data:/data nouchka/sqlite3 /data/database.sqlite “VACUUM;”

The Docker Overlay shrank down 14 GB and its size is now “only” 29 GB.

But the crshed flows are still there.

Hi, the issue persists. I can’t find a solution for the crashed processes.