Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consuming a large amount of memory when unpacking huge Array and Map unexpectedly #657

Open
napo0703 opened this issue Jun 22, 2022 · 0 comments

Comments

@napo0703
Copy link

There is a problem of unexpectedly consuming a large amount of memory when unpacking huge Array and Map.
For example, this code may causes an OutOfMemoryError.

    public static void unpackHugeArray()
            throws IOException
    {
        MessageBufferPacker packer = MessagePack.newDefaultBufferPacker();
        packer.packArrayHeader(2147483647);
        packer.close();

        byte[] packedData = packer.toByteArray();
        MessageUnpacker unpacker = MessagePack.newDefaultUnpacker(packedData);
        unpacker.unpackValue();  // Caused by: java.lang.OutOfMemoryError
        unpacker.close();
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant