You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by Lakedaemon <gi...@git.apache.org> on 2014/02/17 10:26:20 UTC

[GitHub] lucene-solr pull request: Fix Typo/Bug for AND operation on queryn...

GitHub user Lakedaemon opened a pull request:

    https://github.com/apache/lucene-solr/pull/34

    Fix Typo/Bug for AND operation on querynode

    

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/apache/lucene-solr FixingBugs

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/lucene-solr/pull/34.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #34
    
----
commit 320fcc0e90c051908ae126d66731973761a6fea6
Author: Lakedaemon <ol...@wanadoo.fr>
Date:   2014-02-17T09:19:07Z

    Fix Typo/Bug for AND operation on querynode

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. To do so, please top-post your response.
If your project does not have this feature enabled and wishes so, or if the
feature is enabled but not working, please contact infrastructure at
infrastructure@apache.org or file a JIRA ticket with INFRA.
---

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


[GitHub] lucene-solr pull request #34: Move hdfs stuff out into a new contrib

Posted by romseygeek <gi...@git.apache.org>.
Github user romseygeek commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/34#discussion_r66629876
  
    --- Diff: solr/contrib/hdfs/src/test/org/apache/solr/cloud/hdfs/HdfsTestUtil.java ---
    @@ -91,6 +91,9 @@ public static MiniDFSCluster setupClass(String dir, boolean safeModeTesting, boo
         
         
         System.setProperty("solr.hdfs.blockcache.global", Boolean.toString(LuceneTestCase.random().nextBoolean()));
    +
    +    //FIXME: tells UpdateHandler to use HdfsUpdateLog without specifying such a class on UpdateLog in solrconfig.xml
    +    System.setProperty("test.hdfs.forceHdfsUpdateLog", "true");
         
    --- End diff --
    
    Is this necessary now that UpdateLog initialisation is delegated to the DirectoryFactory?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request #34: Move hdfs stuff out into a new contrib

Posted by tomjon <gi...@git.apache.org>.
Github user tomjon commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/34#discussion_r66272908
  
    --- Diff: solr/core/src/java/org/apache/solr/update/UpdateHandler.java ---
    @@ -200,4 +187,16 @@ public void registerOptimizeCallback( SolrEventListener listener )
       }
     
       public abstract void split(SplitIndexCommand cmd) throws IOException;
    +  
    +  private static UpdateLog initialisePluginUpdateLog(SolrCore core, String dataDir, PluginInfo ulogPluginInfo)
    +  {
    +    String className = ulogPluginInfo.className;
    +    if (System.getProperty("test.hdfs.forceHdfsUpdateLog") != null) {
    +      className = "solr.HdfsUpdateLog";
    +    }
    +    if (className != null) {
    +      return core.getResourceLoader().newInstance(className, UpdateLog.class);
    +    }
    +    return new UpdateLog();
    +  }
     }
    --- End diff --
    
    Seems reasonable, done.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr issue #34: Move hdfs stuff out into a new contrib

Posted by markrmiller <gi...@git.apache.org>.
Github user markrmiller commented on the issue:

    https://github.com/apache/lucene-solr/pull/34
  
    Sorry, still have the same objection. I am not really on board with this,
    "let's make core as slim as possible and put pressure on devs to not use
    libs." This is not Lucene and it's not 2001. The HDFS libs are small and
    will soon be smaller when there is a client only lib. Library harmonization
    reqs don't just go away because of contribs. No reason to make HDFS a
    contrib instead of first class IMO.
    
    - Mark
    
    On Wed, Aug 31, 2016 at 7:11 AM Jan H�ydahl <no...@github.com>
    wrote:
    
    > I think we should continue the work towards factoring out HDFS as a
    > separate module. We can get rid of old versions of commons-* dependencies
    > that the hadoop jars require as well, ref
    > https://issues.apache.org/jira/browse/SOLR-9459.
    >
    > And instead of making Solr core bigger and bigger due to fear of user
    > inconvenience, we should improve the user experience of installing Solr
    > plugins -> bin/solr plugin install hdfs -> DONE :) and then start moving
    > lots of stuff *out* from core.
    >
    > \u2014
    > You are receiving this because you were mentioned.
    > Reply to this email directly, view it on GitHub
    > <https://github.com/apache/lucene-solr/pull/34#issuecomment-243732614>,
    > or mute the thread
    > <https://github.com/notifications/unsubscribe-auth/AAbZFHD0pBgENuF_4oT0raEWe_pjqwc2ks5qlWFdgaJpZM4ISC4l>
    > .
    >
    -- 
    - Mark
    about.me/markrmiller



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request: Move hdfs stuff out into a new contrib

