I'm wondering about how Superset re-uses the dataset results already queried once. For example: you have a dataset my_dataset
where there are 5 charts pointing to it with different views of the same raw data. If I put these 5 charts inside a dashboard and run it, will Superset execute a query just one time and all charts will use the same raw data? or will it execute the query from the dataset one time for each chart?
Also, there is a dataset type called Virtual
. I didn't find any documentation talking about it, but I'm supposing that it could be something related to it...
My concern is: I want to avoid executing the same query multiple times for the same raw data, because by the end of the day what will really change it's just a view perspective of the same raw data.