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

ASF GitHub Bot commented on SOLR-8323:
--------------------------------------

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

    https://github.com/apache/lucene-solr/pull/32#discussion_r61504670
  
    --- Diff: 
solr/solrj/src/java/org/apache/solr/common/cloud/CollectionStateWatcher.java ---
    @@ -0,0 +1,42 @@
    +package org.apache.solr.common.cloud;
    +
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *     http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    +*/
    +
    +import java.util.Set;
    +
    +/**
    + * Callback registered with {@link 
ZkStateReader#registerCollectionStateWatcher(String, CollectionStateWatcher)}
    + * and called whenever the collection state changes.
    + */
    +public interface CollectionStateWatcher {
    +
    +  /**
    +   * Called when the collection we are registered against has a change of 
state
    +   *
    +   * Note that, due to the way Zookeeper watchers are implemented, a 
single call may be
    +   * the result of several state changes
    +   *
    +   * A watcher is unregistered after it has been called once.  To make a 
watcher persistent,
    +   * implementors should re-register during this call.
    +   *
    +   * @param liveNodes       the set of live nodes
    +   * @param collectionState the new collection state
    +   */
    +  void onStateChanged(Set<String> liveNodes, DocCollection 
collectionState);
    +
    +}
    --- End diff --
    
    I just want to toss out an idea here after looking at this some more.  I 
notice that CollectionStateWatcher and CollectionStatePredicate are nearly 
identical.  What would you think about combining the two into a single 
interface?
    
    The signature could be e.g.:
    
    bool stateChanged(liveNodes, collectionState)
    
    In a watch context, the return value means "keep watching?".  So return 
true to reset the watcher and continue getting updates, or return false to stop 
watching.
    
    In a predicate context, the return value means "keep waiting?".  So return 
true to keep waiting, or return false if you've finally seen what you were 
waiting for.
    
    They'll both have the same semantic meaning either way.


> Add CollectionWatcher API to ZkStateReader
> ------------------------------------------
>
>                 Key: SOLR-8323
>                 URL: https://issues.apache.org/jira/browse/SOLR-8323
>             Project: Solr
>          Issue Type: Improvement
>    Affects Versions: master
>            Reporter: Alan Woodward
>            Assignee: Alan Woodward
>         Attachments: SOLR-8323.patch, SOLR-8323.patch, SOLR-8323.patch, 
> SOLR-8323.patch
>
>
> An API to watch for changes to collection state would be a generally useful 
> thing, both internally and for client use.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to