I needed help with the following
I have a large amount of data that is sequentially dependent on previous data. If we update any data from between all the records after that should be updated accordingly.
So here if we update value2 of R1 as 21 then changes will be as follows.
Id. Value1. Value2
R1 10. 21
R2. 21. 36
R3. 36 43
For now, I'm using the Redis queue for this but most of the time queue fail due to large data and creates issues.
Is there any efficient way to achieve this? There are thousands of data which makes it difficult to achieve. Thank you.