[Save this search]

Status
All
   Fixed (7187)
  Closed (4613)
Open (2554)
   Won't Fix (543)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2247)
  PR (307)
Author relation
All
  None (2033)
  Member (619)
  Contributor (422)
  New contributor (58)
Created
All
  Past day (5)
  Past 2 days (6)
  Past 3 days (9)
  Past week (21)
  Past month (47)
  Past 3 months (102)
  Past 6 months (151)
  Past year (284)
Updated
All
  Past day (12)
  Past 2 days (15)
  Past 3 days (19)
  Past week (33)
  Past month (72)
  Past 3 months (136)
  Past 6 months (368)
  Past year (494)
Updated ago
All
  > 1 day ago (2542)
  > 2 days ago (2539)
  > 3 days ago (2535)
  > 1 week ago (2521)
  > 1 month ago (2482)
  > 3 months ago (2418)
  > 1 year ago (2060)
Comment count
All
  0 (565)
  1 (360)
  2 - 5 (798)
  6 - 10 (433)
  10 - 20 (304)
  > 20 (165)
Reaction count
All
  0 (2271)
  1 (169)
  2 - 5 (92)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (15)
  mikemccand (8)
  benwtrent (5)
  rmuir (4)
  dweiss (4)
  iverase (4)
  msokolov (3)

See all 22...
Mentioned
All
  jpountz (94)
  mikemccand (70)
  rmuir (50)
  benwtrent (49)
  msokolov (41)
  uschindler (40)
  dweiss (17)

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

See all 58...
Commented
All
  asfimport (1369)
  github-actions[bot] (236)
  jpountz (140)
  mikemccand (123)
  rmuir (100)
  benwtrent (86)
  msokolov (83)

See all 285...
User
All
  asfimport (1811)
  github-actions[bot] (274)
  mikemccand (206)
  jpountz (202)
  rmuir (132)
  benwtrent (124)
  msokolov (106)

See all 436...
Last comment user
All
  asfimport (1326)
  github-actions[bot] (229)
  jpountz (32)
  mikemccand (31)
  rmuir (26)
  uschindler (17)
  gsmiller (16)

See all 152...
Draft
All
  No (254)
  Yes (53)
Component
All
  core (591)
  analysis (151)
  highlighter (47)
  spatial (41)
  facet (39)
  queryparser (26)
  test-framework (25)

See all 23...
Type
All
  enhancement (1175)
  bug (726)
  task (198)
  test (78)
  documentation (22)
Labels
All
  Stale (226)
  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 (2554)
Reporter
All
  rmuir (271)
  mikemccand (155)
  jpountz (126)
  dsmiley (68)
  uschindler (52)
  romseygeek (42)
  iverase (42)

See all 741...
Assignee
All
  Unassigned (2311)
  mikemccand (35)
  uschindler (32)
  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

#15934: Explore binary search in ReaderUtil#partitionByLeaf
35.2 minutes ago  2 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 35.2 minutes ago:  Modified my benchmark and got some results: ` Benchmark ... When leaves greatly outnumber docs (e.g., 200 leaves for 100 docs), the binary search approach ... The linear scan only touches the 100 doc IDs. - In absolute terms, even the largest differences are ...
    gsmiller 2.1 hours ago:  I'm working on a jmh benchmark (#15933) for related reasons. I'll extend it to try this out.

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

#15935: Hook for merge thread pool
46.2 minutes ago  0 comments  0 votes  0 watches  MrFlapnavneet1vshatejas
Description In opensearch k-NN, we want merge operations to be executed with a dynamic number of ... To do this, we are giving a TaskExecutor a dynamic number of threads here: https://github.com/ ... We would like a close function to be added as an interface with default noop behavior.

#15900 PR: Improve TruncateTokenFilter to truncate on codepoints (and no longer produce half surrogates) or ...
52.2 minutes ago  49 comments  0 votes  0 watches  dweissgithub-actions[bot]mikemccandmsokolovrmuiruschindler
fixes #gh-15899
    uschindler 3.1 hours ago:  I rewrote the code according to ICU4J and now looks like this: `java final char[] a = ... It is also easier to understand because it counts down to 0 and only sets the new length is we were ...
    uschindler 3.3 hours ago:  Code is also in icu4j: https://github.com/unicode-org/icu/blob/5edcbb637734e0ef3461262daaca42231dfbf ...

#15905: ReaderUtil.partitionByLeaf API design: ordinal tracking for scatter/gather pattern
3.5 hours ago  1 comments  0 votes  0 watches  gsmillerzihanx
# Description: Following up on the recently merged ReaderUtil.partitionByLeaf API (https:// ... The doc-values retriever would: - Take an IndexReader, int[] globalDocIds, and DoubleValuesSource[ ... We need ordinal tracking. # Design options: 1.
    gsmiller 3.6 hours ago:  I have a few thoughts but I'm more curious what others think. As a disclaimer I work with Zihan on Amazon's product search, but I'm not particularly close to ... Between the first two options, I think two separate methods is the way to go (option 1).

#15932 PR: build: allow java 26
5.7 hours ago  2 comments  0 votes  0 watches  github-actions[bot]rmuiruschindler
java 26 has been released, and the gradle version supports it. don't explicitly require java 25 in ...
    rmuir 6.3 hours ago:  Since we aren't using any java 26 features, as far as I can see, everything works as expected ( ... This just allows me to stop deferring that system package upgrade from 25->26 :)

#15926: The build/test tool ProfileResults that aggregates JFRs and prints the hot stacks doesn't work with ...
6.2 hours ago  3 comments  0 votes  0 watches  mikemccandrmuir
Java 25 added a new CPUTime profiler which uses Linux kernel APIs to sample threads every N CPU ... This eliminates silly ghosts like threads listening forever on a socket. It sounds really cool.
    rmuir 6.2 hours ago:  good find, I think you are correct: we should be able to switch to this new event, and remove the ... I think isInteresting() was born to try to workaround the problem solved here, otherwise the gradle ...
    mikemccand 1.2 days ago:  Also, if CPUTime profiler works well for nightly benchy, we could also switch Lucene's tests ... Is there a tests profiler....? I just assume there is, since we have ProfileResults!

[20.8 msec search, 21.7 msec total]