[Save this search]

Status
All
   Fixed (7187)
  Closed (4777)
Open (2562)
   Won't Fix (545)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2252)
  PR (310)
Author relation
All
  None (2039)
  Member (627)
  Contributor (428)
  New contributor (60)
Created
All
  Past day (9)
  Past 2 days (11)
  Past 3 days (13)
  Past week (15)
  Past month (44)
  Past 3 months (89)
  Past 6 months (135)
  Past year (252)
Updated
All
  Past day (13)
  Past 2 days (23)
  Past 3 days (30)
  Past week (41)
  Past month (71)
  Past 3 months (130)
  Past 6 months (181)
  Past year (480)
Updated ago
All
  > 1 day ago (2549)
  > 2 days ago (2539)
  > 3 days ago (2532)
  > 1 week ago (2521)
  > 1 month ago (2491)
  > 3 months ago (2432)
  > 1 year ago (2082)
Comment count
All
  0 (574)
  1 (358)
  2 - 5 (792)
  6 - 10 (432)
  10 - 20 (303)
  > 20 (172)
Reaction count
All
  0 (2282)
  1 (167)
  2 - 5 (91)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (14)
  mikemccand (9)
  iverase (5)
  rmuir (4)
  romseygeek (4)
  benwtrent (4)
  dweiss (3)

See all 23...
Mentioned
All
  jpountz (93)
  mikemccand (75)
  benwtrent (53)
  rmuir (50)
  msokolov (39)
  uschindler (38)
  romseygeek (20)

See all 203...
Reviewed
All
  mikemccand (24)
  jpountz (23)
  benwtrent (17)
  rmuir (14)
  msokolov (11)
  uschindler (11)
  dweiss (10)

See all 61...
Commented
All
  asfimport (1369)
  github-actions[bot] (233)
  jpountz (140)
  mikemccand (122)
  rmuir (95)
  benwtrent (83)
  msokolov (81)

See all 291...
User
All
  asfimport (1811)
  github-actions[bot] (277)
  mikemccand (209)
  jpountz (201)
  rmuir (128)
  benwtrent (122)
  msokolov (102)

See all 443...
Last comment user
All
  asfimport (1326)
  github-actions[bot] (228)
  jpountz (32)
  mikemccand (31)
  rmuir (24)
  msokolov (17)
  benwtrent (16)

See all 158...
Draft
All
  No (258)
  Yes (52)
Component
All
  core (599)
  analysis (150)
  highlighter (46)
  spatial (41)
  facet (40)
  queryparser (26)
  test-framework (23)

See all 23...
Type
All
  enhancement (1179)
  bug (724)
  task (200)
  test (78)
  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 (48)
  affects-version:6.0 (37)

See all 157...
Commits?
All
  No (2562)
Reporter
All
  rmuir (270)
  mikemccand (155)
  jpountz (126)
  dsmiley (68)
  uschindler (52)
  iverase (45)
  dweiss (41)

See all 746...
Assignee
All
  Unassigned (2318)
  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

#16109 PR: Add count() to SortedSetDocValuesRangeQuery
27.9 minutes ago  0 comments  0 votes  0 watches  github-actions[bot]iprithv
SortedNumericDocValuesRangeQuery has an efficient count() override (added in #15080) that uses ... Its sibling SortedSetDocValuesRangeQuery has no count() override at all, despite having the same ...

#16104 PR: Allow supplying KnnSearchStrategy to vector similarity queries
3.7 hours ago  0 comments  0 votes  0 watches  Sasilekhagithub-actions[bot]
Callers cannot use KnnSearchStrategy.Seeded or KnnSearchStrategy.Patience with similarity-threshold ... With this pr, we close that gap so the two query families have parity for strategy configuration.

#15574 PR: Introduce FirstPassGroupingCollectorManager
6.8 hours ago  43 comments  0 votes  0 watches  dweissgaobinlonggithub-actions[bot]javanna
Description This pr introduces FirstPassGroupingCollectorManager and switches TestGrouping and ... Relates to https://github.com/apache/lucene/issues/12892.
    javanna 6.9 hours ago:  I would suggest making the shard searcher more robust. Override all the public methods, by either filtering them to access only the meant leave, or throw ...
    javanna 6.9 hours ago:  This will call the general search(Query, Collector) against the shard searcher. That though is not overridden and will search the entire index and not only the leaf associated ... I believe that's an issue.

#16107 PR: Add method SparseFixedBitSet#set(int startIndex, int endIndex)
7.7 hours ago  0 comments  0 votes  0 watches  github-actions[bot]iverase
Similar to FixedBitSetset(int startIndex, int endIndex), this PR proposes to add the equivalent ...

#16106 PR: Fix LogOddsFusionQuery.rewrite() to filter out MatchNoDocsQuery clauses
7.9 hours ago  0 comments  0 votes  0 watches  github-actions[bot]iprithv
This applies the same https://github.com/apache/lucene/pull/16103 MatchNoDocsQuery filtering ... Dead clauses were incorrectly inflating the totalClauses denominator in meanLogit = logitSum / ...

#16103 PR: Filter out MatchNoDocsQuery disjuncts in DisjunctionMaxQuery.rewrite()
8.1 hours ago  0 comments  0 votes  0 watches  github-actions[bot]iprithv
DisjunctionMaxQuery.rewrite() now filters out MatchNoDocsQuery instances from its disjuncts after ...

#16069 PR: Load dense filters into bitset in MaxScoreBulkScorer
10.7 hours ago  35 comments  0 votes  0 watches  github-actions[bot]iprithviveraseromseygeek
when the filter is dense enough (cost >= maxDoc / 32) and has a fast intoBitSet, we just load it ... one important thing I noticed is not all iterators are fast here. the default intoBitSet just loops ... also made sure wrappers don’t hide this. added delegation so we can still detect fast intoBitSet ...
    iprithv 10.7 hours ago:  yeah right, the existing filter tests use a sparse filter (cost=4 vs threshold=768) so the bitset ... Added two tests, both assert that the filter density exceeds the threshold so we know the bitset ... Thanks!
    iverase 12.4 hours ago:  Can we make sure this code path is tested, I run the test a few times and I never saw it executed.

[21.0 msec search, 21.9 msec total]