[Save this search]

Status
All
   Fixed (7187)
  Closed (5193)
Open (2665)
   Won't Fix (545)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2283)
  PR (382)
Author relation
All
  None (2064)
  Member (665)
  Contributor (522)
  New contributor (69)
Created
All
  Past day (5)
  Past 2 days (9)
  Past 3 days (28)
  Past week (37)
  Past month (67)
  Past 3 months (150)
  Past 6 months (215)
  Past year (317)
Updated
All
  Past day (18)
  Past 2 days (34)
  Past 3 days (52)
  Past week (65)
  Past month (114)
  Past 3 months (215)
  Past 6 months (262)
  Past year (566)
Updated ago
All
  > 1 day ago (2647)
  > 2 days ago (2631)
  > 3 days ago (2613)
  > 1 week ago (2600)
  > 1 month ago (2551)
  > 3 months ago (2450)
  > 1 year ago (2099)
Comment count
All
  0 (600)
  1 (381)
  2 - 5 (820)
  6 - 10 (447)
  10 - 20 (317)
  > 20 (173)
Reaction count
All
  0 (2379)
  1 (172)
  2 - 5 (92)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (13)
  mikemccand (12)
  rmuir (6)
  iverase (4)
  romseygeek (4)
  benwtrent (4)
  dweiss (3)

See all 26...
Mentioned
All
  jpountz (99)
  mikemccand (86)
  rmuir (63)
  benwtrent (53)
  uschindler (43)
  msokolov (40)
  romseygeek (22)

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

See all 66...
Commented
All
  asfimport (1368)
  github-actions[bot] (278)
  jpountz (137)
  mikemccand (127)
  rmuir (97)
  msokolov (85)
  benwtrent (82)

See all 311...
User
All
  asfimport (1810)
  github-actions[bot] (337)
  mikemccand (219)
  jpountz (207)
  rmuir (140)
  benwtrent (121)
  msokolov (107)

See all 470...
Last comment user
All
  asfimport (1319)
  github-actions[bot] (271)
  mikemccand (34)
  jpountz (31)
  rmuir (23)
  msokolov (18)
  dweiss (17)

See all 168...
Draft
All
  No (320)
  Yes (62)
Component
All
  core (647)
  analysis (155)
  highlighter (47)
  facet (43)
  spatial (42)
  queryparser (30)
  sandbox (24)

See all 23...
Type
All
  enhancement (1205)
  bug (728)
  task (200)
  test (78)
  documentation (22)
Labels
All
  Stale (268)
  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 (2665)
Reporter
All
  rmuir (270)
  mikemccand (154)
  jpountz (124)
  dsmiley (69)
  uschindler (52)
  iverase (44)
  dweiss (43)

See all 763...
Assignee
All
  Unassigned (2425)
  mikemccand (35)
  uschindler (31)
  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

#16626: Optimize non-scoring minimum-should-match queries that fall back to WANDScorer
17.2 minutes ago  1 comments  0 votes  0 watches  kkewwei
Description BooleanScorerSupplieropt currently selects WANDScorer whenever minShouldMatch > 1`, ... It returns candidate documents through its approximation and performs the actual minimum-should-matc ... Before https://github.com/apache/lucene-solr/pull/2205, query used MinShouldMatchSumScorer, whose ...
    kkewwei 18.1 minutes ago:  I add msm with sort tasks to test MinShouldMatchSumScorer and WANDScorer https://github.com/ ... The only exception is MSM16M15HighLowDaySort. Next, I plan to: 1.

#16628 PR: Fp16 re ranking and prefetch support
4.4 hours ago  0 comments  0 votes  0 watches  Pulkitg64github-actions[bot]
Description We are adding FP16 support in Lucene. In #16383 we added the initial fp16 encoding and in #16473 we added scalar quantization support. This PR adds the re-ranking, approximate similarity, and prefetch support that already exist for ...

#16629 PR: Fix range query for NumericDocValues for float and double values
6.6 hours ago  0 comments  0 votes  0 watches  HoustonPutmangithub-actions[bot]hossman
Description Fixes https://github.com/apache/lucene/issues/16573 by reverting https://github.com ... I've also incorporated @hossman 's test, so thank you for that Hoss. This is a back-incompat change from 10.5, because it is removing the public NumericFieldStats class ...

#16533: Implement quantization on fp16 directly without inflating to fp32
7.9 hours ago  1 comments  0 votes  0 watches  CH-AbhinavPulkitg64slow-J
Description Follow-up to 16473, which added scalar quantization support for the float16 vector ... Since Java has no fp16 arithmetic type, so there is no way to compute in fp16 at the moment. Once Java have support for doing arithmetic operations on fp16 directly, we should switch our ...
    CH-Abhinav 7.9 hours ago:  May be I am not correct but I guess we have jdk.incubator.vector.Float16 though not flat and ... Also Java as Float.floatToFloat16() which we can try using instead (idk if we are using this need ...

#16573: incorrect results from SortedNumericDocValuesRangeQuery when using double/float based points+ ...
8.1 hours ago  4 comments  0 votes  0 watches  HoustonPutmanhossmanrisdenk
Description When attempting to upgrade Solr from Lucene 10.4.0 -> 10.5.1 the Solr tests ... . * Identical Solr tests using multivalued fields still pass
    HoustonPutman 8.1 hours ago:  > The one change i would suggest over a simple "revert the original PR" is the _addition_ of robust ...
    hossman 11 hours ago:  > Also I'm not sure that https://github.com/apache/lucene/pull/15760 is buying anything at all when ... .

#16581 PR: Allow single-valued updates for SortedNumericDocValues
8.3 hours ago  7 comments  0 votes  0 watches  AdityaTeltiaHoustonPutmangithub-actions[bot]jimczi
Description As mentioned in #16580, there are good reasons to want to use SortedNumericDocValues ... This PR adds support for issuing single-value updates for SortedNumericDocValues. Originally this was only to support single-valued SortedNumericDocValues, but really it's not hard ...
    jimczi 9 hours ago:  LGTM, thanks for the thorough follow-ups. The extended TestMergeCarryOverFromDisk covers the sorted-numeric merge carry-over well now, single ... One note for @AdityaTeltia: the multi-valued rejection your comment pointed at is gone, the PR now ...
    HoustonPutman 9.4 hours ago:  Fair enough @jimczi . Instead, I just added SortedNumericDocValues (both singleton and multi-valued) to the existing 3 ... I also added some tests around singletons in TestSortedNumericDocValuesUpdates.

#16627 PR: Parallelize the repair process for disconnected nodes during HNSW merge-re-use
8.4 hours ago  0 comments  0 votes  0 watches  ethbakgithub-actions[bot]
Overview Currently, when IncrementalHnswGraphMerger reuses an existing graph, InitializedHnswGra ... This logic runs inside ConcurrentHnswMerger.createBuilder. Which is called before HnswConcurrentMergeBuilder even exists, so the copy/repair/rebalance process ...

[15.2 msec search, 16.2 msec total]