Alson Yap
06/27/2025, 7:47 AMReached limit of max size of data returned from data source. The limit is 20971520 bytes
This can occur even if I select 1 column to be placed under Rows
on GD (unless I should go change my code to return only for that column). Then again, even if so, this can arise if the number of rows is large.
Is there any way to resolve this? I didnt run into this issue when I was using CSV files as data source. Perhaps does GD support pagination or returning data in batches? (actually I've tried the latter, by changing from PyArrow Data and turned it into batches prior to returning, but still run into this issue).
Any assistance will be much appreciated! 🙏Jakub Sterba
06/30/2025, 8:57 AMcolumns
in an execution context of FlexConnect table function and return only columns which are needed for the SQL query which is executed on top of returned data. You can return only a single column even if the table function is declared with 100 columns, but visualization displays just one. This can help to reduce the size in case of wide dataset with many columns.Alson Yap
06/30/2025, 9:15 AMJakub Sterba
06/30/2025, 9:20 AMJakub Sterba
06/30/2025, 9:27 AMA. B. X
a1. b1. 10
a2 b1. 20
a1. b2. 30
a2. b2. 40
and visualization requests only column A and X you may return
A. X
a1 10
a2. 20
a1. 30
a2. 40
and the SQL query on top will aggregate from the detail data, but you can also return
A. X
a1 40
a2. 60
the SQL function will still perform the aggregation but amount of transferred data for the aggregation will be lowerAlson Yap
06/30/2025, 9:46 AMAlson Yap
06/30/2025, 9:58 AMJakub Sterba
06/30/2025, 11:27 AMAlson Yap
06/30/2025, 11:39 AMAlson Yap
07/01/2025, 4:14 PMMichael Ullock
07/01/2025, 4:54 PMAlson Yap
07/02/2025, 2:19 AMMoises Morales
07/02/2025, 7:20 AMAlson Yap
07/03/2025, 3:00 AMAlson Yap
07/18/2025, 6:58 AMMichael Ullock
07/18/2025, 7:31 AMAlson Yap
07/18/2025, 7:33 AM