mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
refactor(core): Port pruning
config (#11507)
This commit is contained in:
parent
60c1ace64b
commit
ce963e8824
35
packages/@n8n/config/src/configs/pruning.config.ts
Normal file
35
packages/@n8n/config/src/configs/pruning.config.ts
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
import { Config, Env } from '../decorators';
|
||||||
|
|
||||||
|
@Config
|
||||||
|
export class PruningConfig {
|
||||||
|
/** Whether to delete past executions on a rolling basis. */
|
||||||
|
@Env('EXECUTIONS_DATA_PRUNE')
|
||||||
|
isEnabled: boolean = true;
|
||||||
|
|
||||||
|
/** How old (hours) a finished execution must be to qualify for soft-deletion. */
|
||||||
|
@Env('EXECUTIONS_DATA_MAX_AGE')
|
||||||
|
maxAge: number = 336;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Max number of finished executions to keep in database. Does not necessarily
|
||||||
|
* prune to the exact max number. `0` for unlimited.
|
||||||
|
*/
|
||||||
|
@Env('EXECUTIONS_DATA_PRUNE_MAX_COUNT')
|
||||||
|
maxCount: number = 10_000;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* How old (hours) a finished execution must be to qualify for hard-deletion.
|
||||||
|
* This buffer by default excludes recent executions as the user may need
|
||||||
|
* them while building a workflow.
|
||||||
|
*/
|
||||||
|
@Env('EXECUTIONS_DATA_HARD_DELETE_BUFFER')
|
||||||
|
hardDeleteBuffer: number = 1;
|
||||||
|
|
||||||
|
/** How often (minutes) execution data should be hard-deleted. */
|
||||||
|
@Env('EXECUTIONS_DATA_PRUNE_HARD_DELETE_INTERVAL')
|
||||||
|
hardDeleteInterval: number = 15;
|
||||||
|
|
||||||
|
/** How often (minutes) execution data should be soft-deleted */
|
||||||
|
@Env('EXECUTIONS_DATA_PRUNE_SOFT_DELETE_INTERVAL')
|
||||||
|
softDeleteInterval: number = 60;
|
||||||
|
}
|
|
@ -10,6 +10,7 @@ import { LicenseConfig } from './configs/license.config';
|
||||||
import { LoggingConfig } from './configs/logging.config';
|
import { LoggingConfig } from './configs/logging.config';
|
||||||
import { MultiMainSetupConfig } from './configs/multi-main-setup.config';
|
import { MultiMainSetupConfig } from './configs/multi-main-setup.config';
|
||||||
import { NodesConfig } from './configs/nodes.config';
|
import { NodesConfig } from './configs/nodes.config';
|
||||||
|
import { PruningConfig } from './configs/pruning.config';
|
||||||
import { PublicApiConfig } from './configs/public-api.config';
|
import { PublicApiConfig } from './configs/public-api.config';
|
||||||
import { TaskRunnersConfig } from './configs/runners.config';
|
import { TaskRunnersConfig } from './configs/runners.config';
|
||||||
import { ScalingModeConfig } from './configs/scaling-mode.config';
|
import { ScalingModeConfig } from './configs/scaling-mode.config';
|
||||||
|
@ -24,6 +25,7 @@ import { Config, Env, Nested } from './decorators';
|
||||||
export { Config, Env, Nested } from './decorators';
|
export { Config, Env, Nested } from './decorators';
|
||||||
export { TaskRunnersConfig } from './configs/runners.config';
|
export { TaskRunnersConfig } from './configs/runners.config';
|
||||||
export { SecurityConfig } from './configs/security.config';
|
export { SecurityConfig } from './configs/security.config';
|
||||||
|
export { PruningConfig } from './configs/pruning.config';
|
||||||
export { FrontendBetaFeatures, FrontendConfig } from './configs/frontend.config';
|
export { FrontendBetaFeatures, FrontendConfig } from './configs/frontend.config';
|
||||||
export { LOG_SCOPES } from './configs/logging.config';
|
export { LOG_SCOPES } from './configs/logging.config';
|
||||||
export type { LogScope } from './configs/logging.config';
|
export type { LogScope } from './configs/logging.config';
|
||||||
|
@ -112,4 +114,7 @@ export class GlobalConfig {
|
||||||
|
|
||||||
@Nested
|
@Nested
|
||||||
security: SecurityConfig;
|
security: SecurityConfig;
|
||||||
|
|
||||||
|
@Nested
|
||||||
|
pruning: PruningConfig;
|
||||||
}
|
}
|
||||||
|
|
|
@ -271,6 +271,14 @@ describe('GlobalConfig', () => {
|
||||||
blockFileAccessToN8nFiles: true,
|
blockFileAccessToN8nFiles: true,
|
||||||
daysAbandonedWorkflow: 90,
|
daysAbandonedWorkflow: 90,
|
||||||
},
|
},
|
||||||
|
pruning: {
|
||||||
|
isEnabled: true,
|
||||||
|
maxAge: 336,
|
||||||
|
maxCount: 10_000,
|
||||||
|
hardDeleteBuffer: 1,
|
||||||
|
hardDeleteInterval: 15,
|
||||||
|
softDeleteInterval: 60,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
it('should use all default values when no env variables are defined', () => {
|
it('should use all default values when no env variables are defined', () => {
|
||||||
|
|
|
@ -98,54 +98,6 @@ export const schema = {
|
||||||
env: 'EXECUTIONS_DATA_SAVE_MANUAL_EXECUTIONS',
|
env: 'EXECUTIONS_DATA_SAVE_MANUAL_EXECUTIONS',
|
||||||
},
|
},
|
||||||
|
|
||||||
// To not exceed the database's capacity and keep its size moderate
|
|
||||||
// the execution data gets pruned regularly (default: 15 minute interval).
|
|
||||||
// All saved execution data older than the max age will be deleted.
|
|
||||||
// Pruning is currently not activated by default, which will change in
|
|
||||||
// a future version.
|
|
||||||
pruneData: {
|
|
||||||
doc: 'Delete data of past executions on a rolling basis',
|
|
||||||
format: Boolean,
|
|
||||||
default: true,
|
|
||||||
env: 'EXECUTIONS_DATA_PRUNE',
|
|
||||||
},
|
|
||||||
pruneDataMaxAge: {
|
|
||||||
doc: 'How old (hours) the finished execution data has to be to get soft-deleted',
|
|
||||||
format: Number,
|
|
||||||
default: 336,
|
|
||||||
env: 'EXECUTIONS_DATA_MAX_AGE',
|
|
||||||
},
|
|
||||||
pruneDataHardDeleteBuffer: {
|
|
||||||
doc: 'How old (hours) the finished execution data has to be to get hard-deleted. By default, this buffer excludes recent executions as the user may need them while building a workflow.',
|
|
||||||
format: Number,
|
|
||||||
default: 1,
|
|
||||||
env: 'EXECUTIONS_DATA_HARD_DELETE_BUFFER',
|
|
||||||
},
|
|
||||||
pruneDataIntervals: {
|
|
||||||
hardDelete: {
|
|
||||||
doc: 'How often (minutes) execution data should be hard-deleted',
|
|
||||||
format: Number,
|
|
||||||
default: 15,
|
|
||||||
env: 'EXECUTIONS_DATA_PRUNE_HARD_DELETE_INTERVAL',
|
|
||||||
},
|
|
||||||
softDelete: {
|
|
||||||
doc: 'How often (minutes) execution data should be soft-deleted',
|
|
||||||
format: Number,
|
|
||||||
default: 60,
|
|
||||||
env: 'EXECUTIONS_DATA_PRUNE_SOFT_DELETE_INTERVAL',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
// Additional pruning option to delete executions if total count exceeds the configured max.
|
|
||||||
// Deletes the oldest entries first
|
|
||||||
// Set to 0 for No limit
|
|
||||||
pruneDataMaxCount: {
|
|
||||||
doc: "Maximum number of finished executions to keep in DB. Doesn't necessarily prune exactly to max number. 0 = no limit",
|
|
||||||
format: Number,
|
|
||||||
default: 10000,
|
|
||||||
env: 'EXECUTIONS_DATA_PRUNE_MAX_COUNT',
|
|
||||||
},
|
|
||||||
|
|
||||||
queueRecovery: {
|
queueRecovery: {
|
||||||
interval: {
|
interval: {
|
||||||
doc: 'How often (minutes) to check for queue recovery',
|
doc: 'How often (minutes) to check for queue recovery',
|
||||||
|
|
|
@ -35,7 +35,6 @@ import type {
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
import { Service } from 'typedi';
|
import { Service } from 'typedi';
|
||||||
|
|
||||||
import config from '@/config';
|
|
||||||
import { AnnotationTagEntity } from '@/databases/entities/annotation-tag-entity.ee';
|
import { AnnotationTagEntity } from '@/databases/entities/annotation-tag-entity.ee';
|
||||||
import { AnnotationTagMapping } from '@/databases/entities/annotation-tag-mapping.ee';
|
import { AnnotationTagMapping } from '@/databases/entities/annotation-tag-mapping.ee';
|
||||||
import { ExecutionAnnotation } from '@/databases/entities/execution-annotation.ee';
|
import { ExecutionAnnotation } from '@/databases/entities/execution-annotation.ee';
|
||||||
|
@ -460,8 +459,7 @@ export class ExecutionRepository extends Repository<ExecutionEntity> {
|
||||||
}
|
}
|
||||||
|
|
||||||
async softDeletePrunableExecutions() {
|
async softDeletePrunableExecutions() {
|
||||||
const maxAge = config.getEnv('executions.pruneDataMaxAge'); // in h
|
const { maxAge, maxCount } = this.globalConfig.pruning;
|
||||||
const maxCount = config.getEnv('executions.pruneDataMaxCount');
|
|
||||||
|
|
||||||
// Sub-query to exclude executions having annotations
|
// Sub-query to exclude executions having annotations
|
||||||
const annotatedExecutionsSubQuery = this.manager
|
const annotatedExecutionsSubQuery = this.manager
|
||||||
|
@ -517,7 +515,7 @@ export class ExecutionRepository extends Repository<ExecutionEntity> {
|
||||||
|
|
||||||
async hardDeleteSoftDeletedExecutions() {
|
async hardDeleteSoftDeletedExecutions() {
|
||||||
const date = new Date();
|
const date = new Date();
|
||||||
date.setHours(date.getHours() - config.getEnv('executions.pruneDataHardDeleteBuffer'));
|
date.setHours(date.getHours() - this.globalConfig.pruning.hardDeleteBuffer);
|
||||||
|
|
||||||
const workflowIdsAndExecutionIds = (
|
const workflowIdsAndExecutionIds = (
|
||||||
await this.find({
|
await this.find({
|
||||||
|
|
|
@ -771,8 +771,8 @@ export class TelemetryEventRelay extends EventRelay {
|
||||||
executions_data_save_manual_executions: config.getEnv(
|
executions_data_save_manual_executions: config.getEnv(
|
||||||
'executions.saveDataManualExecutions',
|
'executions.saveDataManualExecutions',
|
||||||
),
|
),
|
||||||
executions_data_prune: config.getEnv('executions.pruneData'),
|
executions_data_prune: this.globalConfig.pruning.isEnabled,
|
||||||
executions_data_max_age: config.getEnv('executions.pruneDataMaxAge'),
|
executions_data_max_age: this.globalConfig.pruning.maxAge,
|
||||||
},
|
},
|
||||||
n8n_deployment_type: config.getEnv('deployment.type'),
|
n8n_deployment_type: config.getEnv('deployment.type'),
|
||||||
n8n_binary_data_mode: binaryDataConfig.mode,
|
n8n_binary_data_mode: binaryDataConfig.mode,
|
||||||
|
|
|
@ -222,9 +222,9 @@ export class FrontendService {
|
||||||
licensePruneTime: -1,
|
licensePruneTime: -1,
|
||||||
},
|
},
|
||||||
pruning: {
|
pruning: {
|
||||||
isEnabled: config.getEnv('executions.pruneData'),
|
isEnabled: this.globalConfig.pruning.isEnabled,
|
||||||
maxAge: config.getEnv('executions.pruneDataMaxAge'),
|
maxAge: this.globalConfig.pruning.maxAge,
|
||||||
maxCount: config.getEnv('executions.pruneDataMaxCount'),
|
maxCount: this.globalConfig.pruning.maxCount,
|
||||||
},
|
},
|
||||||
security: {
|
security: {
|
||||||
blockFileAccessToN8nFiles: this.securityConfig.blockFileAccessToN8nFiles,
|
blockFileAccessToN8nFiles: this.securityConfig.blockFileAccessToN8nFiles,
|
||||||
|
|
|
@ -3,7 +3,6 @@ import { BinaryDataService, InstanceSettings } from 'n8n-core';
|
||||||
import { jsonStringify } from 'n8n-workflow';
|
import { jsonStringify } from 'n8n-workflow';
|
||||||
import { Service } from 'typedi';
|
import { Service } from 'typedi';
|
||||||
|
|
||||||
import config from '@/config';
|
|
||||||
import { inTest, TIME } from '@/constants';
|
import { inTest, TIME } from '@/constants';
|
||||||
import { ExecutionRepository } from '@/databases/repositories/execution.repository';
|
import { ExecutionRepository } from '@/databases/repositories/execution.repository';
|
||||||
import { OnShutdown } from '@/decorators/on-shutdown';
|
import { OnShutdown } from '@/decorators/on-shutdown';
|
||||||
|
@ -16,8 +15,8 @@ export class PruningService {
|
||||||
private hardDeletionBatchSize = 100;
|
private hardDeletionBatchSize = 100;
|
||||||
|
|
||||||
private rates: Record<string, number> = {
|
private rates: Record<string, number> = {
|
||||||
softDeletion: config.getEnv('executions.pruneDataIntervals.softDelete') * TIME.MINUTE,
|
softDeletion: this.globalConfig.pruning.softDeleteInterval * TIME.MINUTE,
|
||||||
hardDeletion: config.getEnv('executions.pruneDataIntervals.hardDelete') * TIME.MINUTE,
|
hardDeletion: this.globalConfig.pruning.hardDeleteInterval * TIME.MINUTE,
|
||||||
};
|
};
|
||||||
|
|
||||||
public softDeletionInterval: NodeJS.Timer | undefined;
|
public softDeletionInterval: NodeJS.Timer | undefined;
|
||||||
|
@ -52,7 +51,7 @@ export class PruningService {
|
||||||
|
|
||||||
private isPruningEnabled() {
|
private isPruningEnabled() {
|
||||||
const { instanceType, isFollower } = this.instanceSettings;
|
const { instanceType, isFollower } = this.instanceSettings;
|
||||||
if (!config.getEnv('executions.pruneData') || inTest || instanceType !== 'main') {
|
if (!this.globalConfig.pruning.isEnabled || inTest || instanceType !== 'main') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
|
import { GlobalConfig } from '@n8n/config';
|
||||||
import { mock } from 'jest-mock-extended';
|
import { mock } from 'jest-mock-extended';
|
||||||
import { BinaryDataService, InstanceSettings } from 'n8n-core';
|
import { BinaryDataService, InstanceSettings } from 'n8n-core';
|
||||||
import type { ExecutionStatus } from 'n8n-workflow';
|
import type { ExecutionStatus } from 'n8n-workflow';
|
||||||
import Container from 'typedi';
|
import Container from 'typedi';
|
||||||
|
|
||||||
import config from '@/config';
|
|
||||||
import { TIME } from '@/constants';
|
import { TIME } from '@/constants';
|
||||||
import type { ExecutionEntity } from '@/databases/entities/execution-entity';
|
import type { ExecutionEntity } from '@/databases/entities/execution-entity';
|
||||||
import type { WorkflowEntity } from '@/databases/entities/workflow-entity';
|
import type { WorkflowEntity } from '@/databases/entities/workflow-entity';
|
||||||
|
@ -28,17 +28,19 @@ describe('softDeleteOnPruningCycle()', () => {
|
||||||
const now = new Date();
|
const now = new Date();
|
||||||
const yesterday = new Date(Date.now() - TIME.DAY);
|
const yesterday = new Date(Date.now() - TIME.DAY);
|
||||||
let workflow: WorkflowEntity;
|
let workflow: WorkflowEntity;
|
||||||
|
let globalConfig: GlobalConfig;
|
||||||
|
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
await testDb.init();
|
await testDb.init();
|
||||||
|
|
||||||
|
globalConfig = Container.get(GlobalConfig);
|
||||||
pruningService = new PruningService(
|
pruningService = new PruningService(
|
||||||
mockInstance(Logger),
|
mockInstance(Logger),
|
||||||
instanceSettings,
|
instanceSettings,
|
||||||
Container.get(ExecutionRepository),
|
Container.get(ExecutionRepository),
|
||||||
mockInstance(BinaryDataService),
|
mockInstance(BinaryDataService),
|
||||||
mock(),
|
mock(),
|
||||||
mock(),
|
globalConfig,
|
||||||
);
|
);
|
||||||
|
|
||||||
workflow = await createWorkflow();
|
workflow = await createWorkflow();
|
||||||
|
@ -52,10 +54,6 @@ describe('softDeleteOnPruningCycle()', () => {
|
||||||
await testDb.terminate();
|
await testDb.terminate();
|
||||||
});
|
});
|
||||||
|
|
||||||
afterEach(() => {
|
|
||||||
config.load(config.default);
|
|
||||||
});
|
|
||||||
|
|
||||||
async function findAllExecutions() {
|
async function findAllExecutions() {
|
||||||
return await Container.get(ExecutionRepository).find({
|
return await Container.get(ExecutionRepository).find({
|
||||||
order: { id: 'asc' },
|
order: { id: 'asc' },
|
||||||
|
@ -64,9 +62,9 @@ describe('softDeleteOnPruningCycle()', () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
describe('when EXECUTIONS_DATA_PRUNE_MAX_COUNT is set', () => {
|
describe('when EXECUTIONS_DATA_PRUNE_MAX_COUNT is set', () => {
|
||||||
beforeEach(() => {
|
beforeAll(() => {
|
||||||
config.set('executions.pruneDataMaxCount', 1);
|
globalConfig.pruning.maxAge = 336;
|
||||||
config.set('executions.pruneDataMaxAge', 336);
|
globalConfig.pruning.maxCount = 1;
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should mark as deleted based on EXECUTIONS_DATA_PRUNE_MAX_COUNT', async () => {
|
test('should mark as deleted based on EXECUTIONS_DATA_PRUNE_MAX_COUNT', async () => {
|
||||||
|
@ -165,9 +163,9 @@ describe('softDeleteOnPruningCycle()', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('when EXECUTIONS_DATA_MAX_AGE is set', () => {
|
describe('when EXECUTIONS_DATA_MAX_AGE is set', () => {
|
||||||
beforeEach(() => {
|
beforeAll(() => {
|
||||||
config.set('executions.pruneDataMaxAge', 1); // 1h
|
globalConfig.pruning.maxAge = 1;
|
||||||
config.set('executions.pruneDataMaxCount', 0);
|
globalConfig.pruning.maxCount = 0;
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should mark as deleted based on EXECUTIONS_DATA_MAX_AGE', async () => {
|
test('should mark as deleted based on EXECUTIONS_DATA_MAX_AGE', async () => {
|
||||||
|
|
Loading…
Reference in a new issue