[JENKINS] Lucene-Solr-NightlyTests-5.x - Build # 849 - Still Failing

2015-05-16 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/Lucene-Solr-NightlyTests-5.x/849/ 1 tests failed. REGRESSION: org.apache.solr.cloud.CollectionsAPIDistributedZkTest.test Error Message: Captured an uncaught exception in thread: Thread[id=1555, name=collection1, state=RUNNABLE,

[jira] [Commented] (SOLR-7086) Suggester dictionary empty if payload field does not exist

2015-05-16 Thread Marius Grama (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7086?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14546860#comment-14546860 ] Marius Grama commented on SOLR-7086: Created patch for the Lucene issue LUCENE-6486

Re: Recent Java 9 commit (e5b66323ae45) breaks fsync on directory

2015-05-16 Thread Robert Muir
On Sat, May 16, 2015 at 12:58 PM, Alan Bateman alan.bate...@oracle.com wrote: JDK 9 is not planned to ship until 2016 so if there is a new API then I would hope this is time enough for Lucene to add support. For now then I think we need to come up with the right API for this. We can see later

Re: Recent Java 9 commit (e5b66323ae45) breaks fsync on directory

2015-05-16 Thread Alan Bateman
On 16/05/2015 18:26, Robert Muir wrote: : Code that is responsible for synchronizing data to disk is really important, its the last place you want this kind of complexity :( Yes, we know this. Let's try to come up with a solution for this in the coming weeks. -Alan.

[jira] [Updated] (SOLR-7545) SOLR_HOST parameter not honoured in bin/solr and SolrCLI

2015-05-16 Thread Ishan Chattopadhyaya (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7545?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ishan Chattopadhyaya updated SOLR-7545: --- Attachment: SOLR-7545.patch SOLR_HOST parameter not honoured in bin/solr and SolrCLI

[jira] [Created] (SOLR-7553) Add hyperloglog aggregator

2015-05-16 Thread Yonik Seeley (JIRA)
Yonik Seeley created SOLR-7553: -- Summary: Add hyperloglog aggregator Key: SOLR-7553 URL: https://issues.apache.org/jira/browse/SOLR-7553 Project: Solr Issue Type: Improvement

[jira] [Updated] (SOLR-7545) SOLR_HOST parameter not honoured in bin/solr and SolrCLI

2015-05-16 Thread Ishan Chattopadhyaya (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7545?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ishan Chattopadhyaya updated SOLR-7545: --- Attachment: SOLR-7545.patch [~andyetitmoves] Thanks for your review. I was at a loss

[jira] [Updated] (LUCENE-6486) DocumentDictionary entry iterator skips items with optional null payload field

2015-05-16 Thread Marius Grama (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6486?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marius Grama updated LUCENE-6486: - Attachment: LUCENE-6486.patch Patch used to fix this inconsistency. [~mikemccand] could you

[jira] [Commented] (LUCENE-3759) Support joining in a distributed environment.

2015-05-16 Thread Joe Szymanski (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-3759?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14546866#comment-14546866 ] Joe Szymanski commented on LUCENE-3759: --- Is anyone currently working on this? I

[jira] [Updated] (SOLR-7554) Add checks in Streams for incoming stream order

2015-05-16 Thread Dennis Gove (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7554?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dennis Gove updated SOLR-7554: -- Attachment: SOLR-7554.patch Add checks in Streams for incoming stream order

[jira] [Updated] (SOLR-7274) Pluggable authentication module in Solr

2015-05-16 Thread Ishan Chattopadhyaya (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7274?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ishan Chattopadhyaya updated SOLR-7274: --- Attachment: SOLR-7274.patch Updated patch. * Adding a test,

[jira] [Commented] (SOLR-7545) SOLR_HOST parameter not honoured in bin/solr and SolrCLI

2015-05-16 Thread Ishan Chattopadhyaya (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7545?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14546845#comment-14546845 ] Ishan Chattopadhyaya commented on SOLR-7545: Oh. I created the patch in shell

[jira] [Commented] (SOLR-7545) SOLR_HOST parameter not honoured in bin/solr and SolrCLI

2015-05-16 Thread Ramkumar Aiyengar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7545?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14546852#comment-14546852 ] Ramkumar Aiyengar commented on SOLR-7545: - I didn't test on Windows as well, depend

Re: Recent Java 9 commit (e5b66323ae45) breaks fsync on directory

2015-05-16 Thread Francis Galiegue
On Sat, May 16, 2015 at 7:30 PM, Francis Galiegue fgalie...@gmail.com wrote: [...] As to a new API, well, why not StandardOpenOption.DIRECTORY? O_DIRECTORY has existed for open(2) since POSIX.1-2008 (says open(2)), and it is even specified that if the path is not a directory the failure is

Re: Recent Java 9 commit (e5b66323ae45) breaks fsync on directory

2015-05-16 Thread Francis Galiegue
Hello, On Sat, May 16, 2015 at 6:48 PM, Robert Muir rcm...@gmail.com wrote: [...] I don't understand the tradeoff being made here. The JDK will deliver ... a little bit earlier exception to morons trying to read bytes from a directory, at the cost of damaging impact to user's data for

[jira] [Commented] (SOLR-7545) SOLR_HOST parameter not honoured in bin/solr and SolrCLI

2015-05-16 Thread Ramkumar Aiyengar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7545?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14546756#comment-14546756 ] Ramkumar Aiyengar commented on SOLR-7545: - Did you patch solr.cmd against the

[jira] [Updated] (SOLR-7468) Kerberos authentication module

2015-05-16 Thread Ishan Chattopadhyaya (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7468?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ishan Chattopadhyaya updated SOLR-7468: --- Attachment: SOLR-7468.patch Updated patch. * Removed some of test framework changes

[jira] [Created] (LUCENE-6486) DocumentDictionary entry iterator skips items with optional null payload field

2015-05-16 Thread Marius Grama (JIRA)
Marius Grama created LUCENE-6486: Summary: DocumentDictionary entry iterator skips items with optional null payload field Key: LUCENE-6486 URL: https://issues.apache.org/jira/browse/LUCENE-6486

Re: Recent Java 9 commit (e5b66323ae45) breaks fsync on directory

2015-05-16 Thread Alan Bateman
On 16/05/2015 17:48, Robert Muir wrote: : Separately, the addition of an explicit api for this is a fantastic idea, but its no solution for users on the existing api. JDK 9 is not planned to ship until 2016 so if there is a new API then I would hope this is time enough for Lucene to add

Re: Recent Java 9 commit (e5b66323ae45) breaks fsync on directory

2015-05-16 Thread Robert Muir
On Sat, May 16, 2015 at 1:30 PM, Francis Galiegue fgalie...@gmail.com wrote: But at the core of the matter I disagree with your basic premise. To me, and to 100-epsilon% of users for that matter, it is perfectly logical that opening a stream to a directory should fail before you even attempt

[jira] [Commented] (SOLR-7553) Add hyperloglog aggregator

2015-05-16 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14546743#comment-14546743 ] Yonik Seeley commented on SOLR-7553: Thanks to Hoss for figuring out how it all works

[JENKINS] Lucene-Solr-5.x-Linux (32bit/ibm-j9-jdk7) - Build # 12527 - Failure!

2015-05-16 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/12527/ Java: 32bit/ibm-j9-jdk7 -Xjit:exclude={org/apache/lucene/util/fst/FST.pack(IIF)Lorg/apache/lucene/util/fst/FST;} No tests ran. Build Log: [...truncated 284 lines...] ERROR: Publisher 'Publish JUnit test result report' failed: No

Re: Recent Java 9 commit (e5b66323ae45) breaks fsync on directory

2015-05-16 Thread Robert Muir
Is it really not possible to revert the change that broke all this? I urge you to reconsider the impacts of this. At the very least, we can't change already-released versions of lucene code: we can't add retroactively add two screens of fsync code to them to do the right thing. That code is

[jira] [Created] (SOLR-7554) Add checks in Streams for incoming stream order

2015-05-16 Thread Dennis Gove (JIRA)
Dennis Gove created SOLR-7554: - Summary: Add checks in Streams for incoming stream order Key: SOLR-7554 URL: https://issues.apache.org/jira/browse/SOLR-7554 Project: Solr Issue Type: Improvement

[jira] [Updated] (LUCENE-6486) DocumentDictionary entry iterator skips items with optional null payload field

2015-05-16 Thread Marius Grama (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-6486?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marius Grama updated LUCENE-6486: - Fix Version/s: Trunk DocumentDictionary entry iterator skips items with optional null payload

[GitHub] lucene-solr pull request: TransitResponseWriter

2015-05-16 Thread AshtonKem
Github user AshtonKem commented on the pull request: https://github.com/apache/lucene-solr/pull/85#issuecomment-102659143 Okay, I think I have this cleaned up and passing. Can I please get a review? --- If your project is set up for it, you can reply to this email and have your reply

[jira] [Assigned] (SOLR-7545) SOLR_HOST parameter not honoured in bin/solr and SolrCLI

2015-05-16 Thread Ramkumar Aiyengar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7545?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ramkumar Aiyengar reassigned SOLR-7545: --- Assignee: Ramkumar Aiyengar SOLR_HOST parameter not honoured in bin/solr and SolrCLI

[jira] [Commented] (SOLR-7545) SOLR_HOST parameter not honoured in bin/solr and SolrCLI

2015-05-16 Thread Ramkumar Aiyengar (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7545?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14546737#comment-14546737 ] Ramkumar Aiyengar commented on SOLR-7545: - Looks good. Can you replace HOSTNAME

[JENKINS] Lucene-Solr-trunk-Linux (32bit/jdk1.9.0-ea-b60) - Build # 12710 - Failure!

2015-05-16 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/12710/ Java: 32bit/jdk1.9.0-ea-b60 -client -XX:+UseG1GC 1 tests failed. FAILED: org.apache.solr.cloud.BasicDistributedZkTest.test Error Message: commitWithin did not work on node: http://127.0.0.1:41505/ye/collection1 expected:68

[jira] [Comment Edited] (SOLR-7468) Kerberos authentication module

2015-05-16 Thread Ishan Chattopadhyaya (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14546606#comment-14546606 ] Ishan Chattopadhyaya edited comment on SOLR-7468 at 5/16/15 7:09 AM:

[JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.7.0_80) - Build # 12524 - Failure!

2015-05-16 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/12524/ Java: 64bit/jdk1.7.0_80 -XX:-UseCompressedOops -XX:+UseSerialGC 1 tests failed. FAILED: org.apache.solr.cloud.MultiThreadedOCPTest.test Error Message: Captured an uncaught exception in thread: Thread[id=6131,

[jira] [Commented] (SOLR-7468) Kerberos authentication module

2015-05-16 Thread Ishan Chattopadhyaya (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14546606#comment-14546606 ] Ishan Chattopadhyaya commented on SOLR-7468: +1 to extending the test. I had

[jira] [Commented] (SOLR-7086) Suggester dictionary empty if payload field does not exist

2015-05-16 Thread Marius Grama (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-7086?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14546667#comment-14546667 ] Marius Grama commented on SOLR-7086: Great.I'm almost done with the Lucene patch. Still

[JENKINS] Lucene-Solr-Tests-5.x-Java7 - Build # 3130 - Failure

2015-05-16 Thread Apache Jenkins Server
Build: https://builds.apache.org/job/Lucene-Solr-Tests-5.x-Java7/3130/ 1 tests failed. REGRESSION: org.apache.solr.cloud.MultiThreadedOCPTest.test Error Message: Captured an uncaught exception in thread: Thread[id=4338, name=parallelCoreAdminExecutor-1784-thread-21, state=RUNNABLE,

[JENKINS] Lucene-Solr-5.x-Linux (64bit/jdk1.8.0_60-ea-b12) - Build # 12534 - Failure!

2015-05-16 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-5.x-Linux/12534/ Java: 64bit/jdk1.8.0_60-ea-b12 -XX:+UseCompressedOops -XX:+UseSerialGC 1 tests failed. FAILED: junit.framework.TestSuite.org.apache.solr.cloud.HttpPartitionTest Error Message: Some resources were not closed, shutdown, or

[JENKINS] Lucene-Solr-trunk-Linux (64bit/jdk1.8.0_45) - Build # 12706 - Failure!

2015-05-16 Thread Policeman Jenkins Server
Build: http://jenkins.thetaphi.de/job/Lucene-Solr-trunk-Linux/12706/ Java: 64bit/jdk1.8.0_45 -XX:+UseCompressedOops -XX:+UseParallelGC 1 tests failed. FAILED: org.apache.solr.cloud.BasicDistributedZkTest.test Error Message: commitWithin did not work on node: