Hi All
I was uploading an excel with more than 60k records and it needs to be bootstrapped using 2 processes(for 2 sheets). I am maintaining one flag aggregate to know whether the process was completed in the front end by refreshing it at regular time intervals(3 seconds). My concern is even if the process completes in 4 minutes, the aggregate took more time to refresh and gives the result in 5 or 6 minutes (took at least 1 to 2 mins to refresh). This was working fine with a smaller amount of data (for eg: 100) as it refresh within 3 to 5 seconds. It's just an aggregate that contains flag attributes to know if the process is completed or not.
Hi Prathoswar,
Does the aggregate use the same entities as the bootstrap? Because in that case you could have a locking problem (the timer locking the entities, so your refresh aggregate is locked until it's done).
Hi HekhuisIt was the different entity and the entity that's bootstrapping will have the reference key of the flag entity. (The flag table is the parent of the bootstrapping entity)
But are you querying the bootstrapping entity as well? What does the flag entity contain?
The flag entity just contains 4 boolean attributes to know about the completion of the process and errors if any during bootstrapping. I am just querying this aggregate only
Mmm, I'd have to see the code of both the bootstrap timer and the screen to see what's going on then. Can you share the OML?