snappy-java icon indicating copy to clipboard operation
snappy-java copied to clipboard

Snappy compressor/decompressor for Java

Results 68 snappy-java issues
Sort by recently updated
recently updated
newest added

Add Hadoop compatible Snappy input stream

I noticed this in the makefile ``` ifndef CXXFLAGS_BITSHUFFLE ifeq ($(OS_NAME)-$(OS_ARCH),Linux-x86_64) # SSE2 is supported in all the x86_64 platforms and AVX2 is only supported # in the small part...

I have a specific need to decompress the contents of a direct `ByteBuffer` into a non-direct `ByteBuffer`. I am prepared to submit a PR to implement this unless there are...

Hi there, I would like to uncompress some hadoop-format snappy files. Is it possible to do it with `snappy-java`? Cheers.

We use SnappyHadoopCompatibleOutputStream paired with Akka streams to ingest data, and we run into issues when attempting to flush the stream when there isn't enough disk space. Akka streams' implementation...

wontfix

I output some snappy file with SnappyHadoopCompatibleOutputStream, which may used by both hadoop and normal java application. However, the hadoop snappy codec requires a native snappy library, which doesn't support...

question

I have output some snappy compressed file, and I need to read them via Spark. It seems the snappy file made by SnappyFramedOutputStream cannot be read by hadoop. So can...

question

It seems snappyjava lib is not doing bounds checks, when I load the library and run compress() with incorrect size I can crash the JVM, testing this with Windows on...

On a specified hardware, may the efficiency of snappy framed compression be effected by any configuration? If yes, how to tune it?

I compressed some data to a file using SnappyFramedOutputStream, and now decompress it with SnappyFramedInputStream. However, it throw an IOException: invalid length:0 for chunk flag:0 . Only this file has...