[Save this search]

Status
All
   Fixed (7187)
  Closed (4474)
Open (2527)
   Won't Fix (543)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2227)
  PR (300)
Author relation
All
  None (2034)
  Member (599)
  Contributor (408)
  New contributor (56)
Created
All
  Past day (2)
  Past 2 days (2)
  Past 3 days (5)
  Past week (16)
  Past month (46)
  Past 3 months (81)
  Past 6 months (154)
  Past year (278)
Updated
All
  Past day (11)
  Past 2 days (22)
  Past 3 days (25)
  Past week (46)
  Past month (82)
  Past 3 months (119)
  Past 6 months (398)
  Past year (502)
Updated ago
All
  > 1 day ago (2516)
  > 2 days ago (2505)
  > 3 days ago (2502)
  > 1 week ago (2481)
  > 1 month ago (2445)
  > 3 months ago (2408)
  > 1 year ago (2025)
Comment count
All
  0 (552)
  1 (350)
  2 - 5 (794)
  6 - 10 (430)
  10 - 20 (306)
  > 20 (166)
Reaction count
All
  0 (2247)
  1 (166)
  2 - 5 (92)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (14)
  mikemccand (8)
  iverase (5)
  benwtrent (5)
  rmuir (3)
  dweiss (3)
  msokolov (3)

See all 23...
Mentioned
All
  jpountz (90)
  mikemccand (71)
  rmuir (49)
  benwtrent (45)
  uschindler (38)
  msokolov (37)
  dweiss (16)

See all 197...
Reviewed
All
  jpountz (23)
  mikemccand (22)
  rmuir (13)
  msokolov (13)
  uschindler (13)
  benwtrent (12)
  dweiss (11)

See all 57...
Commented
All
  asfimport (1369)
  github-actions[bot] (230)
  jpountz (141)
  mikemccand (119)
  rmuir (95)
  benwtrent (82)
  msokolov (77)

See all 282...
User
All
  asfimport (1811)
  github-actions[bot] (268)
  mikemccand (203)
  jpountz (200)
  rmuir (127)
  benwtrent (119)
  msokolov (98)

See all 427...
Last comment user
All
  asfimport (1326)
  github-actions[bot] (223)
  jpountz (32)
  mikemccand (30)
  rmuir (23)
  msokolov (16)
  gsmiller (14)

See all 155...
Draft
All
  No (249)
  Yes (51)
Component
All
  core (589)
  analysis (151)
  highlighter (47)
  spatial (41)
  facet (40)
  queryparser (27)
  test-framework (27)

See all 23...
Type
All
  enhancement (1160)
  bug (725)
  task (198)
  test (77)
  documentation (22)
Labels
All
  Stale (222)
  legacy-jira-fix-versio... (214)
  legacy-jira-fix-versio... (169)
  affects-version:4.0-ALPHA (81)
  tool:build (54)
  vector-based-search (47)
  affects-version:6.0 (37)

See all 156...
Commits?
All
  No (2527)
Reporter
All
  rmuir (271)
  mikemccand (153)
  jpountz (127)
  dsmiley (68)
  uschindler (52)
  iverase (42)
  romseygeek (41)

See all 734...
Assignee
All
  Unassigned (2285)
  mikemccand (35)
  uschindler (32)
  romseygeek (28)
  dsmiley (22)
  rmuir (14)
  jpountz (11)

See all 44...
  Filters: Status (Open),  Issue type,  Author relation,  Created,  Updated,  Updated ago,  Comment count,  Reaction count,  Review Requested,  Mentioned,  Reviewed,  Commented,  User,  Last comment user,  Draft,  Component,  Type,  Labels,  Commits?,  Reporter,  Assignee

#15662: Lucene nightly benchmark regression on 29/01
47.3 minutes ago  52 comments  0 votes  0 watches  benwtrentepotyomjpountzmikemccandmsokolovrmuirscampishubhamsrkdevstefanvoditauschindler
Description We are seeing regressions on lucene nightly benchmarks on 29/01 The set of commits ... We should find the root cause of the regression. Version and environment details_No response_
    msokolov 47.3 minutes ago:  Exciting! I clicked on one of youre "here, here, here, ..." links above hoping to see the pictures of the ...
    benwtrent 54.8 minutes ago:  Great stuff @mikemccand !!! For vectors, it might be a real regression? Or the JDK downgrade harmed something.