Posted by dsmiley <gi...@git.apache.org>.
Github user dsmiley commented on the pull request:

    https://github.com/apache/lucene-solr/pull/34#issuecomment-216055389
  
    I'm +1 to the overall notion of this but I haven't reviewed the code. I'm surprised Hadoop dependencies made it into Solr-core in the first place. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request: Fix Typo/Bug for AND operation on queryn...

Posted by Lakedaemon <gi...@git.apache.org>.
Github user Lakedaemon closed the pull request at:

    https://github.com/apache/lucene-solr/pull/34


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request: Move hdfs stuff out into a new contrib

Posted by romseygeek <gi...@git.apache.org>.
Github user romseygeek commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/34#discussion_r62206298
  
    --- Diff: solr/core/src/java/org/apache/solr/update/UpdateHandler.java ---
    @@ -200,4 +187,16 @@ public void registerOptimizeCallback( SolrEventListener listener )
       }
     
       public abstract void split(SplitIndexCommand cmd) throws IOException;
    +  
    +  private static UpdateLog initialisePluginUpdateLog(SolrCore core, String dataDir, PluginInfo ulogPluginInfo)
    +  {
    +    String className = ulogPluginInfo.className;
    +    if (System.getProperty("test.hdfs.forceHdfsUpdateLog") != null) {
    +      className = "solr.HdfsUpdateLog";
    +    }
    +    if (className != null) {
    +      return core.getResourceLoader().newInstance(className, UpdateLog.class);
    +    }
    +    return new UpdateLog();
    +  }
     }
    --- End diff --
    
    I wonder if a nicer way of doing this would be to make UpdateLog be created by the DirectoryFactory? Something like:
    
    ```
    DirectoryFactory { 
      public UpdateLog newUpdateLog(SolrCore core, String dataDir, PluginInfo ulogPluginInfo) {
        if (ulogPluginInfo.className == null)
          return new UpdateLog();
        return core.getResourceLoader().newInstance(ulogPluginInfo.className, UpdateLog.class);
      }
    }
    
    HdfsDirectoryFactory {
      @Override
      public UpdateLog newUpdateLog( ... ) {
        if (ulogPluginInfo.className == null) {
          return new HdfsUpdateLog();
        }
        return super.newUpdateLog( ... );
    }
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request: Move hdfs stuff out into a new contrib

Posted by romseygeek <gi...@git.apache.org>.
Github user romseygeek commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/34#discussion_r62203539
  
    --- Diff: lucene/core/src/java/org/apache/lucene/store/Directory.java ---
    @@ -165,4 +165,13 @@ public void copyFrom(Directory from, String src, String dest, IOContext context)
        * @throws AlreadyClosedException if this Directory is closed
        */
       protected void ensureOpen() throws AlreadyClosedException {}
    +  
    --- End diff --
    
    I think we should avoid changing any lucene classes for the moment - fileModified() can probably stay where it is?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request #34: Move hdfs stuff out into a new contrib

Posted by tomjon <gi...@git.apache.org>.
Github user tomjon commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/34#discussion_r66273240
  
    --- Diff: solr/core/src/test/org/apache/solr/cloud/ShardSplitTest.java ---
    @@ -57,7 +57,6 @@
     import static org.apache.solr.common.cloud.ZkStateReader.MAX_SHARDS_PER_NODE;
     import static org.apache.solr.common.cloud.ZkStateReader.REPLICATION_FACTOR;
     
    -@Slow
    --- End diff --
    
    Restored


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request: Move hdfs stuff out into a new contrib

Posted by markrmiller <gi...@git.apache.org>.
Github user markrmiller commented on the pull request:

    https://github.com/apache/lucene-solr/pull/34#issuecomment-217233476
  
    I filed https://issues.apache.org/jira/browse/SOLR-9075 to look at shrinking the hdfs client dependency jars.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request #34: Move hdfs stuff out into a new contrib

Posted by tomjon <gi...@git.apache.org>.
Github user tomjon commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/34#discussion_r66244222
  
    --- Diff: lucene/core/src/java/org/apache/lucene/store/Directory.java ---
    @@ -165,4 +165,13 @@ public void copyFrom(Directory from, String src, String dest, IOContext context)
        * @throws AlreadyClosedException if this Directory is closed
        */
       protected void ensureOpen() throws AlreadyClosedException {}
    +  
    --- End diff --
    
    This change was made to eliminate the "instanceof HdfsDirectory" in the fileModified() method of BlockDirectory.  The polymorphism solution seemed best, but as you say, means modifying Lucene classes (all the relevant subclasses of Directory are in Lucene, except HdfsDirectory)...


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request #34: Move hdfs stuff out into a new contrib

Posted by tomjon <gi...@git.apache.org>.
Github user tomjon commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/34#discussion_r66247316
  
    --- Diff: lucene/core/src/java/org/apache/lucene/store/Directory.java ---
    @@ -165,4 +165,13 @@ public void copyFrom(Directory from, String src, String dest, IOContext context)
        * @throws AlreadyClosedException if this Directory is closed
        */
       protected void ensureOpen() throws AlreadyClosedException {}
    +  
    --- End diff --
    
    Now you mention it, I do remember wondering whether the blockcache package should move over to the contrib. I'll do that


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request: Move hdfs stuff out into a new contrib

Posted by markrmiller <gi...@git.apache.org>.
Github user markrmiller commented on the pull request:

    https://github.com/apache/lucene-solr/pull/34#issuecomment-217559403
  
    We only have the needs of an hdfs client for shipping. I filed an issue to shrink that. Making a whole new contrib, extending the test running time, making the integration require more configuration and less just working, needing to be configurable instead of being able to take advantage of core integration...sorry, I'm against the change.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request #34: Move hdfs stuff out into a new contrib

Posted by romseygeek <gi...@git.apache.org>.
Github user romseygeek commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/34#discussion_r66244801
  
    --- Diff: lucene/core/src/java/org/apache/lucene/store/Directory.java ---
    @@ -165,4 +165,13 @@ public void copyFrom(Directory from, String src, String dest, IOContext context)
        * @throws AlreadyClosedException if this Directory is closed
        */
       protected void ensureOpen() throws AlreadyClosedException {}
    +  
    --- End diff --
    
    I think this means that org.apache.solr.store.blockcache also needs to move?  It's only used by the HDFS stuff, so far as I can tell.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr issue #34: Move hdfs stuff out into a new contrib

Posted by janhoy <gi...@git.apache.org>.
Github user janhoy commented on the issue:

    https://github.com/apache/lucene-solr/pull/34
  
    I think we should continue the work towards factoring out HDFS as a separate module. We can get rid of old versions of `commons-*` dependencies that the hadoop jars require as well, ref https://issues.apache.org/jira/browse/SOLR-9459.
    
    And instead of making Solr core bigger and bigger due to fear of user inconvenience, we should improve the user experience of installing Solr plugins -> `bin/solr plugin install hdfs` -> DONE :) and then start moving lots of stuff **out** from core.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request: Move hdfs stuff out into a new contrib

Posted by romseygeek <gi...@git.apache.org>.
Github user romseygeek commented on the pull request:

    https://github.com/apache/lucene-solr/pull/34#issuecomment-217531618
  
    @markrmiller I don't think we need to make people jump through any more hoops, and HDFS integration would stay as part of the core distribution, but moving it into a contrib allows us to offer a slimmed-down distro for people who aren't using hadoop.  Plus it helps keep us honest when it comes to encapsulation and plugs a few leaky abstractions in the core.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request: Move hdfs stuff out into a new contrib

Posted by romseygeek <gi...@git.apache.org>.
Github user romseygeek commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/34#discussion_r62204058
  
    --- Diff: solr/core/ivy.xml ---
    @@ -61,15 +61,6 @@
         <dependency org="com.fasterxml.jackson.core" name="jackson-annotations" rev="${/com.fasterxml.jackson.core/jackson-annotations}" conf="test"/>
         <dependency org="com.fasterxml.jackson.dataformat" name="jackson-dataformat-smile" rev="${/com.fasterxml.jackson.dataformat/jackson-dataformat-smile}" conf="compile"/>
     
    -
    -    <dependency org="org.apache.hadoop" name="hadoop-common" rev="${/org.apache.hadoop/hadoop-common}" conf="compile.hadoop"/>
    -    <!--
    -      hadoop-hdfs, hadoop-annotations and hadoop-auth are runtime dependencies,
    -      so even though they are not compile-time dependencies, they are included
    -      here as such so that they are included in the runtime distribution.
    -     -->
    -    <dependency org="org.apache.hadoop" name="hadoop-hdfs" rev="${/org.apache.hadoop/hadoop-hdfs}" conf="compile.hadoop"/>
    -    <dependency org="org.apache.hadoop" name="hadoop-annotations" rev="${/org.apache.hadoop/hadoop-annotations}" conf="compile.hadoop"/>
         <dependency org="org.apache.hadoop" name="hadoop-auth" rev="${/org.apache.hadoop/hadoop-auth}" conf="compile.hadoop"/>
    --- End diff --
    
    Do you know what requires auth in core?  It would be nice to move *all* the hadoop jars out


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request #34: Move hdfs stuff out into a new contrib

Posted by tomjon <gi...@git.apache.org>.
Github user tomjon commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/34#discussion_r66249148
  
    --- Diff: solr/core/ivy.xml ---
    @@ -61,15 +61,6 @@
         <dependency org="com.fasterxml.jackson.core" name="jackson-annotations" rev="${/com.fasterxml.jackson.core/jackson-annotations}" conf="test"/>
         <dependency org="com.fasterxml.jackson.dataformat" name="jackson-dataformat-smile" rev="${/com.fasterxml.jackson.dataformat/jackson-dataformat-smile}" conf="compile"/>
     
    -
    -    <dependency org="org.apache.hadoop" name="hadoop-common" rev="${/org.apache.hadoop/hadoop-common}" conf="compile.hadoop"/>
    -    <!--
    -      hadoop-hdfs, hadoop-annotations and hadoop-auth are runtime dependencies,
    -      so even though they are not compile-time dependencies, they are included
    -      here as such so that they are included in the runtime distribution.
    -     -->
    -    <dependency org="org.apache.hadoop" name="hadoop-hdfs" rev="${/org.apache.hadoop/hadoop-hdfs}" conf="compile.hadoop"/>
    -    <dependency org="org.apache.hadoop" name="hadoop-annotations" rev="${/org.apache.hadoop/hadoop-annotations}" conf="compile.hadoop"/>
         <dependency org="org.apache.hadoop" name="hadoop-auth" rev="${/org.apache.hadoop/hadoop-auth}" conf="compile.hadoop"/>
    --- End diff --
    
    solr.core.src.java.org.apache.solr.security.KerberosFilter uses org.apache.hadoop.security.authentication.server.AuthenticationFilter from hadoop-auth JAR. That class is itself used by KerberosPlugin in the same package


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request: Move hdfs stuff out into a new contrib

Posted by markrmiller <gi...@git.apache.org>.
Github user markrmiller commented on the pull request:

    https://github.com/apache/lucene-solr/pull/34#issuecomment-217231828
  
    I'm not currently for this change. HDFS is currently built in and supported first class. I don't see a need to make anyone that wants to use it jump any more hoops to save a few dependency jars. I'm still looking at making the first class integration better rather than separating things further.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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


[GitHub] lucene-solr pull request: Move hdfs stuff out into a new contrib

Posted by romseygeek <gi...@git.apache.org>.
Github user romseygeek commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/34#discussion_r62205397
  
    --- Diff: solr/core/src/test/org/apache/solr/cloud/ShardSplitTest.java ---
    @@ -57,7 +57,6 @@
     import static org.apache.solr.common.cloud.ZkStateReader.MAX_SHARDS_PER_NODE;
     import static org.apache.solr.common.cloud.ZkStateReader.REPLICATION_FACTOR;
     
    -@Slow
    --- End diff --
    
    I don't think this should be here?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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