[Save this search]

Status
All
   Fixed (7187)
  Closed (5243)
Open (2652)
   Won't Fix (545)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2286)
  PR (366)
Author relation
All
  None (2063)
  Member (661)
  Contributor (517)
  New contributor (68)
Created
All
  Past day (0)
  Past 2 days (1)
  Past 3 days (2)
  Past week (14)
  Past month (52)
  Past 3 months (123)
  Past 6 months (196)
  Past year (297)
Updated
All
  Past day (2)
  Past 2 days (11)
  Past 3 days (18)
  Past week (37)
  Past month (93)
  Past 3 months (195)
  Past 6 months (242)
  Past year (547)
Updated ago
All
  > 1 day ago (2650)
  > 2 days ago (2641)
  > 3 days ago (2634)
  > 1 week ago (2615)
  > 1 month ago (2559)
  > 3 months ago (2457)
  > 1 year ago (2105)
Comment count
All
  0 (589)
  1 (378)
  2 - 5 (823)
  6 - 10 (450)
  10 - 20 (313)
  > 20 (172)
Reaction count
All
  0 (2366)
  1 (171)
  2 - 5 (93)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (14)
  mikemccand (13)
  rmuir (6)
  msokolov (4)
  iverase (4)
  romseygeek (4)
  benwtrent (4)

See all 26...
Mentioned
All
  jpountz (99)
  mikemccand (84)
  rmuir (62)
  benwtrent (52)
  uschindler (41)
  msokolov (39)
  romseygeek (21)

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

See all 64...
Commented
All
  asfimport (1368)
  github-actions[bot] (281)
  jpountz (137)
  mikemccand (126)
  rmuir (95)
  msokolov (87)
  benwtrent (82)

See all 310...
User
All
  asfimport (1810)
  github-actions[bot] (335)
  mikemccand (217)
  jpountz (207)
  rmuir (138)
  benwtrent (120)
  msokolov (107)

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

See all 169...
Draft
All
  No (305)
  Yes (61)
Component
All
  core (648)
  analysis (154)
  highlighter (46)
  facet (42)
  spatial (41)
  queryparser (29)
  sandbox (25)

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

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

#16663 PR: Allocate MemoryAccountingBitsetCollector bitset lazily on first match
14.8 hours ago  0 comments  0 votes  0 watches  Sasilekhagithub-actions[bot]
MemoryAccountingBitsetCollector used to reserve a bitset large enough for the entire leaf upfront, ... Under intra segment concurrency (where each partition worker gets its own collector), unmatched ... This PR delays the allocation until the first match, so collectors that see no matches allocate ...

#16640 PR: Draft: Add single-query many-doc bulk scoring API to VectorUtilSupport (#16556)
20.4 hours ago  1 comments  0 votes  0 watches  CH-Abhinavgithub-actions[bot]
## Description This is Draft PR addressing #16556 and subsequently progressing 15155 This PR is ... **Current progress (float32 dot product):** 1. Added zero-allocation void dotProductBulk(float[] query, float[][] docs, float[] results) to ...
    CH-Abhinav 20.4 hours ago:  I went ahead and implemented off-heap path to PanamaVectorUtilSupport for dotProductBulk to make ... while doing so I did following:- 1. Left the base VectorUtilSupport strictly for on-heap arrays 2.

#16666 PR: Iouring rerank reads for larger-than-RAM KNN search
1 day ago  0 comments  0 votes  0 watches  190230250github-actions[bot]goankur
Title: **(Implemented with AI, with Human in the loop)** Sandbox IoUringDirectory: batched ... **Nothing outside lucene/sandbox/ is touched.** Description In 16656 a rerank shortlist is ... That works, but each read costs a syscall, a thread hand-off, and a blocked worker. io_uring ...

#16656 PR: Parallel O_DIRECT rerank reads for larger-than-RAM KNN search
1 day ago  0 comments  0 votes  0 watches  github-actions[bot]goankur
Title: **(Implemented with AI, with Human in the loop)** Parallel O_DIRECT full-precision ... But the rerank reads the fp32 vectors one at a time, and once the index exceeds RAM those reads ... This PR: - **FlatVectorsReader.readRawVectors(field, ords, count, out)** (core, codecs/hnsw): an ...

#16357 PR: Add shared-floor kNN collection to the sandbox module
1.1 days ago  6 comments  0 votes  0 watches  benwtrentgithub-actions[bot]krickertvigyasharma
Sandbox: shared-floor kNN collection for multi-shard search # The problem Distributed HNSW ... The goal of this PR is to open up the ability to test ways to bring this number down which should ... Although initial measurements suggest around a 30% reduction, testing is underway to produce a more ...
    github-actions[bot] 1.1 days ago:  This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the dev@lucene.apache.org list. Thank you for your contribution!
    github-actions[bot] 19.1 days ago:  This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the dev@lucene.apache.org list. Thank you for your contribution!

#16442 PR: Fix addMultiTermClauses: preserve per-field SHOULD when a clause isn't a bare TermQuery (#16441)
1.1 days ago  3 comments  0 votes  0 watches  OlivierJaquemetgithub-actions[bot]
Fixes 16441 **Problem:** QueryParserBaseaddMultiTermClauses decides whether to pass a nested ... This check is too narrow: a BoostQuery-wrapped term (or any other non-TermQuery leaf — PrefixQuery, ... Example: with a per-field boost configured and AND_OPERATOR, MultiFieldQueryParser.parse( ...
    github-actions[bot] 1.1 days ago:  This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the dev@lucene.apache.org list. Thank you for your contribution!
    OlivierJaquemet 18.5 days ago:  Still waiting for review by maintainers.

#16534 PR: Correct termBytePool reference in FreqProxTermsEnum and clarify pool sharing
1.1 days ago  4 comments  0 votes  0 watches  github-actions[bot]msokolovneoremind
FreqProxTermsEnum is the bridge between the in-memory hash+pool and the codec writer, it uses ... There is no problem now because we do pool sharing today, we use the same ByteBlockPool to store ... Semantically speaking, FreqProxTermsEnum's constructor should use the right reference even though ...
    github-actions[bot] 1.1 days ago:  This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the dev@lucene.apache.org list. Thank you for your contribution!
    neoremind 16.9 days ago:  @msokolov I've investigated what if we make the two pools separate and shared the full findings ... As for this PR, the semantic correction is still a valid one and would be a premise if we go with ...

[16.1 msec search, 17.0 msec total]