I uploaded a 1.4MB file using st.file_uploader feature of streamlit. When I read the uploaded file using pd.read_excel(), it takes a lot of time to read. However, it only takes only a few seconds to read it in my local machine. So I wonder what could be the issue?
Appreciate any pointers.
NOTE: We had fixed nginx config to increase the client_max_body_size to even allow the >1MB file upload
No worries – Since I can’t see the code, I’ll proceed by elimination!
First things first, have you tried reading the file using a BytesIO object instead of directly from the uploaded file? This may improve performance by reducing read latency in some environments. Here’s an example:
import pandas as pd
from io import BytesIO
uploaded_file = st.file_uploader("Upload Excel file", type=["xlsx", "xls"])
if uploaded_file is not None:
file_bytes = BytesIO(uploaded_file.read())
df = pd.read_excel(file_bytes)
I tried but I get an error like below after waiting for more than 20s or so.
ValueError: Unable to read workbook: could not read manifest from None. This is most probably because the workbook source files contain some invalid XML. Please see the exception for more details.
UPDATE:
The error was my mistake. I had to .seek(0) before using it again (I first check the number of sheets before invoking read_excel)
One improvement we can do is to use “getvalue()” instead of “read()”
Now I see that the reads are quite faster. Much better than before. Earlier it used to take 2 to 3 minutes. Now it is reduced to 15 seconds. Is there a way we can reduce that to 5 seconds?
FURTHER UPDATE
The main issue of low performance was also because our Docker container had meager resources. After doubling the resources and with BytesIO, we reached 15 seconds. The main issue was the speed of “pd.ExcelFile” / “pd.read_excel” calls on BytesIO buffer. This one completes in 5 seconds in my laptop. But on the docker container it is slower. Not sure why. But it is important to understand that these calls required a good allocation of CPU.
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.