Increase default poll interval for isolated queues

This commit is contained in:
ViacheslavKlimov 2023-08-03 16:34:45 +03:00
parent 0f13d46144
commit 12f8e14c04

View File

@ -60,7 +60,7 @@ export class TenantProfileComponent extends EntityComponent<TenantProfile> {
name: 'Main',
packProcessingTimeout: 2000,
partitions: 2,
pollInterval: 25,
pollInterval: 2000,
processingStrategy: {
failurePercentage: 0,
maxPauseBetweenRetries: 3,
@ -82,7 +82,7 @@ export class TenantProfileComponent extends EntityComponent<TenantProfile> {
id: guid(),
name: 'HighPriority',
topic: 'tb_rule_engine.hp',
pollInterval: 25,
pollInterval: 2000,
partitions: 2,
consumerPerPartition: true,
packProcessingTimeout: 2000,
@ -106,7 +106,7 @@ export class TenantProfileComponent extends EntityComponent<TenantProfile> {
id: guid(),
name: 'SequentialByOriginator',
topic: 'tb_rule_engine.sq',
pollInterval: 25,
pollInterval: 2000,
partitions: 2,
consumerPerPartition: true,
packProcessingTimeout: 2000,