IFIX Fiscal Event Post Processor
Overview
Fiscal Event Post Processor is a streaming pipeline for validated fiscal event data. Apache Kafka has been used to stream the validated fiscal event data, process it for dereference, unbundle, flatten And finally push these details to Mongo and Druid data store.
Version
Current version : 1.1.0
Prerequisites
Before you proceed with the configuration, make sure the following pre-requisites are met
Java 8
Apache Kafka and Kafka-Connect server should be up and running
Druid DB & MongoDB should be up and running
Below dependent services are required:
iFix Master data service
iFix Fiscal Event service
Features
Fiscal Event post-processor consumes the fiscal event validated data from Kafka topic named “fiscal-event-request-validated” and process it by following below steps :
Fiscal event validated data will get dereferenced. For dereferencing, pass the service ids like project id, COA id, Tenant id etc. to corresponding services - Master service & Department Entity service And get the corresponding object(s). Once the fiscal event data is dereferenced, push/send the same data to Mongo Sink and dereference Topic.
Mongo connector will pick up the data from the “fiscal-event-mongodb-sink“ topic and push it to Mongo Datastore.
Unbundle consumers pick up the dereferenced fiscal event data from dereferencing topic. Dereference fiscal event data gets unbundled and then flattened. Once the flattening is complete, push/send the same data to Druid Sink topic.
Flattened fiscal event data is pushed to Druid DB from a topic named: fiscal-event-druid-sink.
Kafka to Data Store Sink
MongoDB Sink
The Kafka-connect is used to push the data from a Kafka topic to MongoDB. Follow the steps below to start the connector:
Connect (port-forward) with the Kafka-connect server.
Create a new connector with a POST API call to localhost:8083/connectors.
The request body for that API call is written in the file fiscal-event-mongodb-sink.
Within that file, wherever ${---} replace it with the actual value based on the environment. Get ${mongo-db-authenticated-uri} from the configured secrets of the environment.
(Optional) Verify and make changes to the topic names.The connector is ready. You can check it using API call GET localhost:8083/connectors.
Druid Sink
The Druid console is used to start ingesting data from a Kafka topic to the Druid data store. Follow the steps mentioned below to start the Druid Supervisor
Open the Druid console
Go to the Load Data section
Select Other
Click on Submit Supervisor
Copy...Paste the JSON from the druid-ingestion-config.json file in the available text box
Verify the Kafka topic name and the Kafka bootstrap server address before submitting the config
Submit the config and the data ingestion should start into the fiscal-event data source
Interaction Diagram
Environment
Note: Kafka topic needs to be configured with respect to the environment
Key | Value | Description | Remarks |
---|---|---|---|
|
| Fiscal event post processor will consume data from this topic | Kafka topic should be same as configured in Fiscal event service. |
|
| Dereferenced fiscal event data will be pushed to this topic | NA |
|
| NA | NA |
|
| Dereferenced fiscal event data will be pushed to this topic and will consumed Kafka connect to persist in Mongo Data Store. | Mongo Kafka connects topic should be same. |
|
| Flattened Fiscal Event data will be pushed to this topic. | While druid ingest of fiscal event , make sure it has the same topic as mentioned here. |
Configurations and Setup
Update all the DB, Kafka producer & Consumer And URI configuration in the dev.yaml, qa.yaml, prod.yaml file.
References and Notes