#15742 PR: Optimize int4 vector computations by avoiding conversions
2.1 hours ago  16 comments  0 votes  0 watches  github-actions[bot]kaivalnpmccullocht
Spinoff from 15736, where @mccullocht identified vector conversions as a potentially slow area ( ... This PR loads and operates on SIMD registers of the preferred bit size to avoid intermediate ... This was sparked from 15697 where we observed a performance drop in JMH benchmarks of some 4-bit ...
    kaivalnp 2.1 hours ago:  Thanks @mccullocht! Looks like performance is equivalent or better in all functions (except small dip in ... I'll merge + backport this to 10.x in a day or so!
    mccullocht 3.4 hours ago:  As of ac60bae35de6b521c60c161619ebe184820baaa8 ` Benchmark ...

#12440: Make HNSW merges faster
2.9 hours ago  20 comments  0 votes  0 watches  benwtrenthpvdjbellisjmazanec15mbrettemccullochttteofilizhaih
Description It is well known that when merging segments, HNSW is not merged in linear time. We lose a fair bit of useful information as all the NSWs are effectively thrown away (except for a ... This means we have useful distributed work from each segment that is ignored.
    mccullocht 2.9 hours ago:  Looking at the two graph merge in the paper it seems like the idea is to seed the searches ... This is necessary but doesn't seem sufficient -- you avoid navigation (you could probably start ... Even if the initial candidate list by seeding is the correct top N we still have to visit each of ...
    benwtrent 1.1 days ago:  New paper just dropped, seems like it could really help with merging! https://arxiv.org/pdf/2602.17099

#15722 PR: Add interface to do prefetch on KnnVectorValues and an example implementation to use prefetch in ...
2.9 hours ago  18 comments  0 votes  0 watches  benwtrentgithub-actions[bot]mccullochtmikemccandnavneet1vvigyasharma
Description This change add the ability to do prefetch for KnnVectorValues. Along with the change, there is a sample implementation of how to add create a PrefetchableFlatVecto ... Places where this prefetch can be useful: 1.
    navneet1v 1.5 days ago:  @mccullocht , @benwtrent can I get a review on this PR? Since I have moved out prefetching logic outside. There should be no impact on current HNSW algorithm
    navneet1v 5.7 days ago:  Hi @mccullocht and @benwtrent I took another pass at the code where I cleaned up the prefetch ... I have also added an example implementation of how to do prefetch (PrefetchableFlatVectorsScorer). This should now keep things clean and separated.

#15727 PR: Fix incorrect handling of missing values in ToParentBlockJoinSortField (#15548)
7.2 hours ago  30 comments  0 votes  0 watches  github-actions[bot]gmaroulimccullochtromseygeek
Description **Problem** ToParentBlockJoinSortField did not handle missing values for child ... When a parent had a mix of children with a value and children without, the children without values ... This led to incorrect sort ordering -- the missing children should participate in the comparison ...
    gmarouli 1.3 days ago:  I see, so we could use the same approach based on the child sortMissingLast. If parent and child have different reverse or sortMissingLast will be able to differentiate between ... Thank you!
    romseygeek 1.3 days ago:  TermOrdValComparator has this snippet: ` if (sortMissingLast) { missingOrd = ...

#15768: Add support for BM25's k3 parameter to query parsers
9.1 hours ago  0 comments  0 votes  0 watches  jpountz
Description Currently, duplicate terms in query strings see their scores boosted by their number ... It would likely be better to saturate the contribution of such repeated terms, as suggested in the ... Terrier: https://github.com/terrier-org/terrier-core/blob/54e6faf802bb6275b53ad6de14a93a53389719b8/ ...

#15767 PR: Ensure that index is actually there in LegacyBaseDocValuesFormatTestCase
9.3 hours ago  1 comments  0 votes  0 watches  romseygeek
In rare cases, testSortedNumericsSingleValuedMissingVsStoredFields in LegacyBaseDocValuesFormatTest ... This adds an explicit commit() call so that we avoid spurious failures, in line with other ...
    romseygeek 9.3 hours ago:  This could conceivably go into a 10.4.1 if we release one? I'll wait until 10.4.0 is actually finished before adding a Changes entry.

[21.0 msec search, 22.0 msec total]