[Save this search]

Status
All
   Fixed (7187)
  Closed (5270)
Open (2656)
   Won't Fix (545)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2286)
  PR (370)
Author relation
All
  None (2067)
  Member (668)
  Contributor (518)
  New contributor (69)
Created
All
  Past day (2)
  Past 2 days (6)
  Past 3 days (9)
  Past week (16)
  Past month (54)
  Past 3 months (118)
  Past 6 months (196)
  Past year (294)
Updated
All
  Past day (5)
  Past 2 days (11)
  Past 3 days (19)
  Past week (40)
  Past month (86)
  Past 3 months (193)
  Past 6 months (243)
  Past year (547)
Updated ago
All
  > 1 day ago (2651)
  > 2 days ago (2645)
  > 3 days ago (2637)
  > 1 week ago (2616)
  > 1 month ago (2570)
  > 3 months ago (2463)
  > 1 year ago (2109)
Comment count
All
  0 (589)
  1 (375)
  2 - 5 (829)
  6 - 10 (452)
  10 - 20 (315)
  > 20 (171)
Reaction count
All
  0 (2367)
  1 (173)
  2 - 5 (94)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (14)
  mikemccand (13)
  rmuir (6)
  iverase (5)
  msokolov (4)
  benwtrent (4)
  dweiss (3)

See all 26...
Mentioned
All
  jpountz (100)
  mikemccand (85)
  rmuir (64)
  benwtrent (53)
  uschindler (42)
  msokolov (40)
  romseygeek (19)

See all 216...
Reviewed
All
  mikemccand (25)
  jpountz (23)
  rmuir (14)
  benwtrent (14)
  uschindler (12)
  msokolov (10)
  dweiss (9)

See all 64...
Commented
All
  asfimport (1368)
  github-actions[bot] (283)
  jpountz (137)
  mikemccand (125)
  rmuir (97)
  msokolov (86)
  benwtrent (83)

See all 314...
User
All
  asfimport (1810)
  github-actions[bot] (340)
  mikemccand (217)
  jpountz (208)
  rmuir (141)
  benwtrent (121)
  msokolov (107)

See all 478...
Last comment user
All
  asfimport (1319)
  github-actions[bot] (274)
  mikemccand (34)
  jpountz (31)
  rmuir (22)
  benwtrent (18)
  msokolov (17)

See all 167...
Draft
All
  No (307)
  Yes (63)
Component
All
  core (651)
  analysis (155)
  highlighter (46)
  facet (42)
  spatial (41)
  queryparser (30)
  sandbox (25)

See all 23...
Type
All
  enhancement (1206)
  bug (728)
  task (201)
  test (79)
  documentation (21)
Labels
All
  Stale (273)
  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 (2656)
Reporter
All
  rmuir (269)
  mikemccand (154)
  jpountz (124)
  dsmiley (67)
  uschindler (52)
  iverase (44)
  dweiss (42)

See all 768...
Assignee
All
  Unassigned (2414)
  mikemccand (35)
  uschindler (33)
  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

#16693 PR: Prevent unintended multi-segment flushes in TestLucene104ScalarQuantizedVectorFormat (#16692)
8.3 minutes ago  8 comments  0 votes  0 watches  CH-Abhinavgithub-actions[bot]mccullocht
Resolves 16692 Description Follow-up to 16030: fixes test flakiness in TestLucene104ScalarQuantiz ... Under randomized test runs (e.g., seeds D9588E29B239F98E, ACA59AF04AC0B9BF, 29219F4CDF5F2122), ... IndexWriter randomly flushing multiple segments because of low randomized RAM buffers, breaking ...
    mccullocht 8.3 minutes ago:  I think you can remove all of these. I don't think the buffering options are needed, and setMergePolicy(NoMergePolicy) means that ...
    CH-Abhinav 28.5 minutes ago:  Hey, should I remove this part as well ? I remember I add this lines because basic w.forceMerge(1) sometimes didn't work. see this ` .setMaxBufferedDocs(numVectors + 1) .setRAMBufferSizeMB( ...

