AXA BrowserAgent data is not consistently appearing in DX Dashboards
search cancel

AXA BrowserAgent data is not consistently appearing in DX Dashboards

book

Article ID: 419751

calendar_today

Updated On:

Products

DX SaaS DX Operational Observability

Issue/Introduction

AXA BrowserAgent data is not consistently appearing. At times the data show up as expected but most of the time they do not.

Environment

DX O2

Cause

Capacity issue

Resolution

Apply the below optimization in the Tenant

STEP # 1: Kafka Topics Update( from 5 to 8 partitions )

SYNTAX: kafka-topics.sh --bootstrap-server localhost:9092 --alter  --topic <TOPIC NAME> --partitions <PartitionsCount>

./kafka-topics.sh --bootstrap-server localhost:9092 --alter --topic maaBAAggregator_<cohortid> --partitions 8
./kafka-topics.sh --bootstrap-server localhost:9092 --alter --topic axaDecrypted_<cohortid> --partitions 8
./kafka-topics.sh --bootstrap-server localhost:9092 --alter --topic axaIndexer_<cohortid> --partitions 8
./kafka-topics.sh --bootstrap-server localhost:9092 --alter --topic axaIndexerSessionEvents_<cohortid> --partitions 8
./kafka-topics.sh --bootstrap-server localhost:9092 --alter --topic axaUserRetention_<cohortid> --partitions 8

STEP # 2: Deployment Updates(ScaleUp from 5 to 8)

SYNTAX: kubectl scale --replicas=<REPLICAS #> deployment <name> -n <namespace>

kubectl scale --replicas=8 deployment axa-transformer-websdk -n<namespace>
kubectl scale --replicas=8 deployment axa-indexer -n<namespace>
kubectl scale --replicas=8 deployment axa-kibanaindexer -n<namespace>
kubectl scale --replicas=8 deployment axa-userprocessor -n<namespace>

STEP # 3: Decryptor Update(ScaleDown to 2)

kubectl scale --replicas=2 deployment axa-decryptor -n <namespace>