Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The Aggregation data integration pattern is the act of taking or receiving data from multiple systems and inserting consolidating them into one. For example, customer transaction data integration could reside in three different systems, and a data analyst might want would like to generate a report which uses data from all of them. One solution could be to create a daily migration process from each of those systems system to a data repository and then perform an aggregation query that against that database. But, then there we would be another database to keep track of and keep synchronized.In addition, as things change in the three other systems, the data repository would have to be constantly kept up to date. Another need to maintain this aggregate structure and maintain its synchronizations.

An additional downside is that the data would be a snapshot that is a day old. Thus, so for today’s real-time reportsnumbers, the analyst would have to either manually initiate the migrations manually or wait another day. One Or, they could set up three broadcast applications, achieving a situation where the reporting aggregate database is always up to date synchronized with the most recent changes in each of the systems. But there would still be a , once again we would need to maintain this database which only stores replicated data so that it can be queried every so often. In addition, there will be a number of wasted API calls to ensure that the database is always up to X minutes from reality.

This is where the scenario that depicts the advantages of the aggregation pattern comes into play. If you build an application, or use one of our templates that is built on it, you will notice that you can on demand query multiple systems, merge . It provides for an on-demand query across multiple systems, merges the data set, and do as you please with it.For example, you can build an integration app which queries the various systems, merges the data and then produces a report. This way you provides for aggregation

Using this approach we can avoid having a separate database and you can have the report arrive in a format like .csv or the format of your choice. You can place the report in the location where reports are stored directly.

...

Value of Aggregation

The aggregation pattern derives its value from allowing you to extract and process data from multiple systems in one united application. This means The benefit is that the data is up to date at the time that you need it, does not get replicated, and can be processed or merged to produce the dataset you want.

...

Usefulness of Aggregation

The aggregation pattern is considerably valuable if you when we are creating orchestration APIs to “modernize” legacy systems, . This is especially true when you we are creating an API which gets that extracts data from multiple systems , and then processes it merges that data into one response. Another use case is creating reports or dashboards that pull extract data from multiple systems, aggregate its measures and create an interactive experience with that data.

Finally, you we may have multiple systems that you use used for compliance or auditing purposes which that need to have extract related data from multiple systems. The aggregation pattern is helpful in ensuring that your compliance data lives in one system but can be the amalgamation of relevant data from multiple systems. You can therefore reduce the amount of learning that needs to take place across the various systems to ensure you have visibility into what is going on.