Trying to deploy an app on Streamlit, but facing a weird error without a description.
It’s extremely basic - Snowpark connects to Snowflake, reads from a view and renders two plotly graphs. It works very well on my local machine but does this on the cloud.
tot_sql = "SELECT\
DATE_TRUNC('DAY', STARTTIME) START_DAY, COUNT(*) AS NUM_TRIPS\
FROM TRIPS_VW\
GROUP BY 1\
ORDER BY 1;"
tot_df = session.sql(tot_sql).to_pandas()
st.markdown('\n##### Trips over Time')
fig = px.area(tot_df, x="START_DAY", y="NUM_TRIPS")
st.plotly_chart(fig)