[Save this search]

Status
All
   Fixed (7187)
  Closed (4520)
Open (2539)
   Won't Fix (543)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2234)
  PR (305)
Author relation
All
  None (2033)
  Member (608)
  Contributor (421)
  New contributor (57)
Created
All
  Past day (3)
  Past 2 days (7)
  Past 3 days (9)
  Past week (15)
  Past month (41)
  Past 3 months (87)
  Past 6 months (154)
  Past year (281)
Updated
All
  Past day (3)
  Past 2 days (13)
  Past 3 days (20)
  Past week (32)
  Past month (81)
  Past 3 months (129)
  Past 6 months (402)
  Past year (508)
Updated ago
All
  > 1 day ago (2536)
  > 2 days ago (2526)
  > 3 days ago (2519)
  > 1 week ago (2507)
  > 1 month ago (2458)
  > 3 months ago (2410)
  > 1 year ago (2031)
Comment count
All
  0 (553)
  1 (356)
  2 - 5 (797)
  6 - 10 (432)
  10 - 20 (302)
  > 20 (169)
Reaction count
All
  0 (2258)
  1 (166)
  2 - 5 (93)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (15)
  mikemccand (8)
  benwtrent (6)
  rmuir (4)
  iverase (4)
  dweiss (3)
  msokolov (3)

See all 23...
Mentioned
All
  jpountz (91)
  mikemccand (72)
  rmuir (52)
  benwtrent (47)
  msokolov (39)
  uschindler (38)
  vigyasharma (17)

See all 196...
Reviewed
All
  jpountz (23)
  mikemccand (23)
  msokolov (14)
  rmuir (13)
  uschindler (12)
  dweiss (11)
  benwtrent (11)

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

See all 282...
User
All
  asfimport (1811)
  github-actions[bot] (274)
  mikemccand (206)
  jpountz (199)
  rmuir (130)
  benwtrent (118)
  msokolov (102)

See all 435...
Last comment user
All
  asfimport (1326)
  github-actions[bot] (227)
  mikemccand (32)
  jpountz (32)
  rmuir (26)
  msokolov (16)
  dweiss (15)

See all 157...
Draft
All
  No (253)
  Yes (52)
Component
All
  core (594)
  analysis (150)
  highlighter (47)
  spatial (41)
  facet (40)
  queryparser (27)
  test-framework (25)

See all 23...
Type
All
  enhancement (1166)
  bug (725)
  task (198)
  test (78)
  documentation (22)
Labels
All
  Stale (223)
  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 156...
Commits?
All
  No (2539)
Reporter
All
  rmuir (271)
  mikemccand (153)
  jpountz (126)
  dsmiley (68)
  uschindler (52)
  iverase (43)
  romseygeek (41)

See all 737...
Assignee
All
  Unassigned (2298)
  mikemccand (35)
  uschindler (31)
  romseygeek (27)
  dsmiley (22)
  rmuir (14)
  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

#15826 PR: Use ArrayUtil#copyOfSubArray to simplify manual array copy patterns
4.6 hours ago  0 comments  0 votes  0 watches  easyicegithub-actions[bot]
Replace manual new T[] + System.arraycopy patterns with ArrayUtil#copyOfSubArray.

#15824 PR: Load lucene103 blocktree trie index on-heap to fix seekExact regression
6.2 hours ago  5 comments  0 votes  0 watches  github-actions[bot]herley-shaorimikemccandnavneet1vuschindler
# Summary Fixes 15820 The lucene103 blocktree codec replaced the in-memory FST term index with an ... Every readLong/readByte call on the mmap triggers Panama Foreign Memory API bounds checks ( ... This PR loads the trie index bytes into a heap-backed ByteBuffersDataInput at TermsEnum creation ...
    mikemccand 6.2 hours ago:  See IH here: <img width="1680" height="742" alt="Screenshot 2026-03-15 at 8 05 36 AM" src="https ...
    mikemccand 6.2 hours ago:  Actually, there is an annotation (IH) for the cutover to trie BlockTree (you have to click+drag to ... So now I'm really worried ... if our nightly benchy is silently steering us precisely opposite of " ...

#15825 PR: Fix CJKBigramFilter inconsistent positions with outputUnigrams disabled
19.3 hours ago  1 comments  0 votes  0 watches  github-actions[bot]herley-shaorirmuir
# Summary Fixes 15812 CJKBigramFilter produces different token positions for the same input ... This breaks phrase queries when index-time and search-time analyzers use different outputUnigrams ... Root cause In flushBigram(), when outputUnigrams=false, bigrams are emitted with the default ...
    rmuir 19.3 hours ago:  Looks great! I think CJKAnalyzer may use this filter, and now it's position increments will have changed. Can you glance at the failing tests?

#15823 PR: Add PriorityQueue#addNoShift, and use it in DisjunctionMaxBulkScorer's constructor.
1.6 days ago  6 comments  0 votes  0 watches  Copilotcopilot-pull-request-reviewer[bot]github-actions[bot]vsop-479
In DisjunctionMaxBulkScorer's constructor all values to compare is 0, so we can skip the shift.
    copilot-pull-request-reviewer[bot] 1.6 days ago:  # Pull request overview This PR introduces a specialized PriorityQueue insertion method that skips ... **Changes:**- Add PriorityQueueaddNoShift(T) to append elements without upHeap. - Use addNoShift ... Reviewed changes Copilot reviewed 2 out of 2 changed files in this pull request and generated 5 ...
    Copilot 1.6 days ago:  New API addNoShift is not covered by tests. Since lucene/core already has util-level tests in TestPriorityQueue, please add a focused test that ...

#15608 PR: TopFieldCollectorManager: Support thread safe
1.7 days ago  3 comments  0 votes  0 watches  github-actions[bot]prudhvigodithi
Description TopFieldCollectorManager: Support thread safe, resolves https://github.com/apache/ ... ~**Note: Will add some tests and open for discussion to continue support getCollectors()**~
    github-actions[bot] 2.7 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!
    prudhvigodithi 21 days ago:  I was able to repro the issue with this test, this test fails when used this.collectors = new ...

#15620 PR: Add Temporal Merge Policy for time-series data
1.7 days ago  45 comments  0 votes  0 watches  benwtrentchurromoralesgithub-actions[bot]msfrohshubhamsrkdev
Description This PR introduces TemporalMergePolicy, a new merge policy designed for time-series ... The policy groups segments into time windows and merges segments within the same window, but never ... This preserves temporal locality and improves query performance for time-range queries. relates to ...
    churromorales 2 days ago:  no worries @msfroh thanks for taking a look, appreciate it.
    msfroh 2 days ago:  Hey -- sorry for the delay, @churromorales. I'll give this one last check this afternoon, then I'll go ahead and merge it if no other ...

#15737 PR: Store pre-aggregated sum and value count in DocValuesSkipper
1.7 days ago  4 comments  0 votes  0 watches  github-actions[bot]jainankitkmccullochtnavneet1vsgup432
Description This PR extends the DocValues skip index to store pre-aggregated sum and valueCount ... This enables collectors and faceting operations to leverage pre-computed aggregation data at search ...
    github-actions[bot] 3.7 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!
    navneet1v 18.6 days ago:  > > add an extra burden on the indexing side? > > I am not sure if you went through the original issue, the entire point is to store ... So that it's intentional.

[20.6 msec search, 21.5 msec total]