diff options
author | Jim Hahn <jrh3@att.com> | 2021-07-06 10:19:52 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2021-07-06 10:55:13 -0400 |
commit | 18bf88fc5aed7586249319af690fb5c09451ad03 (patch) | |
tree | 8419adca544445d64c37714b5867c7e927945317 /testsuites/stability/src | |
parent | 4f37fcf24755332c256f72104df36a43cb4c7560 (diff) |
Use separate subscription for heartbeats
Separated the heartbeat processing onto its own POLICY-HEARTBEAT topic,
still on the "real" (i.e., "effective") POLICY-PDP-PAP topic, like we
had originally been doing with the statistics. With this change,
statistics processing continues to be part of the heartbeat
class/processing, thus a separate class is not required to listen for,
and handle, statistics.
This new subscription uses a shared consumer group so that only one PAP
will process any given heartbeat message, which should reduce the
likelihood of DB contention and duplicate keys.
This also means that the "saveStatisticsInDb" flag will still be used,
which is a more obvious mechanism for controlling the storing of
statistics than the presence/absence of a topic in the config file.
Issue-ID: POLICY-3460
Change-Id: Ia07132b1c7aef006af86fddbe677fb1243a4e2c3
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'testsuites/stability/src')
-rw-r--r-- | testsuites/stability/src/main/resources/papsetup/config/pap/etc/defaultConfig.json | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/testsuites/stability/src/main/resources/papsetup/config/pap/etc/defaultConfig.json b/testsuites/stability/src/main/resources/papsetup/config/pap/etc/defaultConfig.json index 4af2f5df..b98cdef9 100644 --- a/testsuites/stability/src/main/resources/papsetup/config/pap/etc/defaultConfig.json +++ b/testsuites/stability/src/main/resources/papsetup/config/pap/etc/defaultConfig.json @@ -34,6 +34,14 @@ "servers" : [ "10.2.0.41:3904" ], "topicCommInfrastructure" : "dmaap", "fetchTimeout": 15000 + }, + { + "topic" : "PDP-HEARTBEAT", + "effectiveTopic": "POLICY-PDP-PAP", + "consumerGroup": "policy-pap", + "servers" : [ "10.2.0.41:3904" ], + "topicCommInfrastructure" : "dmaap", + "fetchTimeout": 15000 }], "topicSinks" : [{ "topic" : "POLICY-PDP-PAP", @@ -46,4 +54,4 @@ "topicCommInfrastructure" : "dmaap" }] } -}
\ No newline at end of file +} |