How to import huge time series data from (DRF) to user interface (UI)

42 Views Asked by At

How to import huge time series data from (DRF) to user interface (UI)

Hello, I am fetching data from Redis TimeSeries using the mrange command, and it returns data of around 4-5MB in size. I need to transfer this large data to the UI, but I don't know how to handle such a large dataset. I tried splitting it into smaller chunks, but in React, when the data arrives in chunks, it triggers a re-render for each data point, resulting in too many renders per second, which is not desirable. How can I transfer such a large dataset efficiently

0

There are 0 best solutions below