Service - Message Config Manager: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 27: Line 27:
; msgCfg
; msgCfg
: object containing the full msgCfg
: object containing the full msgCfg
= Notes =
* Currently restricting get Lambdas to return list of serviceNames and per serviceName list of msgCfgs, am not allowing full list of msgCfgs because fear it could exceed lambda payload limits, whereas per serviceName list should stay under the limits


= Working documents =
= Working documents =

Revision as of 01:37, 10 November 2020

Overview

Maintians a record of the configuration for every message from every service in the project.

Repository

https://bitbucket.org/stb_working/message-config-manager/src/master/

DynamoDB tables

Standard Config Table Per Service

Configuration tags

configKey = serviceName, configTag = {service name}, configValue = {empty}

MsgCfg

Fields

serviceName
(partition key)
msgTag
(sort key)
msgCfg
object containing the full msgCfg

Notes

  • Currently restricting get Lambdas to return list of serviceNames and per serviceName list of msgCfgs, am not allowing full list of msgCfgs because fear it could exceed lambda payload limits, whereas per serviceName list should stay under the limits

Working documents

Working documents - Message Config Manager