Re: A prototype migration tool Jira to GitHub

2022-06-23 Thread Rob Audenaerde
I didn't read the entire thread, so apologies if this is a duplicate: Did you check https://spring.io/blog/2021/01/07/spring-data-s-migration-from-jira-to-github-issues They especially write there is an api that doesn't trigger notifications. It is documented here:

Re: is gradle supposed to work with java 18?

2022-04-18 Thread Rob Audenaerde
See: https://github.com/gradle/gradle/issues/19283 Seems it has been fixed in the master branch, but not yet released as proper build. On Mon, Apr 18, 2022 at 4:49 PM Robert Muir wrote: > I passed various flags such as --debug with no help. "Failed to create > Jar file" is an especially crappy

Re: FacetResult#value semantics?

2021-05-11 Thread Rob Audenaerde
se-cases for this. > Should we cut a separate issue to track adding a "field count" concept > to FacetResult? > > Cheers, > -Greg > > On Mon, May 10, 2021 at 8:05 AM Rob Audenaerde > wrote: > > > > Hi all, > > > > We use the fac

Re: FacetResult#value semantics?

2021-05-10 Thread Rob Audenaerde
Hi all, We use the facets a lot to generate all kinds of nice aggregates on our data, and we alse needed to make the distinction between FIELD_COUNT and DOCUMENT_COUNT, where the former increases for each multi-value, and the latter only once for each document that contains that field at least

use advance() in RandomSamplingFacetCollector

