You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2022/08/12 08:53:00 UTC

[jira] [Work logged] (COMPRESS-623) Speed up ZipFile's raw stream copying by not seeking for local headers until they're needed

     [ https://issues.apache.org/jira/browse/COMPRESS-623?focusedWorklogId=800224&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-800224 ]

ASF GitHub Bot logged work on COMPRESS-623:
-------------------------------------------

                Author: ASF GitHub Bot
            Created on: 12/Aug/22 08:52
            Start Date: 12/Aug/22 08:52
    Worklog Time Spent: 10m 
      Work Description: dweiss opened a new pull request, #306:
URL: https://github.com/apache/commons-compress/pull/306

   See https://issues.apache.org/jira/browse/COMPRESS-623




Issue Time Tracking
-------------------

            Worklog Id:     (was: 800224)
    Remaining Estimate: 0h
            Time Spent: 10m

> Speed up ZipFile's raw stream copying by not seeking for local headers until they're needed
> -------------------------------------------------------------------------------------------
>
>                 Key: COMPRESS-623
>                 URL: https://issues.apache.org/jira/browse/COMPRESS-623
>             Project: Commons Compress
>          Issue Type: Improvement
>            Reporter: Dawid Weiss
>            Priority: Minor
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> I have a somewhat odd use case with gigabytes of ZIP files, each with thousands of documents (on comparatively slow, network drives). We need to restructure these ZIPs without the need to recompress files.
> The above turns out to work almost perfectly with raw-data copying ZipFile offers but empirical tests showed a major slowdown in the initial opening of zip files, linked to multiple reads/seeks for local file headers. If an option is passed to ignore those headers, raw streams are inaccessible.
> I've taken a look at the code and the code in getRawInputStream could basically do the same thing that getInputStream does - lazily load the missing offset via getDataOffset(ZipEntry). In fact, getInputStream could just call getRawInputStream directly, which avoids some code duplication. 
> I also restructured the code that maintains LinkedList for duplicated names a bit. I think this bit could be removed altogether and replaced with a pointer-chain list directly on Entry class instances (the map would then point at the first entry; duplicated entries are an oddity and infrequent in the wild).
> I see speedups for opening and copying random raw streams in the order of 3-4x and all the current tests pass. I filed a PR at github - happy to discuss it there.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)