Replies: 1 comment 12 replies
-
Hello, looks like you found a bug. Is there any way you could send the file for analysis? |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All,
Firstly thanks to the authors for a great MDF package, has saved a lot of headaches and supported building lots of useful tools.
I am trying to export MDF channels to Parquet in their native logging frequencies. Whilst creating the df in the background, I am regularly running out of memory (16GB) for MDF files <500mb. The important interpolation arguments are set to false to avoid bloating.
I am exploring chunking the df, with the intention of building Parquet files in chunks also (like this)
However, i am getting the following error if i set the 'chunk_ram_size' to any value smaller than the file itself.
ValueError: could not broadcast input array from shape (372292,) into shape (13,)
Full disclosure, chunking is new to me. I'm hoping I haven't missed something obvious here...Can you help point me in the right direction please?
Beta Was this translation helpful? Give feedback.
All reactions