[infinispan-issues] [JBoss JIRA] (ISPN-4710) DistributedSegmentReadLocker should be allowed to skip ReadLocks on small files

RH Bugzilla Integration (JIRA) issues at jboss.org
Wed Dec 17 05:51:30 EST 2014


    [ https://issues.jboss.org/browse/ISPN-4710?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13028232#comment-13028232 ] 

RH Bugzilla Integration commented on ISPN-4710:
-----------------------------------------------

Roman Macor <rmacor at redhat.com> changed the Status of [bug 1166865|https://bugzilla.redhat.com/show_bug.cgi?id=1166865] from ON_QA to VERIFIED

> DistributedSegmentReadLocker should be allowed to skip ReadLocks on small files
> -------------------------------------------------------------------------------
>
>                 Key: ISPN-4710
>                 URL: https://issues.jboss.org/browse/ISPN-4710
>             Project: Infinispan
>          Issue Type: Enhancement
>          Components: Lucene Directory
>            Reporter: Sanne Grinovero
>            Assignee: Gustavo Fernandes
>             Fix For: 7.0.0.CR1
>
>
> Both of these methods:
>  - {{org.infinispan.lucene.readlocks.DistributedSegmentReadLocker.deleteOrReleaseReadLock(String)}}
>  - {{org.infinispan.lucene.readlocks.DistributedSegmentReadLocker.realFileDelete(FileReadLockKey, AdvancedCache<Object, Integer>, AdvancedCache<?, ?>, AdvancedCache<?, ?>, boolean)}}
> Are performing a lot of unnecessary operations - potentially on synchronous clustered caches - as we know in advance that files which are not being chunked don't need a read lock, and are not being chunked in smaller pieces (which affects how we delete things).
> The determining factor between the two styles is defined in:
> {{org.infinispan.lucene.impl.DirectoryLuceneV4.openInput(String, IOContext)}}
> {code}   @Override
>    public IndexInput openInput(final String name, final IOContext context) throws IOException {
>       final IndexInputContext indexInputContext = impl.openInput(name);
>       if ( indexInputContext.readLocks == null ) {
>          return new SingleChunkIndexInput(indexInputContext);
>       }
>       else {
>          return new InfinispanIndexInput(indexInputContext);
>       }
>    }{code}



--
This message was sent by Atlassian JIRA
(v6.3.11#6341)


More information about the infinispan-issues mailing list