arctic icon indicating copy to clipboard operation
arctic copied to clipboard

Use lz4.frame

Open bmoscon opened this issue 5 years ago • 4 comments

Its not that hard to exceed lz4 memory constraints or or cause it to overflow. The solution is to use lz4.frame which lets you compress a block of data in chunks.

bmoscon avatar Sep 16 '18 20:09 bmoscon

Isn't block size capped to 16MB anyway due to mongodb constraint?

fl4p-old avatar Jan 16 '19 17:01 fl4p-old

true, but data is serialized, compressed and then broken up into 16MB chunks for storage in mongo, so the size constraint is currently on Lz4's block size, which is why we should move to frame.

bmoscon avatar Jan 17 '19 19:01 bmoscon

Every time i want to use arctic i get the following errror

No module named 'lz4._version'

already removed arctic and re install it throw pip but still it's not working

bartmostert1 avatar Apr 18 '19 13:04 bartmostert1

@bartmostert1 that seems unrelated to this feature request. Please open a new ticket and specify the operating system and give the ouput of pip freeze

bmoscon avatar Apr 18 '19 13:04 bmoscon