Todd Lipcon created HADOOP-8406:
-----------------------------------

             Summary: CompressionCodecFactory.CODEC_PROVIDERS iteration is 
thread-unsafe
                 Key: HADOOP-8406
                 URL: https://issues.apache.org/jira/browse/HADOOP-8406
             Project: Hadoop Common
          Issue Type: Bug
          Components: io
    Affects Versions: 2.0.0
            Reporter: Todd Lipcon
            Assignee: Todd Lipcon


CompressionCodecFactory defines CODEC_PROVIDERS as:
{code}
  private static final ServiceLoader<CompressionCodec> CODEC_PROVIDERS =
    ServiceLoader.load(CompressionCodec.class);
{code}
but this is a lazy collection which is thread-unsafe to iterate. We either need 
to synchronize when we iterate over it, or we need to materialize it during 
class-loading time by copying to a non-lazy collection

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to