16 lines
698 B
TypeScript
16 lines
698 B
TypeScript
export const LIVE_ENVIRONMENT = "live";
|
|
export const DEV_ENVIRONMENT = "development";
|
|
export const MAX_LIVE_PROJECTS = 1;
|
|
export const DEFAULT_MAX_CONCURRENT_RUNS = 10;
|
|
export const MAX_CONCURRENT_RUNS_LIMIT = 20;
|
|
export const PREPROCESS_RETRY_LIMIT = 2;
|
|
export const EXECUTE_JOB_RETRY_LIMIT = 10;
|
|
export const MAX_RUN_YIELDED_EXECUTIONS = 100;
|
|
export const RUN_CHUNK_EXECUTION_BUFFER = 350;
|
|
export const MAX_RUN_CHUNK_EXECUTION_LIMIT = 120000; // 2 minutes
|
|
export const VERCEL_RESPONSE_TIMEOUT_STATUS_CODES = [408, 504];
|
|
export const MAX_BATCH_TRIGGER_ITEMS = 100;
|
|
export const MAX_TASK_RUN_ATTEMPTS = 250;
|
|
export const BULK_ACTION_RUN_LIMIT = 250;
|
|
export const MAX_JOB_RUN_EXECUTION_COUNT = 250;
|