Replies: 2 comments
-
Closed in #329 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The flash (and future FEL) loader currently does the conversion to parquet in parallel with all files simultaneously. This can consume huge amounts of memory, and lead to very inefficient conversion for systems with few cores and low memory (such as the github action workers).
The solution would be to do the conversion in chunks determined by the number of available cores and/or the
num_cores
config parameter we already define. Maybe this should be moved from[binning]
to[core]
then.Beta Was this translation helpful? Give feedback.
All reactions