[Save this search]

Status
All
   Fixed (7187)
  Closed (4618)
Open (2551)
   Won't Fix (543)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2246)
  PR (305)
Author relation
All
  None (2034)
  Member (615)
  Contributor (422)
  New contributor (59)
Created
All
  Past day (0)
  Past 2 days (1)
  Past 3 days (1)
  Past week (10)
  Past month (42)
  Past 3 months (98)
  Past 6 months (142)
  Past year (279)
Updated
All
  Past day (9)
  Past 2 days (9)
  Past 3 days (9)
  Past week (22)
  Past month (65)
  Past 3 months (133)
  Past 6 months (360)
  Past year (489)
Updated ago
All
  > 1 day ago (2542)
  > 2 days ago (2542)
  > 3 days ago (2542)
  > 1 week ago (2529)
  > 1 month ago (2486)
  > 3 months ago (2418)
  > 1 year ago (2062)
Comment count
All
  0 (564)
  1 (361)
  2 - 5 (798)
  6 - 10 (431)
  10 - 20 (304)
  > 20 (164)
Reaction count
All
  0 (2268)
  1 (169)
  2 - 5 (92)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (15)
  mikemccand (8)
  benwtrent (5)
  rmuir (4)
  iverase (4)
  dweiss (3)
  msokolov (3)

See all 22...
Mentioned
All
  jpountz (94)
  mikemccand (72)
  rmuir (50)
  benwtrent (49)
  msokolov (41)
  uschindler (39)
  dweiss (18)

See all 199...
Reviewed
All
  jpountz (23)
  mikemccand (22)
  rmuir (14)
  msokolov (14)
  benwtrent (13)
  uschindler (11)
  dweiss (10)

See all 58...
Commented
All
  asfimport (1369)
  github-actions[bot] (238)
  jpountz (140)
  mikemccand (121)
  rmuir (99)
  benwtrent (86)
  msokolov (81)

See all 287...
User
All
  asfimport (1811)
  github-actions[bot] (273)
  mikemccand (205)
  jpountz (202)
  rmuir (131)
  benwtrent (123)
  msokolov (104)

See all 437...
Last comment user
All
  asfimport (1326)
  github-actions[bot] (232)
  jpountz (32)
  mikemccand (31)
  rmuir (25)
  gsmiller (16)
  msokolov (16)

See all 152...
Draft
All
  No (253)
  Yes (52)
Component
All
  core (590)
  analysis (150)
  highlighter (47)
  spatial (41)
  facet (39)
  queryparser (26)
  test-framework (25)

See all 23...
Type
All
  enhancement (1175)
  bug (725)
  task (198)
  test (78)
  documentation (22)
Labels
All
  Stale (229)
  legacy-jira-fix-versio... (214)
  legacy-jira-fix-versio... (169)
  affects-version:4.0-ALPHA (81)
  tool:build (54)
  vector-based-search (47)
  affects-version:6.0 (37)

See all 157...
Commits?
All
  No (2551)
Reporter
All
  rmuir (270)
  mikemccand (155)
  jpountz (126)
  dsmiley (68)
  uschindler (52)
  romseygeek (42)
  iverase (42)

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

#15903 PR: Add TurboQuant rotation-based vector quantization codec to sandbox
1.1 hours ago  19 comments  0 votes  0 watches  benwtrentgithub-actions[bot]mccullochtmikemccandshbhartveaseyxande
# Summary This PR adds a new FlatVectorsFormat implementation based on the TurboQuant algorithm ... This implementation was co-authored with an AI coding agent (Kiro) as an experiment in AI-assisted ... The agent handled the bulk of the code generation, test writing, and iterative debugging while I ...
    shbhar 1.1 hours ago:  Here are the updated results after some fixes - TQ8Bit is also comparable to SQ8bit now, but ... Changes from last run: 1. Merge int overflow fix 2.
    tveasey 1.7 hours ago:  > rotation is the real secret sauce here One thing to note on rotations is that block diagonal ... This might be competitive with Hadamard given we can perform the 64d matmul extremely fast with ... Regarding this comment I'm not sure we should mix up the choice of reranking representation and ...

#15933 PR: Add jmh benchmark for ReaderUtil#partitionByLeaf approaches
3.5 hours ago  0 comments  0 votes  0 watches  github-actions[bot]gsmiller
To support discussion in GH#15905 and an idea captured in GH#15934

#15934: Explore binary search in ReaderUtil#partitionByLeaf
4 hours ago  4 comments  0 votes  0 watches  gsmiller
DescriptionIn our current implementation, we linearly scan an array of sorted docIDs and compare ... I'm curious if a binary search approach might work better. The idea would be to iterate the leaves in order (which we're already doing) and bsearch the sorted ...
    gsmiller 4 hours ago:  I forgot to mention that the above two benchmarks were on a MacBook Pro (M3 chip). For fun, I ran benchmarks on two Linux boxes as well (x86 and ARM). Capturing benchmark results from all three machines here (some of this is duplicate from previous ...
    gsmiller 4 days ago:  I made the binary search approach a bit smarter and reran benchmarks. Providing new results and an AI-generated summary: ` Benchmark ... The difference is only in the partition step: - **Linear**: scan sorted doc IDs, advance leaf ...

#15937 PR: Add LongConsumer progress callback to Operations.determinize for memo…
4.9 hours ago  4 comments  0 votes  0 watches  drempapisgithub-actions[bot]rmuir
Problem Lucene's Operations.determinize uses powerset construction to convert an NFA into a DFA. For patterns with combinatorial structure (e.g. *a*b*c*d*e*f*), this can cause exponential blowup in the number of DFA states, each carrying its ...
    drempapis 4.9 hours ago:  Thank you @rmuir , this makes sense to me. I agree that adding more resource-control knobs around determinization feels like the wrong ... I’ll experiment with the alternative path you suggested, removing upfront determinization from ...
    rmuir 8 hours ago:  > My intent with the callback was to support callers that already control the determinization call ... Well, I think lucene shouldn't have even a single parameter for this resource control, and ... Such parameters don't make sense to me and only come from people who think they can expose ...

#15574 PR: Introduce FirstPassGroupingCollectorManager
6.6 hours ago  1 comments  0 votes  0 watches  gaobinlonggithub-actions[bot]
Description This pr introduces FirstPassGroupingCollectorManager and switches TestGrouping and ... Relates to https://github.com/apache/lucene/issues/12892.
    github-actions[bot] 2.2 months 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!

#15929 PR: Rename CollectionStatistics to FieldStatistics.
15.6 hours ago  0 comments  0 votes  0 watches  github-actions[bot]vsop-479

#15936 PR: Introduce BlockGroupingCollectorManager
15.6 hours ago  1 comments  0 votes  0 watches  dweissgaobinlonggithub-actions[bot]
Description BlockGroupingCollector in grouping package did not have until now a corresponding ... This PR also implements a new TopGroups.mergeBlockGroup() method to merge blocking TopGroups() ... Relates to https://github.com/apache/lucene/issues/12892.
    gaobinlong 15.6 hours ago:  @dweiss , could you help to review this PR? Thank you~

[20.9 msec search, 21.9 msec total]