[Save this search]

Status
All
   Fixed (7187)
  Closed (4898)
Open (2584)
   Won't Fix (545)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2260)
  PR (324)
Author relation
All
  None (2047)
  Member (641)
  Contributor (444)
  New contributor (60)
Created
All
  Past day (5)
  Past 2 days (8)
  Past 3 days (15)
  Past week (29)
  Past month (68)
  Past 3 months (108)
  Past 6 months (155)
  Past year (266)
Updated
All
  Past day (12)
  Past 2 days (23)
  Past 3 days (33)
  Past week (53)
  Past month (96)
  Past 3 months (133)
  Past 6 months (202)
  Past year (493)
Updated ago
All
  > 1 day ago (2572)
  > 2 days ago (2561)
  > 3 days ago (2551)
  > 1 week ago (2531)
  > 1 month ago (2488)
  > 3 months ago (2451)
  > 1 year ago (2091)
Comment count
All
  0 (581)
  1 (359)
  2 - 5 (801)
  6 - 10 (435)
  10 - 20 (311)
  > 20 (168)
Reaction count
All
  0 (2301)
  1 (170)
  2 - 5 (91)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (13)
  mikemccand (9)
  rmuir (5)
  benwtrent (5)
  iverase (4)
  romseygeek (4)
  dweiss (3)

See all 25...
Mentioned
All
  jpountz (94)
  mikemccand (76)
  benwtrent (53)
  rmuir (52)
  uschindler (38)
  msokolov (38)
  romseygeek (20)

See all 203...
Reviewed
All
  mikemccand (25)
  jpountz (23)
  benwtrent (15)
  rmuir (13)
  msokolov (12)
  uschindler (11)
  dweiss (10)

See all 64...
Commented
All
  asfimport (1368)
  github-actions[bot] (229)
  jpountz (140)
  mikemccand (125)
  rmuir (96)
  benwtrent (86)
  msokolov (80)

See all 300...
User
All
  asfimport (1810)
  github-actions[bot] (290)
  mikemccand (211)
  jpountz (202)
  rmuir (129)
  benwtrent (121)
  msokolov (100)

See all 450...
Last comment user
All
  asfimport (1325)
  github-actions[bot] (222)
  mikemccand (33)
  jpountz (32)
  rmuir (22)
  msokolov (17)
  benwtrent (16)

See all 167...
Draft
All
  No (268)
  Yes (56)
Component
All
  core (618)
  analysis (149)
  highlighter (47)
  spatial (41)
  facet (41)
  queryparser (26)
  test-framework (25)

See all 23...
Type
All
  enhancement (1182)
  bug (726)
  task (202)
  test (78)
  documentation (22)
Labels
All
  Stale (216)
  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 (2584)
Reporter
All
  rmuir (270)
  mikemccand (154)
  jpountz (126)
  dsmiley (67)
  uschindler (52)
  iverase (44)
  romseygeek (42)

See all 750...
Assignee
All
  Unassigned (2341)
  mikemccand (35)
  uschindler (31)
  romseygeek (27)
  dsmiley (22)
  rmuir (15)
  jpountz (11)

See all 45...
  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

#16253 PR: Fix backward advanceExact in DocValuesRangeIterator#intoBitSet MAYBE …
2.2 hours ago  0 comments  0 votes  0 watches  easyicegithub-actions[bot]
1. **The fix**. numericValues / sortedNumericValues is the same instance as disi, so a preceding ... Adjust the starting point to keep rangeIntoBitSet's advanceExact calls forward-only. 2.

#16071: Can we improve caching of dense results?
2.5 hours ago  3 comments  0 votes  0 watches  iveraseromseygeeksgup432venkateshwaracholan
I am working into improving the behaviour of DocValues skippers when they are applied to a single ... In this case, for some queries we know the result is dense so we can just find the minimum and ... This is the denser representation you can have for this type of iterator.
    venkateshwaracholan 2.5 hours ago:  @iverase I took a closer look at the current implementation and ran a couple of local experiments ... A few observations that might be relevant: I traced the dense primary-sort path from ... On a 1M-doc segment, a filter matching ~10% of documents and one matching ~100% of documents both ...
    iverase 22.9 days ago:  @sgup432 Yes, that's an option. The query might need to scan a couple of skipper blocks which make it a bit more costly but indeed ... I have been trying to teach lucene bench to run using the cache (as it is something that we are not ...

#16251: TestHnswFloatVectorGraph.testBuildingJoinSet failure
4.1 hours ago  1 comments  0 votes  0 watches  venkateshwaracholanvsop-479
Description TestHnswFloatVectorGraph > testBuildingJoinSet FAILED java.lang.AssertionError: ...
    venkateshwaracholan 4.1 hours ago:  @vsop-479 dug into this a bit further and was able to reproduce the behavior outside of the ... Using the reported seed (8B08865AA8BAB759:E27CE1241E7C9A82), the generated graph has 111 nodes, ... To understand whether this was specific to the seed or HNSW construction, I built a few graphs ...

#16252 PR: Fix NPE in RoaringDocIdSet.Iterator#intoBitSet
5.6 hours ago  0 comments  0 votes  0 watches  github-actions[bot]venkateshwaracholan
Description RoaringDocIdSet.IteratorintoBitSet can throw a NullPointerException when called ... Once iteration reaches NO_MORE_DOCS, the underlying sub iterator is cleared. intoBitSet() does not ... Add a null check before accessing the sub iterator and treat exhausted iterators as a no-op.

#16250: NullPointerException in RoaringDocIdSet.Iterator.intoBitSet when the iterator is exhausted ( ...
6.4 hours ago  1 comments  0 votes  0 watches  julespivenkateshwaracholan
Description Summary RoaringDocIdSet.IteratorintoBitSet throws a NullPointerException when it is ... When the iterator is exhausted, advance(...) and firstDocFromNextBlock() set sub = null together ... This is reached in production through LRUQueryCache while materializing a filter into a ...
    venkateshwaracholan 6.4 hours ago:  I'd like to work on this issue. I'll investigate the reproduction and submit a fix with a regression test if I can reproduce it ...

#16245 PR: Simple64
7.1 hours ago  0 comments  0 votes  0 watches  github-actions[bot]vsop-479
Description Simple64: pack multiple small non-negative integers into a single long. This change try to implement Simple64 to bulk encode/decode small ints, and use it to write terms' ...

#16219 PR: Allow multiple addBatch columns per field name
7.4 hours ago  11 comments  0 votes  0 watches  Tim-Brooksgithub-actions[bot]mayya-sharipova
Relaxes the one-column-per-field-name rule in addBatch so a field can be built from several ... processBatch now mirrors processDocument: schemas accumulate across same-named columns and ... Each feature (inversion, stored, doc values, points, vectors) must still come from a single ...
    mayya-sharipova 13.9 hours ago:  Should we only calculate overlap if pf.fieldGen == batchGen? ` if (pf.fieldGen != batchGen) { pf.fieldGen = batchGen; pf.columnAspects = 0; pf.schema.reset( ...
    mayya-sharipova 14 hours ago:  Thanks Tim, overall LGTM! I've left minor comments

[20.7 msec search, 21.7 msec total]