astrolabsoftware / fink-science-portal

Fink Science Portal
https://fink-portal.org
Apache License 2.0
7 stars 4 forks source link

Faster SSOFT download #638

Closed JulienPeloton closed 1 month ago

JulienPeloton commented 1 month ago

This PR brings speed up in downloading the SSOFT in parquet format

output format download time
csv 21.28 seconds
json 16.61 seconds
parquet (old) 5.85 seconds
parquet (new) 4.84 seconds

json and csv are slow because the data needs to be decompressed, and formatted in pandas DataFrame before being sent to the user (that is: DO NOT USE THAT unless you really needs it). The parquet mode is now faster because I get rid of the pandas DataFrame step.