#16691 PR: Optimize DocValues bulk decoding using Panama widening casts (#16677)
2.4 hours ago  4 comments  0 votes  0 watches  CH-Abhinavgithub-actions[bot]rmuir
Description This PR introduces SIMD bulk decoding for DocValues (8-bit, 16-bit, and 32-bit ... Currently, default scalar loops handle these widening. This PR tries to use Panama Vector API's shape-widening operations (convertShape with ...
    CH-Abhinav 2.4 hours ago:  this CI has issue in one of the randomized test which I am trying to resolve in 16693 after that ...
    CH-Abhinav 15.3 hours ago:  @rmuir redone SIMD to single VectorAPI

#16696 PR: Stop reading merged float vectors back to build the HNSW merge scorer
9.9 hours ago  10 comments  0 votes  0 watches  github-actions[bot]john-mlikathecoop
An HNSW merge over an asymmetric scalar-quantized field writes the merged float vectors, then reads ... This change produces both quantizations in one writer walk. apache/lucene#15732 stopped the merge ... DirectIODirectory in lucene/misc supports direct I/O during merges, and there the read-back is a ...
    thecoop 9.9 hours ago:  I'm not a _big_ fan of nullable return types, does using Optional here and in the interface method ...
    thecoop 9.9 hours ago:  Should use IOUtils here (also get rid of the success boolean, and use catch blocks, as done ...

#16697 PR: Fix block-max support of DoubleValuesSource
10 hours ago  0 comments  0 votes  0 watches  easyicegithub-actions[bot]
This change fixes two problems: * advanceShallow advanced the skipper on every call, including ... . * getMaxScore,getMinScore only looked at level 0 of the skipper, including when upTo was beyond ...

#16690 PR: Add a hybrid strategy for stored fields merge
19.2 hours ago  2 comments  0 votes  0 watches  github-actions[bot]rmuirwwwa1ter
Closes 16045 # Description The stored fields merge currently falls back to a doc-by-doc copy ... This PR adds a hybrid merge strategy: contiguous ranges of live docs are collected, and - whole ... The hybrid strategy is enabled by default and can be disabled with the org.apache.lucene.codecs.luc ...
    wwwa1ter 19.2 hours ago:  > I don't think this works, we had it this way in lucene before, the problem is as soon as you get ... So it doesn't perform in practice. A deleted doc only affects its own chunk, chunks whose docs are all live can do bulk copy, only the ...
    rmuir 19.8 hours ago:  I don't think this works, we had it this way in lucene before, the problem is as soon as you get a ... So it doesn't perform in practice.

#16692: Flaky test: TestLucene104ScalarQuantizedVectorsFormat.testDataBlindNoRawFloatVectors fails when ...
1.1 days ago  0 comments  0 votes  0 watches  CH-Abhinav
Description TestLucene104ScalarQuantizedVectorsFormat.testDataBlindNoRawFloatVectors occasionally ... ContextIntroduced in 16030 ("Implement data-blind scalar quantization") where testDataBlindNoRawFloa ... `text java.lang.IllegalArgumentException: StandardDirectoryReader(segments_1:6 _0(11.0.0):c22 _1( ...

#16674: Can we speed up centroid calculation in the OSQ vector format?
1.1 days ago  3 comments  0 votes  0 watches  CH-Abhinavkaivalnpmsokolov
Description In the OSQ based vector format, we recalculate centroids on merge when there are ... If there aren't any deletes, the merged centroid is simply a weighted average of segment-level ... I wonder if we can re-use the information of the previous centroid, even when there are deletes?
    CH-Abhinav 1.2 days ago:  @msokolov I think we should go with multiple unbiased samples, calculate their centroids and merge ... IDK if using one large sample is better than using multiple small samples.
    CH-Abhinav 1.2 days ago:  do you think doing unbiased samples will always work ? maybe a 1-5% sample would be good enough to calculate centroid for OSQ but that is completely ... I would say this approach will be more optimal :- 1. if delete's are N<1% for small segments and N ...

[29.9 msec search, 31.7 msec total]