when I used AgGrid of streamlit-aggrid, I found it will report an error of " RuntimeError: Data of size 142.6MB exceeds write limit of 50.0MB"
the file only 14MB, but its rows have over 10000, it will report this error.
so what is its upper limit of rows number?
1 Like
@BeyondMyself Did you find a fix for this? Im also getting this error when displaying dataframe using a AGGrid. - Thanks
not yet, if row of a table exceed 10000, now I will choose to do not show it in page or use st.write(df), st.table, st.dataframe to show it.
Im also thinking the same. But seems its not a good solution. This should be a setting somewhere that we can update.