2020-02-21 Thread Rob Audenaerde
In the code that estimates facet counts by taking random samples; this is the inner loop: final DocIdSetIterator it = docs.bits.iterator(); for (int doc = it.nextDoc(); doc != DocIdSetIterator.NO_MORE_DOCS; doc = it.nextDoc()) { if (counter == randomIndex) { sampleDocs.set(doc); }

Re: [ANNOUNCE] Apache Lucene 6.6.5 released

2018-07-04 Thread Rob Audenaerde
"This release contains one bug fix." http://lucene.apache.org/core/6_6_5/changes/Changes.html No changes. Something does not add up? On Tue, Jul 3, 2018 at 11:29 PM Ishan Chattopadhyaya < ichattopadhy...@gmail.com> wrote: > 3 July 2018, Apache Luceneā„¢ 6.6.5 available > > The Lucene PMC is

performance drop on 27 oct?

2017-11-13 Thread Rob Audenaerde
Hi all, There seems to be a performance drop in some benchmarks, see: https://home.apache.org/~mikemccand/lucenebench/Term.html https://home.apache.org/~mikemccand/lucenebench/TermGroup10K.html https://home.apache.org/~mikemccand/lucenebench/AndMedOrHighHigh.htm

Re: JIRA and keyboard shortcuts

2017-10-28 Thread Rob Audenaerde
I think you can just press the '?' to get a list Verstuurd vanaf mijn iPad > Op 28 okt. 2017 om 03:25 heeft Martin Gainty het > volgende geschreven: > > do you have a link for JIRA keyboard shortcuts we can reference? > > > Thanks David! > > Martin >

[jira] [Commented] (LUCENE-7891) Default LRUType of LruTaxonomyWriterCache should be guaranteed to be correct

2017-09-05 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-7891?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16153645#comment-16153645 ] Rob Audenaerde commented on LUCENE-7891: Can I do anything to help implement this issue

Can anyone please (review and) merge LUCENE-7891?

2017-08-23 Thread Rob Audenaerde
Would anyone please review the patch in https://issues.apache.org/jira/browse/LUCENE-7891 and merge it? It contains a testcase + a patch. Thanks!

Re: Single arg constructor LruTaxonomyWriterCache uses the unsafe LRU_HASHED

2017-06-29 Thread Rob Audenaerde
cCandless > > http://blog.mikemccandless.com > > On Tue, Jun 27, 2017 at 4:22 AM, Rob Audenaerde <rob.audenae...@gmail.com> > wrote: > >> Hi all, >> >> We bumped into a hash collision in the LruTaxonomyWriterCache, which >> caused a wrong facet to be indexed

Single arg constructor LruTaxonomyWriterCache uses the unsafe LRU_HASHED

2017-06-27 Thread Rob Audenaerde
Hi all, We bumped into a hash collision in the LruTaxonomyWriterCache, which caused a wrong facet to be indexed for a document. (It took some time to figure out what was going wrong..) The javadoc of this constructor is not explicitly telling it is unsafe (you need to check the enum itself to

Re: HitQueue.getSentinelObject() and performance

2017-01-21 Thread Rob Audenaerde
don't think we can make this a static instance: the collection > process will re-use the entry it pulls out of the queue. > > Mike McCandless > > http://blog.mikemccandless.com > > > On Fri, Jan 20, 2017 at 10:39 AM, Rob Audenaerde > <rob.audenae...@gmail

HitQueue.getSentinelObject() and performance

2017-01-20 Thread Rob Audenaerde
Hi all, I'm currently looking at the performance of our application, and I see a lot of time being spent in HitQueue.getSentinelObject() (I track this using the VisualVM sampler) When I look at the implementation, I see a new ScoreDoc is constructed each time. Is this necessary? Maybe a

[jira] [Updated] (LUCENE-7366) Allow RAMDirectory to copy any Directory

2016-06-30 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-7366?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-7366: --- Description: Uwe: "The FSDirectory passed to RAMDirectory in the ctor could be ch

[jira] [Updated] (LUCENE-7366) Allow RAMDirectory to copy any Directory

2016-06-30 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-7366?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-7366: --- Description: The FSDirectory passed to RAMDirectory in the ctor could be changed

[jira] [Created] (LUCENE-7366) Allow RAMDirectory to copy any Directory

2016-06-30 Thread Rob Audenaerde (JIRA)
Rob Audenaerde created LUCENE-7366: -- Summary: Allow RAMDirectory to copy any Directory Key: LUCENE-7366 URL: https://issues.apache.org/jira/browse/LUCENE-7366 Project: Lucene - Core Issue

lucene expressions - asm dependency

2014-11-03 Thread Rob Audenaerde
Hi all, I'm using lucene-expressions in a project, and it has a dependency on asm 4.1. I also use some components that depend on cglib 2.2.2, that depeneds on asm 3.1. Besides, asm 5.0.2 is out since April 2014 No ideal situation. Would it be possible to shade / repackage asm for

allow for String to be used in expressions?

2014-04-07 Thread Rob Audenaerde
Hi all, I was wondering why String is not allowed in the (javascript)expressions? Is there a fundamental thing 'wrong' with that? -Rob

Re: allow for String to be used in expressions?

2014-04-07 Thread Rob Audenaerde
that can be passed to a search() call, but I think that is currently handled differently. Just curious what the options are here, and why the limitation exists. On Mon, Apr 7, 2014 at 2:54 AM, Rob Audenaerde rob.audenae...@gmail.com wrote: Hi all, I was wondering why String is not allowed

[jira] [Commented] (LUCENE-5370) Sorting Facets on CategoryPath (Label)

2014-03-21 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13942986#comment-13942986 ] Rob Audenaerde commented on LUCENE-5370: I currently use the code below: {code

[jira] [Comment Edited] (LUCENE-5370) Sorting Facets on CategoryPath (Label)

2014-03-21 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13942986#comment-13942986 ] Rob Audenaerde edited comment on LUCENE-5370 at 3/21/14 11:40 AM

[jira] [Updated] (LUCENE-5476) Facet sampling

2014-03-17 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5476: --- Attachment: LUCENE-5476.patch New patch. I'm still not really sure about the scorings

[jira] [Created] (LUCENE-5533) TaxonomyFacetSumIntAssociations overflows, unpredicted results

2014-03-17 Thread Rob Audenaerde (JIRA)
Rob Audenaerde created LUCENE-5533: -- Summary: TaxonomyFacetSumIntAssociations overflows, unpredicted results Key: LUCENE-5533 URL: https://issues.apache.org/jira/browse/LUCENE-5533 Project: Lucene

[jira] [Updated] (LUCENE-5476) Facet sampling

2014-03-17 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5476: --- Attachment: LUCENE-5476.patch Removed scores. Added javadoc explaining what happens

[jira] [Created] (LUCENE-5535) DrillDownQuery not working with AssociateFacetFields?

2014-03-17 Thread Rob Audenaerde (JIRA)
Rob Audenaerde created LUCENE-5535: -- Summary: DrillDownQuery not working with AssociateFacetFields? Key: LUCENE-5535 URL: https://issues.apache.org/jira/browse/LUCENE-5535 Project: Lucene - Core

[jira] [Updated] (LUCENE-5535) DrillDownQuery not working with AssociateFacetFields?

2014-03-17 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5535?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5535: --- Attachment: AssociationsFacetsWithDrilldownExample.java DrillDownQuery not working

[jira] [Commented] (LUCENE-5533) TaxonomyFacetSumIntAssociations overflows, unpredicted results

2014-03-17 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5533?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13937770#comment-13937770 ] Rob Audenaerde commented on LUCENE-5533: I hit this pretty easily. I tried

[jira] [Commented] (LUCENE-5535) DrillDownQuery not working with AssociateFacetFields?

2014-03-17 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5535?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13937783#comment-13937783 ] Rob Audenaerde commented on LUCENE-5535: Maybe then I made a mistake somewhere

[jira] [Commented] (LUCENE-5535) DrillDownQuery not working with AssociateFacetFields?

2014-03-17 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5535?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13937789#comment-13937789 ] Rob Audenaerde commented on LUCENE-5535: I think I used an older revision

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-12 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13931510#comment-13931510 ] Rob Audenaerde commented on LUCENE-5476: Hi all, Making good progress, only I'm

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-11 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13930078#comment-13930078 ] Rob Audenaerde commented on LUCENE-5476: Thanks again for the good points. I

[jira] [Comment Edited] (LUCENE-5476) Facet sampling

2014-03-11 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13930078#comment-13930078 ] Rob Audenaerde edited comment on LUCENE-5476 at 3/11/14 8:10 AM

[jira] [Updated] (LUCENE-5476) Facet sampling

2014-03-11 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5476: --- Attachment: LUCENE-5476.patch Facet sampling -- Key: LUCENE

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-11 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13930118#comment-13930118 ] Rob Audenaerde commented on LUCENE-5476: Thanks Shai, I really appreciate all

[jira] [Comment Edited] (LUCENE-5476) Facet sampling

2014-03-11 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13930118#comment-13930118 ] Rob Audenaerde edited comment on LUCENE-5476 at 3/11/14 9:39 AM

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-07 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13924037#comment-13924037 ] Rob Audenaerde commented on LUCENE-5476: {quote} ...Given our test framework

[jira] [Updated] (LUCENE-5476) Facet sampling

2014-03-06 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5476: --- Attachment: LUCENE-5476.patch I have a patch ready that implements the random sampling

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-06 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13922293#comment-13922293 ] Rob Audenaerde commented on LUCENE-5476: Thanks Shai, I have fixed the points

[jira] [Updated] (LUCENE-5476) Facet sampling

2014-03-06 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5476: --- Attachment: LUCENE-5476.patch Facet sampling -- Key: LUCENE

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-06 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13922411#comment-13922411 ] Rob Audenaerde commented on LUCENE-5476: Thanks, {quote} when !sampleNeeded

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-05 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13920642#comment-13920642 ] Rob Audenaerde commented on LUCENE-5476: Hi all, good points. Actually, in my

[jira] [Comment Edited] (LUCENE-5476) Facet sampling

2014-03-05 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13920642#comment-13920642 ] Rob Audenaerde edited comment on LUCENE-5476 at 3/5/14 8:18 AM

[jira] [Updated] (LUCENE-5476) Facet sampling

2014-03-05 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5476: --- Attachment: LUCENE-5476.patch * Reverted move of XorShift64Random * Added basic test

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-05 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13920822#comment-13920822 ] Rob Audenaerde commented on LUCENE-5476: {quote} How do you count the number

[jira] [Updated] (LUCENE-5476) Facet sampling

2014-03-04 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5476: --- Attachment: LUCENE-5476.patch New patch. My little benchmark results: Exact :176 ms

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-04 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13919160#comment-13919160 ] Rob Audenaerde commented on LUCENE-5476: btw: My use case is that I would like

[jira] [Updated] (LUCENE-5476) Facet sampling

2014-03-04 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5476: --- Attachment: LUCENE-5476.patch I have taken these points into account in the new patch

[jira] [Comment Edited] (LUCENE-5476) Facet sampling

2014-03-04 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13919227#comment-13919227 ] Rob Audenaerde edited comment on LUCENE-5476 at 3/4/14 10:35 AM

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-04 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13919311#comment-13919311 ] Rob Audenaerde commented on LUCENE-5476: I will add the documentation

[jira] [Updated] (LUCENE-5476) Facet sampling

2014-03-03 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5476: --- Attachment: LUCENE-5476.patch Here is a patch. I'm not totally satisfied with it though

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-03 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13917888#comment-13917888 ] Rob Audenaerde commented on LUCENE-5476: More performance data: Exact: 185 ms

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-03 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13918017#comment-13918017 ] Rob Audenaerde commented on LUCENE-5476: Quick update: I implemented the single

[jira] [Comment Edited] (LUCENE-5476) Facet sampling

2014-03-03 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13918017#comment-13918017 ] Rob Audenaerde edited comment on LUCENE-5476 at 3/3/14 12:46 PM

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-03-02 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13917414#comment-13917414 ] Rob Audenaerde commented on LUCENE-5476: Thanks all for the insight! My

[jira] [Comment Edited] (LUCENE-5476) Facet sampling

2014-03-02 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13917414#comment-13917414 ] Rob Audenaerde edited comment on LUCENE-5476 at 3/2/14 2:01 PM

[jira] [Updated] (LUCENE-5479) Make default dimension config in FacetConfig adjustable

2014-02-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5479?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5479: --- Attachment: LUCENE-5479.patch With javadoc. Make default dimension config in FacetConfig

[jira] [Commented] (LUCENE-5370) Sorting Facets on CategoryPath (Label)

2014-02-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13915602#comment-13915602 ] Rob Audenaerde commented on LUCENE-5370: I have implemented sorting on label

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-02-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13915650#comment-13915650 ] Rob Audenaerde commented on LUCENE-5476: I'm currently expermenting

[jira] [Updated] (LUCENE-5476) Facet sampling

2014-02-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5476: --- Attachment: SamplingFacetsCollector.java Facet sampling

[jira] [Commented] (LUCENE-5476) Facet sampling

2014-02-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13915796#comment-13915796 ] Rob Audenaerde commented on LUCENE-5476: Thanks guys for the feedback (also on my

[jira] [Updated] (LUCENE-5476) Facet sampling

2014-02-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5476?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5476: --- Attachment: LUCENE-5476.patch Here is a patch (agains 4.7) that covers some of the feedback

[jira] [Updated] (LUCENE-5474) Add example for retrieving facet counts without retrieving documents

2014-02-27 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5474: --- Attachment: SimpleFacetsExample.java Yes, that prevents some duplicate stuff. Here

[jira] [Created] (LUCENE-5476) Facet sampling

2014-02-27 Thread Rob Audenaerde (JIRA)
Rob Audenaerde created LUCENE-5476: -- Summary: Facet sampling Key: LUCENE-5476 URL: https://issues.apache.org/jira/browse/LUCENE-5476 Project: Lucene - Core Issue Type: Improvement

[jira] [Updated] (LUCENE-5474) Add example for retrieving facet counts without retrieving documents

2014-02-27 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5474: --- Attachment: LUCENE-5474.patch Here is the patch Add example for retrieving facet counts

[jira] [Created] (LUCENE-5479) Make default dimension config in FacetConfig adjustable

2014-02-27 Thread Rob Audenaerde (JIRA)
Rob Audenaerde created LUCENE-5479: -- Summary: Make default dimension config in FacetConfig adjustable Key: LUCENE-5479 URL: https://issues.apache.org/jira/browse/LUCENE-5479 Project: Lucene - Core

[jira] [Updated] (LUCENE-5479) Make default dimension config in FacetConfig adjustable

2014-02-27 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5479?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5479: --- Attachment: LUCENE-5479.patch Make default dimension config in FacetConfig adjustable

[jira] [Updated] (LUCENE-5479) Make default dimension config in FacetConfig adjustable

2014-02-27 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5479?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5479: --- Description: Now it is hardcoded to DEFAULT_DIM_CONFIG. This may be useful for most

[jira] [Created] (LUCENE-5474) Add example for retrieving facet counts without retrieving documents

2014-02-26 Thread Rob Audenaerde (JIRA)
Rob Audenaerde created LUCENE-5474: -- Summary: Add example for retrieving facet counts without retrieving documents Key: LUCENE-5474 URL: https://issues.apache.org/jira/browse/LUCENE-5474 Project

[jira] [Updated] (LUCENE-5474) Add example for retrieving facet counts without retrieving documents

2014-02-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5474: --- Attachment: FacetOnlyExample.java For example like this Add example for retrieving facet

[jira] [Comment Edited] (LUCENE-5474) Add example for retrieving facet counts without retrieving documents

2014-02-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5474?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13913025#comment-13913025 ] Rob Audenaerde edited comment on LUCENE-5474 at 2/26/14 3:36 PM

[jira] [Updated] (LUCENE-5474) Add example for retrieving facet counts without retrieving documents

2014-02-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5474: --- Description: In the examples of facetting the {{FacetsCollector.search()}} is used

[jira] [Updated] (LUCENE-5474) Add example for retrieving facet counts without retrieving documents

2014-02-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5474: --- Description: In the examples of facetting the {{FacetsCollector.search()}} is used

[jira] [Updated] (LUCENE-5474) Add example for retrieving facet counts without retrieving documents

2014-02-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5474: --- Description: In the examples of facetting the {{FacetsCollector.search()}} is used

[jira] [Updated] (LUCENE-5474) Add example for retrieving facet counts without retrieving documents

2014-02-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5474: --- Description: In the examples of facetting the {{FacetsCollector.search()}} is used

[jira] [Updated] (LUCENE-5474) Add example for retrieving facet counts without retrieving documents

2014-02-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5474: --- Description: In the examples of facetting the {{FacetsCollector.search()}} is used

[jira] [Created] (LUCENE-5370) Sorting Facets on CatergotyPath (Label)

2013-12-16 Thread Rob Audenaerde (JIRA)
Rob Audenaerde created LUCENE-5370: -- Summary: Sorting Facets on CatergotyPath (Label) Key: LUCENE-5370 URL: https://issues.apache.org/jira/browse/LUCENE-5370 Project: Lucene - Core Issue

[jira] [Commented] (LUCENE-5139) ArrayIndexOutOfBoundsException in FacetsAccumulator.accumulate while indexing

2013-12-16 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5139?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13848956#comment-13848956 ] Rob Audenaerde commented on LUCENE-5139: In the end we managed to get around

[jira] [Closed] (LUCENE-5139) ArrayIndexOutOfBoundsException in FacetsAccumulator.accumulate while indexing

2013-12-16 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5139?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde closed LUCENE-5139. -- Resolution: Won't Fix The issue cannot be fixed in Lucene, I think. So closed with 'Wont't

[jira] [Updated] (LUCENE-5370) Sorting Facets on CatergotyPath (Label)

2013-12-16 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5370: --- Description: Facet support sorting through {{FacetRequest.SortOrder}}. This is used

[jira] [Updated] (LUCENE-5370) Sorting Facets on CategoryPath (Label)

2013-12-16 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5370: --- Summary: Sorting Facets on CategoryPath (Label) (was: Sorting Facets on CatergortyPath

[jira] [Updated] (LUCENE-5370) Sorting Facets on CatergortyPath (Label)

2013-12-16 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5370: --- Summary: Sorting Facets on CatergortyPath (Label) (was: Sorting Facets on CatergotyPath

[jira] [Created] (LUCENE-5139) ArrayIndexOutOfBoundsException in FacetsAccumulator.accumulate while indexing

2013-07-26 Thread Rob Audenaerde (JIRA)
Rob Audenaerde created LUCENE-5139: -- Summary: ArrayIndexOutOfBoundsException in FacetsAccumulator.accumulate while indexing Key: LUCENE-5139 URL: https://issues.apache.org/jira/browse/LUCENE-5139

[jira] [Updated] (LUCENE-5139) ArrayIndexOutOfBoundsException in FacetsAccumulator.accumulate while indexing

2013-07-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5139?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5139: --- Description: It is a hard to reproduce problem, but I see it from time to time. I am

[jira] [Updated] (LUCENE-5139) ArrayIndexOutOfBoundsException in FacetsAccumulator.accumulate while indexing

2013-07-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5139?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5139: --- Description: It is a hard to reproduce problem, but I see it from time to time. I am

[jira] [Updated] (LUCENE-5139) ArrayIndexOutOfBoundsException in FacetsAccumulator.accumulate while indexing

2013-07-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5139?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5139: --- Description: It is a hard to reproduce problem, but I see it from time to time. I am

[jira] [Commented] (LUCENE-5139) ArrayIndexOutOfBoundsException in FacetsAccumulator.accumulate while indexing

2013-07-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5139?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13720729#comment-13720729 ] Rob Audenaerde commented on LUCENE-5139: Hi Shai, I cannot directly use

[jira] [Comment Edited] (LUCENE-5139) ArrayIndexOutOfBoundsException in FacetsAccumulator.accumulate while indexing

2013-07-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5139?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13720729#comment-13720729 ] Rob Audenaerde edited comment on LUCENE-5139 at 7/26/13 12:24 PM

[jira] [Updated] (LUCENE-5139) ArrayIndexOutOfBoundsException in FacetsAccumulator.accumulate while indexing

2013-07-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5139?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rob Audenaerde updated LUCENE-5139: --- Attachment: testfacetindexing.zip Two tests. One uses NTR using the writers, the other one

[jira] [Commented] (LUCENE-5139) ArrayIndexOutOfBoundsException in FacetsAccumulator.accumulate while indexing

2013-07-26 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5139?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13720755#comment-13720755 ] Rob Audenaerde commented on LUCENE-5139: If I understand correctly, the problem

[jira] [Commented] (LUCENE-5048) NegativeArraySizeException caused by ff.addFields

2013-06-27 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5048?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13694540#comment-13694540 ] Rob Audenaerde commented on LUCENE-5048: Wow. Thanks :) I happened to trigger

[jira] [Commented] (LUCENE-5015) Unexpected performance difference between SamplingAccumulator and StandardFacetAccumulator

2013-05-29 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13669082#comment-13669082 ] Rob Audenaerde commented on LUCENE-5015: Time in ms. {noformat} MADQ

[jira] [Comment Edited] (LUCENE-5015) Unexpected performance difference between SamplingAccumulator and StandardFacetAccumulator

2013-05-29 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13669082#comment-13669082 ] Rob Audenaerde edited comment on LUCENE-5015 at 5/29/13 8:12 AM

[jira] [Commented] (LUCENE-5015) Unexpected performance difference between SamplingAccumulator and StandardFacetAccumulator

2013-05-29 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13669164#comment-13669164 ] Rob Audenaerde commented on LUCENE-5015: Thank you too :) Some more test-details

[jira] [Comment Edited] (LUCENE-5015) Unexpected performance difference between SamplingAccumulator and StandardFacetAccumulator

2013-05-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13668134#comment-13668134 ] Rob Audenaerde edited comment on LUCENE-5015 at 5/28/13 7:09 AM

[jira] [Commented] (LUCENE-5015) Unexpected performance difference between SamplingAccumulator and StandardFacetAccumulator

2013-05-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13668134#comment-13668134 ] Rob Audenaerde commented on LUCENE-5015: Hi all, thanks for all the progress. I

[jira] [Comment Edited] (LUCENE-5015) Unexpected performance difference between SamplingAccumulator and StandardFacetAccumulator

2013-05-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13668134#comment-13668134 ] Rob Audenaerde edited comment on LUCENE-5015 at 5/28/13 7:11 AM

[jira] [Commented] (LUCENE-5015) Unexpected performance difference between SamplingAccumulator and StandardFacetAccumulator

2013-05-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13668143#comment-13668143 ] Rob Audenaerde commented on LUCENE-5015: I took the revisionnumber

[jira] [Commented] (LUCENE-5015) Unexpected performance difference between SamplingAccumulator and StandardFacetAccumulator

2013-05-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13668267#comment-13668267 ] Rob Audenaerde commented on LUCENE-5015: Hi Shai, I will check tomorrow. Just

[jira] [Comment Edited] (LUCENE-5015) Unexpected performance difference between SamplingAccumulator and StandardFacetAccumulator

2013-05-28 Thread Rob Audenaerde (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-5015?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13668267#comment-13668267 ] Rob Audenaerde edited comment on LUCENE-5015 at 5/28/13 12:11 PM

  1   2   >