Persister Configuration
Overview
Persister Service persists data in the database in a sync manner providing very low latency. The queries which have to be used to insert/update data in the database are written in yaml file. The values which have to be inserted are extracted from the json using jsonPaths defined in the same yaml configuration.
Sample Configuration
Below is a sample configuration which inserts data in a couple of tables.
The above configuration is used to insert data published on the kafka topic save-pgr-request
in the tables eg_pgr_service_v2
and eg_pgr_address_v2
. Similarly, the configuration can be written to update data. Following is a sample configuration:
The above configuration is used to update the data in tables. Similarly, the upsert operation can be done using ON CONFLICT() function in psql.
Variable List
The table below describes each field variable in the configuration.
Variable Name | Description |
---|---|
serviceName | The module name to which the configuration belongs |
version | Version of the config |
description | Detailed description of the operations performed by the config |
fromTopic | Kafka topic from which data has to be persisted in DB |
isTransaction | Flag to enable/disable perform operations in Transaction fashion |
query | Prepared Statements to insert/update data in DB |
basePath | JsonPath of the object that has to be inserted/updated. |
jsonPath | JsonPath of the fields that has to be inserted in table columns |
type | Type of field |
dbType | DB Type of the column in which field is to be inserted |
Last updated