Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public class QatCompressorJNI {

private static final Logger LOG = LogManager.getLogger(QatCompressorJNI.class);
private static final int DEFAULT_DIRECT_BUFFER_SIZE = 640 * 1024;
private static final int DEFAULT_DIRECT_BUFFER_SIZE = 64 * 1024;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did it work in our end-2-end test?


// HACK - Use this as a global lock in the JNI layer
@SuppressWarnings({"rawtypes"})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
public class QatDecompressorJNI {
private static final Logger LOG = LogManager.getLogger(QatDecompressorJNI.class);

private static final int DEFAULT_DIRECT_BUFFER_SIZE = 640 * 1024;
private static final int DEFAULT_DIRECT_BUFFER_SIZE = 64 * 1024;

// HACK - Use this as a global lock in the JNI layer
@SuppressWarnings({"rawtypes"})
Expand Down