Browse Source

Increase default poll interval for isolated queues

pull/8988/head
ViacheslavKlimov 3 years ago
parent
commit
12f8e14c04
  1. 6
      ui-ngx/src/app/modules/home/components/profile/tenant-profile.component.ts

6
ui-ngx/src/app/modules/home/components/profile/tenant-profile.component.ts

@ -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,

Loading…
Cancel
Save