[Save this search]

Status
All
   Fixed (7187)
  Closed (5052)
Open (2627)
   Won't Fix (545)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2282)
  PR (345)
Author relation
All
  None (2059)
  Member (653)
  Contributor (488)
  New contributor (64)
Created
All
  Past day (9)
  Past 2 days (11)
  Past 3 days (13)
  Past week (24)
  Past month (57)
  Past 3 months (129)
  Past 6 months (184)
  Past year (284)
Updated
All
  Past day (17)
  Past 2 days (19)
  Past 3 days (30)
  Past week (50)
  Past month (115)
  Past 3 months (172)
  Past 6 months (233)
  Past year (525)
Updated ago
All
  > 1 day ago (2610)
  > 2 days ago (2608)
  > 3 days ago (2597)
  > 1 week ago (2577)
  > 1 month ago (2512)
  > 3 months ago (2455)
  > 1 year ago (2102)
Comment count
All
  0 (583)
  1 (377)
  2 - 5 (812)
  6 - 10 (440)
  10 - 20 (315)
  > 20 (173)
Reaction count
All
  0 (2341)
  1 (172)
  2 - 5 (92)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (13)
  mikemccand (11)
  rmuir (6)
  benwtrent (5)
  iverase (4)
  dweiss (3)
  msokolov (3)

See all 27...
Mentioned
All
  jpountz (97)
  mikemccand (85)
  rmuir (57)
  benwtrent (54)
  msokolov (43)
  uschindler (41)
  romseygeek (24)

See all 210...
Reviewed
All
  mikemccand (26)
  jpountz (23)
  benwtrent (14)
  rmuir (13)
  msokolov (13)
  uschindler (12)
  dweiss (10)

See all 64...
Commented
All
  asfimport (1368)
  github-actions[bot] (266)
  jpountz (141)
  mikemccand (129)
  rmuir (97)
  msokolov (89)
  benwtrent (84)

See all 305...
User
All
  asfimport (1810)
  github-actions[bot] (313)
  mikemccand (219)
  jpountz (205)
  rmuir (134)
  benwtrent (122)
  msokolov (108)

See all 464...
Last comment user
All
  asfimport (1324)
  github-actions[bot] (258)
  mikemccand (35)
  jpountz (32)
  rmuir (23)
  msokolov (19)
  benwtrent (17)

See all 163...
Draft
All
  No (288)
  Yes (57)
Component
All
  core (624)
  analysis (155)
  highlighter (47)
  facet (42)
  spatial (41)
  queryparser (29)
  test-framework (23)

See all 23...
Type
All
  enhancement (1199)
  bug (727)
  task (202)
  test (79)
  documentation (22)
Labels
All
  Stale (256)
  legacy-jira-fix-versio... (214)
  legacy-jira-fix-versio... (169)
  affects-version:4.0-ALPHA (81)
  tool:build (54)
  vector-based-search (48)
  affects-version:6.0 (37)

See all 157...
Commits?
All
  No (2627)
Reporter
All
  rmuir (270)
  mikemccand (154)
  jpountz (126)
  dsmiley (67)
  uschindler (52)
  iverase (43)
  dweiss (41)

See all 759...
Assignee
All
  Unassigned (2383)
  mikemccand (35)
  uschindler (32)
  romseygeek (27)
  dsmiley (22)
  rmuir (15)
  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

#16450 PR: Fix DocValuesRangeIterator doc ID run ends
2.7 hours ago  4 comments  0 votes  0 watches  github-actions[bot]parkertimmins
DocValuesRangeIterator uses SkipBlockRangeIterator as a two-phase approximation. Docs in MAYBE and YES_IF_PRESENT blocks belong to the approximation, but are not necessarily query ... Consumers could then treat unconfirmed docs as matches.
    parkertimmins 3.5 hours ago:  We can safely return runs to the end of MAYBE and YES_IF_PRESENT blocks, since this iterator is a ...
    parkertimmins 3.5 hours ago:  We could alternatively just return blockIterator.docID(). This would be safe, but would mean there is little value in using docIDRunEnd(). Though I'm not sure returning docID+1 is that useful for most callers anyway.

#15979 PR: Add a de-duplicating flat vector format
4.3 hours ago  355 comments  0 votes  0 watches  github-actions[bot]inheritdockaivalnpmikemccandmsokolov
Description Closes 14758 Add a new de-duplicating vector format that only stores unique ... De-duplication is done for vectors across all docs and fields indexed by the format. Disclaimer: This was mostly written by an AI, with me refining the implementation through prompts - ...
    kaivalnp 4.3 hours ago:  > semi-realistic case where say each vector is duplicated 20X ish times? Added now!
    kaivalnp 4.3 hours ago:  > sometimes, it deletes every doc that had a vector (yet some non-vector docs are merged) Added ...

#16431 PR: Enable Block-Max WAND dynamic pruning for FunctionScoreQuery via DocValuesSkipper (+422% QPS)
6.3 hours ago  42 comments  0 votes  0 watches  github-actions[bot]jpountzmikemccandmsokolovrajat315315romseygeekuschindler
Resolves: 16429 # Description Currently, FunctionScoreQuery hardcodes getMaxScore(int upTo) ... Lucene is forced to evaluate DoubleValuesSource and script bytecode on **every single matching ... Additionally, Lucene's default DocValuesSkipper block interval is 4,096 documents (DEFAULT_SKIP_INDE ...
    uschindler 6.3 hours ago:  Can you add a test with a constant lambda function using INCREASING as well as DECREASING as well ... This would also make clear that the above text is correct.
    rajat315315 15.1 hours ago:  I think this can be back-ported if possible as it gives considerable performance improvement in ... Function scripts are used in almost everywhere and this fix should provide an improvement. There's no harm if users are able to take advantage of it without any major upgrade. :+1:

#16443: MultiFieldQueryParser: default operator is not honored between term positions
7.9 hours ago  0 comments  0 votes  0 watches  OlivierJaquemet
Description [Edit corresponding pull request : 16446 ]# Disclaimer Exactly like I already did for ... I then used Claude AI to help identify the root cause and draft this report. Finally, I verified both the reported behavior and the proposed patch against Lucene's main branch ...

#16441: MultiFieldQueryParser + per-field boosts produce wrong Occur under AND default operator
7.9 hours ago  0 comments  0 votes  0 watches  OlivierJaquemet
Description [Edit corresponding pull request : 16442 ]# Disclaimer I found this bug in our ... I then used Claude AI to help identify the root cause and draft this report. Finally, I verified both the reported behavior and the proposed patch against Lucene's main branch ...

#16448: [ENH]: Support Concurrent Segment-Level Aggregation in SortedSetDocValuesFacetCounts via Executor
13.5 hours ago  0 comments  0 votes  0 watches  gsmillermikemccandrajat315315rmuir
Description# 1. Motivation Currently, Lucene's collection phase is easily parallelized using the concurrent search ... Slices of segments are searched in parallel, and their matching doc IDs are collected into ...

#16447: Remove throws IOException from Weight.scorerSupplier()
13.6 hours ago  0 comments  0 votes  0 watches  salvatorecampagna
# Summary Weight.scorerSupplier(LeafReaderContext) currently declares throws IOException. Removing it would make the existing planning-time contract enforceable at compile time. # ... It should be cheap: no reader opens or other I/O.

[15.2 msec search, 16.2 msec total]