Hi team, I am intending to connect echarts up to a medium-ish dataset (let's say 10 million rows.)
The underlying data source will use incremental materialization so that (for example) a few thousand rows out of the 10 million will be updated every few seconds. Let's assume I can uniquely identify each row by key. Is there a way to "patch" the underlying 10 million row data set in echarts with these thousand rows? Or more broadly what's the best way to accomplish this? Currently, my "back up plan" is to load a shadow copy of the full dataset and then swap between them. But would love to hear ideas on alternatives.