diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/postgres-with-insights/docker-compose.yml b/packages/@n8n/benchmark/scripts/n8n-setups/postgres-with-insights/docker-compose.yml deleted file mode 100644 index 71f9912630..0000000000 --- a/packages/@n8n/benchmark/scripts/n8n-setups/postgres-with-insights/docker-compose.yml +++ /dev/null @@ -1,64 +0,0 @@ -services: - mockapi: - image: wiremock/wiremock:3.9.1 - ports: - - '8088:8080' - volumes: - - ${MOCK_API_DATA_PATH}/mappings:/home/wiremock/mappings - - postgres: - image: postgres:16.4 - restart: always - user: root:root - environment: - - POSTGRES_DB=n8n - - POSTGRES_USER=postgres - - POSTGRES_PASSWORD=password - - PGDATA=/var/lib/postgresql/data/pgdata - volumes: - - ${RUN_DIR}/postgres:/var/lib/postgresql/data - healthcheck: - test: ['CMD-SHELL', 'pg_isready -U postgres'] - interval: 5s - timeout: 5s - retries: 5 - - n8n: - image: ghcr.io/n8n-io/n8n:${N8N_VERSION:-latest} - user: root:root - environment: - - N8N_DIAGNOSTICS_ENABLED=false - - N8N_USER_FOLDER=/n8n - - DB_TYPE=postgresdb - - DB_POSTGRESDB_HOST=postgres - - DB_POSTGRESDB_PASSWORD=password - # Task Runner config - - N8N_RUNNERS_ENABLED=true - - N8N_RUNNERS_MODE=internal - # Enable Insights - - N8N_ENABLED_MODULES=insights - ports: - - 5678:5678 - volumes: - - ${RUN_DIR}/n8n:/n8n - depends_on: - postgres: - condition: service_healthy - mockapi: - condition: service_started - healthcheck: - test: ['CMD-SHELL', 'wget --spider -q http://n8n:5678/healthz || exit 1'] - interval: 5s - timeout: 5s - retries: 10 - - benchmark: - image: ghcr.io/n8n-io/n8n-benchmark:${N8N_BENCHMARK_VERSION:-latest} - depends_on: - n8n: - condition: service_healthy - environment: - - N8N_BASE_URL=http://n8n:5678 - - K6_API_TOKEN=${K6_API_TOKEN} - - BENCHMARK_RESULT_WEBHOOK_URL=${BENCHMARK_RESULT_WEBHOOK_URL} - - BENCHMARK_RESULT_WEBHOOK_AUTH_HEADER=${BENCHMARK_RESULT_WEBHOOK_AUTH_HEADER} diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/postgres-with-insights/setup.mjs b/packages/@n8n/benchmark/scripts/n8n-setups/postgres-with-insights/setup.mjs deleted file mode 100644 index c2ead0ab07..0000000000 --- a/packages/@n8n/benchmark/scripts/n8n-setups/postgres-with-insights/setup.mjs +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env zx - -import path from 'path'; -import { fs } from 'zx'; - -/** - * Creates the needed directories so the permissions get set correctly. - */ -export function setup({ runDir }) { - const neededDirs = ['n8n', 'postgres']; - - for (const dir of neededDirs) { - fs.ensureDirSync(path.join(runDir, dir)); - } -} diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/postgres/docker-compose.yml b/packages/@n8n/benchmark/scripts/n8n-setups/postgres/docker-compose.yml index ad8f224e91..5241971325 100644 --- a/packages/@n8n/benchmark/scripts/n8n-setups/postgres/docker-compose.yml +++ b/packages/@n8n/benchmark/scripts/n8n-setups/postgres/docker-compose.yml @@ -35,8 +35,6 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Disable Insights - - N8N_DISABLED_MODULES=insights ports: - 5678:5678 volumes: diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main-with-insights/docker-compose.yml b/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main-with-insights/docker-compose.yml deleted file mode 100644 index 63b5a619e5..0000000000 --- a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main-with-insights/docker-compose.yml +++ /dev/null @@ -1,217 +0,0 @@ -services: - mockapi: - image: wiremock/wiremock:3.9.1 - ports: - - '8088:8080' - volumes: - - ${MOCK_API_DATA_PATH}/mappings:/home/wiremock/mappings - - redis: - image: redis:6.2.14-alpine - restart: always - ports: - - 6379:6379 - healthcheck: - test: ['CMD', 'redis-cli', 'ping'] - interval: 1s - timeout: 3s - - postgres: - image: postgres:16.4 - restart: always - environment: - - POSTGRES_DB=n8n - - POSTGRES_USER=postgres - - POSTGRES_PASSWORD=password - - PGDATA=/var/lib/postgresql/data/pgdata - volumes: - - ${RUN_DIR}/postgres:/var/lib/postgresql/data - healthcheck: - test: ['CMD-SHELL', 'pg_isready -U postgres'] - interval: 5s - timeout: 5s - retries: 10 - - n8n_worker1: - image: ghcr.io/n8n-io/n8n:${N8N_VERSION:-latest} - environment: - - N8N_DIAGNOSTICS_ENABLED=false - - N8N_USER_FOLDER=/n8n/worker1 - - N8N_ENCRYPTION_KEY=${N8N_ENCRYPTION_KEY} - - N8N_LICENSE_CERT=${N8N_LICENSE_CERT} - - N8N_LICENSE_ACTIVATION_KEY=${N8N_LICENSE_ACTIVATION_KEY} - - N8N_LICENSE_TENANT_ID=${N8N_LICENSE_TENANT_ID} - # Scaling mode config - - EXECUTIONS_MODE=queue - - QUEUE_BULL_REDIS_HOST=redis - - QUEUE_HEALTH_CHECK_ACTIVE=true - - N8N_CONCURRENCY_PRODUCTION_LIMIT=10 - # DB config - - DB_TYPE=postgresdb - - DB_POSTGRESDB_HOST=postgres - - DB_POSTGRESDB_PASSWORD=password - # Task Runner config - - N8N_RUNNERS_ENABLED=true - - N8N_RUNNERS_MODE=internal - # Enable Insights - - N8N_ENABLED_MODULES=insights - command: worker - volumes: - - ${RUN_DIR}/n8n-worker1:/n8n - depends_on: - postgres: - condition: service_healthy - redis: - condition: service_healthy - healthcheck: - test: ['CMD-SHELL', 'wget --spider -q http://localhost:5678/healthz || exit 1'] - interval: 5s - timeout: 5s - retries: 10 - - n8n_worker2: - image: ghcr.io/n8n-io/n8n:${N8N_VERSION:-latest} - environment: - - N8N_DIAGNOSTICS_ENABLED=false - - N8N_USER_FOLDER=/n8n/worker2 - - N8N_ENCRYPTION_KEY=${N8N_ENCRYPTION_KEY} - - N8N_LICENSE_CERT=${N8N_LICENSE_CERT} - - N8N_LICENSE_ACTIVATION_KEY=${N8N_LICENSE_ACTIVATION_KEY} - - N8N_LICENSE_TENANT_ID=${N8N_LICENSE_TENANT_ID} - # Scaling mode config - - EXECUTIONS_MODE=queue - - QUEUE_BULL_REDIS_HOST=redis - - QUEUE_HEALTH_CHECK_ACTIVE=true - - N8N_CONCURRENCY_PRODUCTION_LIMIT=10 - # DB config - - DB_TYPE=postgresdb - - DB_POSTGRESDB_HOST=postgres - - DB_POSTGRESDB_PASSWORD=password - # Task Runner config - - N8N_RUNNERS_ENABLED=true - - N8N_RUNNERS_MODE=internal - # Enable Insights - - N8N_ENABLED_MODULES=insights - command: worker - volumes: - - ${RUN_DIR}/n8n-worker2:/n8n - depends_on: - # We let the worker 1 start first so it can run the DB migrations - n8n_worker1: - condition: service_healthy - postgres: - condition: service_healthy - redis: - condition: service_healthy - healthcheck: - test: ['CMD-SHELL', 'wget --spider -q http://localhost:5678/healthz || exit 1'] - interval: 5s - timeout: 5s - retries: 10 - - n8n_main2: - image: ghcr.io/n8n-io/n8n:${N8N_VERSION:-latest} - environment: - - N8N_DIAGNOSTICS_ENABLED=false - - N8N_USER_FOLDER=/n8n - - N8N_ENCRYPTION_KEY=${N8N_ENCRYPTION_KEY} - - N8N_LICENSE_CERT=${N8N_LICENSE_CERT} - - N8N_LICENSE_ACTIVATION_KEY=${N8N_LICENSE_ACTIVATION_KEY} - - N8N_LICENSE_TENANT_ID=${N8N_LICENSE_TENANT_ID} - # Scaling mode config - - N8N_PROXY_HOPS=1 - - EXECUTIONS_MODE=queue - - QUEUE_BULL_REDIS_HOST=redis - - N8N_MULTI_MAIN_SETUP_ENABLED=true - # DB config - - DB_TYPE=postgresdb - - DB_POSTGRESDB_HOST=postgres - - DB_POSTGRESDB_PASSWORD=password - # Task Runner config - - N8N_RUNNERS_ENABLED=true - - N8N_RUNNERS_MODE=internal - # Enable Insights - - N8N_ENABLED_MODULES=insights - volumes: - - ${RUN_DIR}/n8n-main2:/n8n - depends_on: - n8n_worker1: - condition: service_healthy - n8n_worker2: - condition: service_healthy - postgres: - condition: service_healthy - redis: - condition: service_healthy - mockapi: - condition: service_started - healthcheck: - test: ['CMD-SHELL', 'wget --spider -q http://n8n_main2:5678/healthz || exit 1'] - interval: 5s - timeout: 5s - retries: 10 - - n8n_main1: - image: ghcr.io/n8n-io/n8n:${N8N_VERSION:-latest} - environment: - - N8N_DIAGNOSTICS_ENABLED=false - - N8N_USER_FOLDER=/n8n - - N8N_ENCRYPTION_KEY=${N8N_ENCRYPTION_KEY} - - N8N_LICENSE_CERT=${N8N_LICENSE_CERT} - - N8N_LICENSE_ACTIVATION_KEY=${N8N_LICENSE_ACTIVATION_KEY} - - N8N_LICENSE_TENANT_ID=${N8N_LICENSE_TENANT_ID} - # Scaling mode config - - N8N_PROXY_HOPS=1 - - EXECUTIONS_MODE=queue - - QUEUE_BULL_REDIS_HOST=redis - - N8N_MULTI_MAIN_SETUP_ENABLED=true - # DB config - - DB_TYPE=postgresdb - - DB_POSTGRESDB_HOST=postgres - - DB_POSTGRESDB_PASSWORD=password - # Task Runner config - - N8N_RUNNERS_ENABLED=true - - N8N_RUNNERS_MODE=internal - # Enable Insights - - N8N_ENABLED_MODULES=insights - volumes: - - ${RUN_DIR}/n8n-main1:/n8n - depends_on: - n8n_worker1: - condition: service_healthy - n8n_worker2: - condition: service_healthy - postgres: - condition: service_healthy - redis: - condition: service_healthy - mockapi: - condition: service_started - healthcheck: - test: ['CMD-SHELL', 'wget --spider -q http://n8n_main1:5678/healthz || exit 1'] - interval: 5s - timeout: 5s - retries: 10 - - # Load balancer that acts as an entry point for n8n - n8n: - image: nginx:1.27.2 - ports: - - '5678:80' - volumes: - - ./nginx.conf:/etc/nginx/nginx.conf - depends_on: - n8n_main1: - condition: service_healthy - n8n_main2: - condition: service_healthy - - benchmark: - image: ghcr.io/n8n-io/n8n-benchmark:${N8N_BENCHMARK_VERSION:-latest} - depends_on: - - n8n - environment: - - N8N_BASE_URL=http://n8n:80 - - K6_API_TOKEN=${K6_API_TOKEN} - - BENCHMARK_RESULT_WEBHOOK_URL=${BENCHMARK_RESULT_WEBHOOK_URL} - - BENCHMARK_RESULT_WEBHOOK_AUTH_HEADER=${BENCHMARK_RESULT_WEBHOOK_AUTH_HEADER} diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main-with-insights/nginx.conf b/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main-with-insights/nginx.conf deleted file mode 100644 index 142da7416e..0000000000 --- a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main-with-insights/nginx.conf +++ /dev/null @@ -1,24 +0,0 @@ -events {} - -http { - client_max_body_size 50M; - access_log off; - error_log /dev/stderr warn; - - upstream backend { - server n8n_main1:5678; - server n8n_main2:5678; - } - - server { - listen 80; - - location / { - proxy_pass http://backend; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - } - } -} diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main-with-insights/setup.mjs b/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main-with-insights/setup.mjs deleted file mode 100644 index 13bb657ac2..0000000000 --- a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main-with-insights/setup.mjs +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env zx - -import path from 'path'; -import { fs } from 'zx'; - -/** - * Creates the needed directories so the permissions get set correctly. - */ -export function setup({ runDir }) { - const neededDirs = ['n8n-worker1', 'n8n-worker2', 'n8n-main1', 'n8n-main2', 'postgres']; - - for (const dir of neededDirs) { - fs.ensureDirSync(path.join(runDir, dir)); - } -} diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main/docker-compose.yml b/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main/docker-compose.yml index c66883f7fa..723c10f00e 100644 --- a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main/docker-compose.yml +++ b/packages/@n8n/benchmark/scripts/n8n-setups/scaling-multi-main/docker-compose.yml @@ -53,8 +53,6 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Disable Insights - - N8N_DISABLED_MODULES=insights command: worker volumes: - ${RUN_DIR}/n8n-worker1:/n8n @@ -90,8 +88,6 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Disable Insights - - N8N_DISABLED_MODULES=insights command: worker volumes: - ${RUN_DIR}/n8n-worker2:/n8n @@ -130,8 +126,6 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Disable Insights - - N8N_DISABLED_MODULES=insights volumes: - ${RUN_DIR}/n8n-main2:/n8n depends_on: @@ -172,8 +166,6 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Disable Insights - - N8N_DISABLED_MODULES=insights volumes: - ${RUN_DIR}/n8n-main1:/n8n depends_on: diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main-with-insights/docker-compose.yml b/packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main-without-insights/docker-compose.yml similarity index 95% rename from packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main-with-insights/docker-compose.yml rename to packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main-without-insights/docker-compose.yml index 6c91f27d01..02d618e1a5 100644 --- a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main-with-insights/docker-compose.yml +++ b/packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main-without-insights/docker-compose.yml @@ -51,8 +51,8 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Enable Insights - - N8N_ENABLED_MODULES=insights + # Disable Insights + - N8N_DISABLED_MODULES=insights command: worker volumes: - ${RUN_DIR}/n8n-worker1:/n8n @@ -86,8 +86,8 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Enable Insights - - N8N_ENABLED_MODULES=insights + # Disable Insights + - N8N_DISABLED_MODULES=insights command: worker volumes: - ${RUN_DIR}/n8n-worker2:/n8n @@ -122,8 +122,8 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Enable Insights - - N8N_ENABLED_MODULES=insights + # Disable Insights + - N8N_DISABLED_MODULES=insights ports: - 5678:5678 volumes: diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main-with-insights/setup.mjs b/packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main-without-insights/setup.mjs similarity index 100% rename from packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main-with-insights/setup.mjs rename to packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main-without-insights/setup.mjs diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main/docker-compose.yml b/packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main/docker-compose.yml index 02d618e1a5..ecefddf5b0 100644 --- a/packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main/docker-compose.yml +++ b/packages/@n8n/benchmark/scripts/n8n-setups/scaling-single-main/docker-compose.yml @@ -51,8 +51,6 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Disable Insights - - N8N_DISABLED_MODULES=insights command: worker volumes: - ${RUN_DIR}/n8n-worker1:/n8n @@ -86,8 +84,6 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Disable Insights - - N8N_DISABLED_MODULES=insights command: worker volumes: - ${RUN_DIR}/n8n-worker2:/n8n @@ -122,8 +118,6 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Disable Insights - - N8N_DISABLED_MODULES=insights ports: - 5678:5678 volumes: diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-legacy-with-insights/docker-compose.yml b/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-legacy-with-insights/docker-compose.yml deleted file mode 100644 index 592bf2d9ca..0000000000 --- a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-legacy-with-insights/docker-compose.yml +++ /dev/null @@ -1,39 +0,0 @@ -services: - mockapi: - image: wiremock/wiremock:3.9.1 - ports: - - '8088:8080' - volumes: - - ${MOCK_API_DATA_PATH}/mappings:/home/wiremock/mappings - - n8n: - image: ghcr.io/n8n-io/n8n:${N8N_VERSION:-latest} - user: root:root - environment: - - N8N_DIAGNOSTICS_ENABLED=false - - N8N_USER_FOLDER=/n8n - # Enable Insights - - N8N_ENABLED_MODULES=insights - ports: - - 5678:5678 - volumes: - - ${RUN_DIR}:/n8n - healthcheck: - test: ['CMD-SHELL', 'wget --spider -q http://n8n:5678/healthz || exit 1'] - interval: 5s - timeout: 5s - retries: 10 - depends_on: - mockapi: - condition: service_started - - benchmark: - image: ghcr.io/n8n-io/n8n-benchmark:${N8N_BENCHMARK_VERSION:-latest} - depends_on: - n8n: - condition: service_healthy - environment: - - N8N_BASE_URL=http://n8n:5678 - - K6_API_TOKEN=${K6_API_TOKEN} - - BENCHMARK_RESULT_WEBHOOK_URL=${BENCHMARK_RESULT_WEBHOOK_URL} - - BENCHMARK_RESULT_WEBHOOK_AUTH_HEADER=${BENCHMARK_RESULT_WEBHOOK_AUTH_HEADER} diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-legacy-with-insights/setup.mjs b/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-legacy-with-insights/setup.mjs deleted file mode 100644 index 4f883a7b49..0000000000 --- a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-legacy-with-insights/setup.mjs +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env zx - -import path from 'path'; -import { fs } from 'zx'; - -/** - * Creates the needed directories so the permissions get set correctly. - */ -export function setup({ runDir }) { - const neededDirs = ['n8n']; - - for (const dir of neededDirs) { - fs.ensureDirSync(path.join(runDir, dir)); - } -} diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-legacy/docker-compose.yml b/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-legacy/docker-compose.yml index 11b91793c4..750aa83886 100644 --- a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-legacy/docker-compose.yml +++ b/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-legacy/docker-compose.yml @@ -12,8 +12,6 @@ services: environment: - N8N_DIAGNOSTICS_ENABLED=false - N8N_USER_FOLDER=/n8n - # Disable Insights - - N8N_DISABLED_MODULES=insights ports: - 5678:5678 volumes: diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-with-insights/docker-compose.yml b/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-with-insights/docker-compose.yml deleted file mode 100644 index 592d2caffd..0000000000 --- a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-with-insights/docker-compose.yml +++ /dev/null @@ -1,44 +0,0 @@ -services: - mockapi: - image: wiremock/wiremock:3.9.1 - ports: - - '8088:8080' - volumes: - - ${MOCK_API_DATA_PATH}/mappings:/home/wiremock/mappings - - n8n: - image: ghcr.io/n8n-io/n8n:${N8N_VERSION:-latest} - user: root:root - environment: - - N8N_DIAGNOSTICS_ENABLED=false - - N8N_USER_FOLDER=/n8n - - DB_SQLITE_POOL_SIZE=3 - - DB_SQLITE_ENABLE_WAL=true - # Task Runner config - - N8N_RUNNERS_ENABLED=true - - N8N_RUNNERS_MODE=internal - # Enable Insights - - N8N_ENABLED_MODULES=insights - ports: - - 5678:5678 - volumes: - - ${RUN_DIR}:/n8n - healthcheck: - test: ['CMD-SHELL', 'wget --spider -q http://n8n:5678/healthz || exit 1'] - interval: 5s - timeout: 5s - retries: 10 - depends_on: - mockapi: - condition: service_started - - benchmark: - image: ghcr.io/n8n-io/n8n-benchmark:${N8N_BENCHMARK_VERSION:-latest} - depends_on: - n8n: - condition: service_healthy - environment: - - N8N_BASE_URL=http://n8n:5678 - - K6_API_TOKEN=${K6_API_TOKEN} - - BENCHMARK_RESULT_WEBHOOK_URL=${BENCHMARK_RESULT_WEBHOOK_URL} - - BENCHMARK_RESULT_WEBHOOK_AUTH_HEADER=${BENCHMARK_RESULT_WEBHOOK_AUTH_HEADER} diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-with-insights/setup.mjs b/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-with-insights/setup.mjs deleted file mode 100644 index 4f883a7b49..0000000000 --- a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite-with-insights/setup.mjs +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env zx - -import path from 'path'; -import { fs } from 'zx'; - -/** - * Creates the needed directories so the permissions get set correctly. - */ -export function setup({ runDir }) { - const neededDirs = ['n8n']; - - for (const dir of neededDirs) { - fs.ensureDirSync(path.join(runDir, dir)); - } -} diff --git a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite/docker-compose.yml b/packages/@n8n/benchmark/scripts/n8n-setups/sqlite/docker-compose.yml index de20840a7a..37e1424cfd 100644 --- a/packages/@n8n/benchmark/scripts/n8n-setups/sqlite/docker-compose.yml +++ b/packages/@n8n/benchmark/scripts/n8n-setups/sqlite/docker-compose.yml @@ -17,8 +17,6 @@ services: # Task Runner config - N8N_RUNNERS_ENABLED=true - N8N_RUNNERS_MODE=internal - # Disable Insights - - N8N_DISABLED_MODULES=insights ports: - 5678:5678 volumes: