[Save this search]

Status
All
   Fixed (7187)
  Closed (3308)
Open (2369)
   Won't Fix (543)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2142)
  PR (227)
Author relation
All
  None (2123)
  Member (455)
  Contributor (221)
  New contributor (37)
Created
All
  Past day (4)
  Past 2 days (5)
  Past 3 days (5)
  Past week (14)
  Past month (40)
  Past 3 months (82)
  Past 6 months (137)
  Past year (257)
Updated
All
  Past day (13)
  Past 2 days (18)
  Past 3 days (18)
  Past week (35)
  Past month (101)
  Past 3 months (137)
  Past 6 months (206)
  Past year (330)
Updated ago
All
  > 1 day ago (2356)
  > 2 days ago (2351)
  > 3 days ago (2351)
  > 1 week ago (2334)
  > 1 month ago (2268)
  > 3 months ago (2232)
  > 1 year ago (2039)
Comment count
All
  0 (540)
  1 (350)
  2 - 5 (726)
  6 - 10 (386)
  10 - 20 (281)
  > 20 (154)
Reaction count
All
  0 (2093)
  1 (162)
  2 - 5 (92)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (10)
  mikemccand (5)
  rmuir (3)
  dweiss (3)
  romseygeek (3)
  benwtrent (3)
  uschindler (2)

See all 20...
Mentioned
All
  jpountz (74)
  mikemccand (60)
  rmuir (37)
  uschindler (32)
  benwtrent (32)
  msokolov (24)
  dweiss (17)

See all 154...
Reviewed
All
  mikemccand (23)
  jpountz (22)
  dweiss (11)
  uschindler (10)
  benwtrent (10)
  rmuir (8)
  msokolov (7)

See all 55...
Commented
All
  asfimport (1381)
  github-actions[bot] (173)
  jpountz (117)
  mikemccand (100)
  rmuir (76)
  benwtrent (54)
  msokolov (53)

See all 213...
User
All
  asfimport (1829)
  github-actions[bot] (194)
  mikemccand (172)
  jpountz (168)
  rmuir (101)
  benwtrent (80)
  msokolov (68)

See all 329...
Last comment user
All
  asfimport (1338)
  github-actions[bot] (172)
  jpountz (34)
  mikemccand (25)
  rmuir (18)
  dweiss (17)
  benwtrent (17)

See all 113...
Draft
All
  No (189)
  Yes (38)
Component
All
  core (523)
  analysis (146)
  highlighter (44)
  spatial (39)
  facet (38)
  queryparser (25)
  suggest (15)

See all 22...
Type
All
  enhancement (1114)
  bug (709)
  task (195)
  test (73)
  documentation (20)
Labels
All
  legacy-jira-fix-versio... (214)
  legacy-jira-fix-versio... (169)
  Stale (169)
  affects-version:4.0-ALPHA (81)
  tool:build (54)
  vector-based-search (52)
  affects-version:6.0 (37)

See all 153...
Commits?
All
  No (2369)
Reporter
All
  rmuir (266)
  mikemccand (144)
  jpountz (117)
  dsmiley (67)
  dweiss (50)
  uschindler (49)
  iverase (39)

See all 684...
Assignee
All
  Unassigned (2135)
  mikemccand (35)
  uschindler (26)
  romseygeek (26)
  dsmiley (22)
  rmuir (14)
  dweiss (13)

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

#14334: Incorrect use of fsync
7.8 hours ago  9 comments  0 votes  0 watches  msokolovrmuirviliam-durina
Description According to this answer, calling fsync after the file descriptor is closed gives no ... This is exactly what Lucene does: the sync method is on Directory, the implementation opens the ... The sync method, according to this, should have been on IndexOutput, and it should be called before ...
    viliam-durina 7.8 hours ago:  Without fsync, there's no guarantee that anything you wrote was written. The OS delays the writes. If you close, the data is still in memory, the OS later tries to write and fails with an IO error, ...
    rmuir 17.8 hours ago:  absolutely not: this issue has now moved into crazy territory. if you crash, you won't be reading temporary files from before the crash.

#14333 PR: A specialized Trie for Block Tree Index
11.8 hours ago  153 comments  0 votes  0 watches  gf2121github-actions[bot]jpountzmikemccand
**Context** * #12631 introduced a MSBVLong format to encode the first fp of FST output. It is the first time we benefit from the output sharing in blocktree. The change reduces ~13% tip size, in turn caused a performance regression when accumulating output ...
    gf2121 11.8 hours ago:  > We should add this format to RandomCodec then, so that it gets included as part of codec ... OK, did not see this. I know how to do it then.
    gf2121 11.8 hours ago:  Thank you very much for all these careful, warm and helpful comments! > Are there any major items / blockers? I think I've addressed all of them (hopefully didn't miss any)

#14094 PR: Add a HNSW collector that exits early when nearest neighbor queue saturates
11.9 hours ago  48 comments  0 votes  0 watches  benwtrentgithub-actions[bot]mayya-sharipovasvilen-mihaylov-elastictteofili
This introduces a HnswKnnCollector interface, extending KnnCollector for HNSW, to make it possible ... It then adds a new collector which uses a saturation-based threshold to dynamically halt HNSW graph ... The new collector records the number of added neighbors upon exploration of a new candidate (a HNSW ...
    tteofili 13.4 hours ago:  @benwtrent I've reworked the design exposing KnnSearchStrategy#nextVectorsBlock and PatienceKnnVecto ...
    tteofili 18.2 hours ago:  as a first step I've dropped HnswKnnCollector in favor of adding the nextVectorsBlock API to ...

#14267 PR: Reduce the number of comparisons when lowerPoint is equal to upperPoint
12.9 hours ago  9 comments  0 votes  0 watches  github-actions[bot]hanbjjainankitkstefanvodita
Description When lowerPoint is equal to upperPoint. In fact, there is no need to compare lowerPoint and upperPoint at the same time. The number of comparisons can be reduced by half when collecting document ids to construct bitsets ...
    jainankitk 12.9 hours ago:  Thanks @hanbj for refactoring the code and adding the unit test. Looks much better now. Just a minor suggestion to improve the readability further.
    jainankitk 12.9 hours ago:  I am assuming we are reusing some of the methods from MultiPointsConstantScoreWeight. That's why we are extending from that class. May, I suggest creating class say PointRangeQueryWeight that extends from ConstantScoreWeight?

#14404 PR: MultiRange query for SortedNumericc DocValues
13 hours ago  2 comments  0 votes  0 watches  github-actions[bot]mkhludnev
Description Extending #13974 idea to SortedNumerics DVs.
    mkhludnev 6.7 days ago:  TODO approach subSet()

#14426 PR: Add support for determining off-heap memory requirements for KnnVectorsReader
13.9 hours ago  20 comments  0 votes  0 watches  ChrisHegartybenwtrentgithub-actions[bot]tteofili
This PR adds support to KnnVectorsReader in order to determine the off-heap memory requirements. The motivation here is to give better insight into the size of off-heap memory that will be needed, ... Somewhat analogous to the existing Accountable interface - which computes the actual in-heap memory ...
    benwtrent 13.9 hours ago:  @ChrisHegarty yeah, I am not sure :(. I think this is a nice first step, but the goal here is to signal the off-heap size so that the ... But, then they need to know how to actually calculate what "enough" is for their typical search ...
    ChrisHegarty 14 hours ago:  I reworded things a bit and added a bit of javadoc to make things clearer.

#14413 PR: Adding profiling support for concurrent segment search
15.3 hours ago  11 comments  0 votes  0 watches  github-actions[bot]jainankitkjpountzmsfroh
Description This code change introduces AbstractQueryProfilerBreakdown that can be extended by ... -- If this is your first contribution to Lucene, please make sure you have reviewed the ... https://github.com/apache/lucene/blob/main/CONTRIBUTING.md -->
    jpountz 15.3 hours ago:  I'd have a top-level tree for everything related to initializing the search and combining results ( ... Related, it'd be nice if each per-slice object could also tell us about the thread that it ran in ...
    jainankitk 1.3 days ago:  @jpountz - Can you provide your thoughts on above?

[28.4 msec search, 29.3 msec total]