https://issues.apache.org/bugzilla/show_bug.cgi?id=54211

Nick Burch <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |WORKSFORME
                 OS|                            |All

--- Comment #1 from Nick Burch <[email protected]> ---
You need to increase your heap size, the default JVM heap is very small

If you really can't do that, you'll need to process the shared strings table
differently. The code you're using buffers the shared strings table into memory
for quick access when processing the slides. It's not usually too big, but it
can be a noticable part of the file size. If you can't hold it all in ram,
you'll need to process it in a streaming manner and store the id -> string
lookup elsewhere (eg on disk, on another box in a KV store / cache) for use
when handling the sheets

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to