mirror of
https://github.com/simon987/hexlib.git
synced 2025-04-04 02:12:59 +00:00
Set max_window_size=2147483648 for zstd
This commit is contained in:
parent
d578be3218
commit
084acbe184
@ -85,7 +85,7 @@ def ndjson_iter(*files, compression=""):
|
||||
line_iter = BufferedReader(gzip.open(file))
|
||||
elif compression == COMPRESSION_ZSTD:
|
||||
fp = open(file, "rb")
|
||||
dctx = zstandard.ZstdDecompressor()
|
||||
dctx = zstandard.ZstdDecompressor(max_window_size=2147483648)
|
||||
reader = dctx.stream_reader(fp)
|
||||
line_iter = BufferedReader(reader)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user