IFIX Fiscal Event Aggregator
Overview
Fiscal Event Aggregator is a java standalone application, which will be running as Cron Job to aggregate the fiscal event data from the Druid data store to Postgres DB.
Version
Current Version : 2.0.0
Prerequisites
Before you proceed with the configuration, make sure the following pre-requisites are met
Java 8
Druid DB & Postgres DB should be up and running
Features
Fiscal-Event-Aggregator computes the aggregate of data over a selected time period. An aggregator will apply the time range filter according to the following approach :
Fiscal periods will be picked up as per the current system time. The current year will be the current fiscal period starting from 1st of April of the current year to 31st March of (current year+1). And it will also aggregate the data of one previous fiscal year starting from 1st of April of (current year -1) to 31st March of current year.
As per the fiscal time periods, Below steps are there to aggregate the final fiscal event data :
Group the sum of amount based on department entity ancestry[6] id(
attributes.departmentEntity.ancestry[6].id
) that is GP(Gram Panchayat), COA(chart of account) id, and event type.Difference of sum of amount of "DEMAND" and "RECEIPT" event type with respect to distinct department entity ancestry[6] id(
attributes.departmentEntity.ancestry[6].id
) that is GP(Gram Panchayat).Difference of sum of amount of "BILL" and "PAYMENT" event type with respect to distinct department entity ancestry[6] id(
attributes.departmentEntity.ancestry[6].id
) that is GP(Gram Panchayat).
Upsert the final aggregated fiscal event data into the Postgres DB.
Environment
Note : Below environment variables need to be configured with respect to environment
Key | Value | Description |
---|---|---|
|
| This is hardcoded value And won’t change w.r.t environment. And It depends upon the druid broker’s protocol that is getting used to connect. |
|
| This is hardcoded value And won’t change w.r.t environment. It depends upon the druid broker protocol that we are using and corresponding port of that druid broker. |
|
| this is kept under |
|
| This is the data Source present in Druid DB. It will same as it defined in Druid DB. |
Interaction diagram
Configuration
Update all the configuration in the dev.yaml, qa.yml, prod.yaml file.