I get an Runtime Error when pulling data from server

Hello kindly assist, I get this error when pulling data of more then 60000 observations from server

RuntimeError: Data of size 274.5MB exceeds write limit of 50.0MB

How can I go around it

Hi @Livingstone90 :slightly_smiling_face:

What version of Streamlit are you using? Older versions had a limit of 50MB for file_uploader, but the defaults have now been changed to 200MB. To upgrade to the latest version, run:

pip install streamlit --upgrade

You can change that default limit by editing the following configuration option in your config.toml to something like 300MB:

# Max size, in megabytes, for files uploaded with the file_uploader.
# Default: 200
maxUploadSize = 300

Happy Streamlit-ing! :balloon:
Snehan