[ 
https://issues.apache.org/jira/browse/GEODE-2828?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15991154#comment-15991154
 ] 

ASF GitHub Bot commented on GEODE-2828:
---------------------------------------

Github user jhuynh1 commented on a diff in the pull request:

    https://github.com/apache/geode/pull/481#discussion_r114160633
  
    --- Diff: 
geode-lucene/src/main/java/org/apache/geode/cache/lucene/internal/AbstractPartitionedRepositoryManager.java
 ---
    @@ -47,18 +48,22 @@
           new ConcurrentHashMap<Integer, IndexRepository>();
     
       /** The user region for this index */
    -  protected final PartitionedRegion userRegion;
    +  protected PartitionedRegion userRegion = null;
       protected final LuceneSerializer serializer;
       protected final LuceneIndexImpl index;
       protected volatile boolean closed;
    +  private CountDownLatch isDataRegionReady = new CountDownLatch(1);
    --- End diff --
    
    Should this be final?


> AEQ needs to be created before the user region
> ----------------------------------------------
>
>                 Key: GEODE-2828
>                 URL: https://issues.apache.org/jira/browse/GEODE-2828
>             Project: Geode
>          Issue Type: Bug
>          Components: lucene
>            Reporter: nabarun
>
> Issue:
> Events are lost as the region is being created, because the AEQ gets created 
> after the user region is created, and the indexes are not being created via 
> AEQ.
> Solution:
> 1. AEQ being created before the user region.
> 2. Processing of lucene events are being halted by a countdown latch and 
> starts processing after the user region is created.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to