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