Versions Compared

Key

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

...

Step-by-step guide to model the migration flow

 The service you defined can be use in a flow like this:

  • A project that wants to index the aggregates has to create an exposed migration flow.
  • This flow should be called for every aggregate Id in the database. It can be passed as a parameter in the URL, and retrieved from there with the BB_SetRequestParameters service.
  • In this flow you then call the AQ_Aggregate_AggregateRead to Read to load the existing aggregates aggregate into the profile. It might be needed to also load referenced aggregates in order to obtain a complete profile.
  • The next step is to use the AQ_Aggregate_Index_Migrate or AQ_Aggregate_Update service to add update the aggregate index.

 

UI Text Box
typeinfo

The code to query the database, to select the applicable Ids, and passing them one by one to the exposed flow is left to the project team.

...