perf(editor): Introduce execution data throttling for logs and canvas updates (no-changelog) (#18812)

This commit is contained in:
Alex Grozav
2025-08-26 16:01:15 +01:00
committed by GitHub
parent af2157f384
commit f5719371b1
3 changed files with 25 additions and 9 deletions

View File

@@ -984,3 +984,10 @@ export const AI_NODES_PACKAGE_NAME = '@n8n/n8n-nodes-langchain';
export const AI_ASSISTANT_MAX_CONTENT_LENGTH = 100; // in kilobytes
export const RUN_DATA_DEFAULT_PAGE_SIZE = 25;
/**
* Performance Optimizations
*/
export const LOGS_EXECUTION_DATA_THROTTLE_DURATION = 1000;
export const CANVAS_EXECUTION_DATA_THROTTLE_DURATION = 500;