[Save this search]

Status
All
   Fixed (7187)
  Closed (4520)
Open (2532)
   Won't Fix (543)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2233)
  PR (299)
Author relation
All
  None (2031)
  Member (604)
  Contributor (416)
  New contributor (55)
Created
All
  Past day (2)
  Past 2 days (4)
  Past 3 days (6)
  Past week (9)
  Past month (36)
  Past 3 months (80)
  Past 6 months (149)
  Past year (274)
Updated
All
  Past day (11)
  Past 2 days (17)
  Past 3 days (23)
  Past week (29)
  Past month (77)
  Past 3 months (122)
  Past 6 months (398)
  Past year (502)
Updated ago
All
  > 1 day ago (2521)
  > 2 days ago (2515)
  > 3 days ago (2509)
  > 1 week ago (2503)
  > 1 month ago (2455)
  > 3 months ago (2410)
  > 1 year ago (2030)
Comment count
All
  0 (550)
  1 (355)
  2 - 5 (795)
  6 - 10 (431)
  10 - 20 (303)
  > 20 (168)
Reaction count
All
  0 (2251)
  1 (166)
  2 - 5 (93)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (14)
  mikemccand (8)
  benwtrent (6)
  rmuir (4)
  iverase (4)
  dweiss (3)
  msokolov (3)

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

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

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

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

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

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

See all 23...
Type
All
  enhancement (1166)
  bug (724)
  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 156...
Commits?
All
  No (2532)
Reporter
All
  rmuir (271)
  mikemccand (153)
  jpountz (126)
  dsmiley (68)
  uschindler (52)
  iverase (43)
  romseygeek (41)

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

#15608 PR: TopFieldCollectorManager: Support thread safe
43.5 minutes 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] 17.8 hours 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 19 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.2 hours ago  44 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 ...
    msfroh 1.2 hours 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 ...
    github-actions[bot] 17.8 hours 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!

#15805 PR: Remove lock in StringHelper, using atomic getAndUpdate instead
2.1 hours ago  8 comments  0 votes  0 watches  easyicegithub-actions[bot]msfrohneoremindrmuirsgup432
Description This should reduce lock contention in StringHelper.randomId() by replacing with ... We also move the toByteArray() call out of the lock/concurrent update as suggested by @easyice in ... As a bonus, we clean up one more instance of a non-final static field by replacing it with a final ...
    neoremind 2.1 hours ago:  I think async-profiler or JFR yielding flamegraph can reflect what's real, not sure other old and/ ... One follow-up question: I notice there are quite amount of "synchronized" footprint in the codebase ... Or it's more case by case?
    rmuir 3.2 hours ago:  > In addition, out of curiosity, to learn more, what tools are you referring to? making synchronized looks like a bottleneck though it might not be? and Lucene has to compromise and adapt?

#15732 PR: Prevent writing vectors twice during merging HNSW graphs
3.5 hours ago  25 comments  0 votes  0 watches  benwtrentgithub-actions[bot]iverasemccullochtmsokolov
This PR is just addressing the following suggestion from Adrien when merging https://github.com/ ... This version only supports un-quantised vectors because for quantise vectors the logic is a bit ... The key aspects of this implementation are: 1.- KnnVectorsWritermergeOneField returns now an ...
    iverase 3.5 hours ago:  This is migrated from here: https://github.com/apache/lucene/blob/e835af7b2075dc4c5d54fd0c0b063c7247 ... We divide by 8 to compute the number of bytes and we multiply by the QUERY_BITS (4x) as defined in ...
    iverase 3.7 hours ago:  Sure, we can just remove the casting.

#15812: CJKBigramFilter produces inconsistent token positions with outputUnigrams enabled vs disabled
4.5 hours ago  1 comments  0 votes  0 watches  amatobarmuir
Description CJKBigramFilter produces different token positions for the same input depending on ... This causes phrase query mismatches when index-time and search-time analyzers use different ... Steps to reproduce Using the _analyze API (tested on ES 9.3.1 / Lucene 10.2.1): **With ...
    rmuir 4.5 hours ago:  I agree with your analysis. Although the logic to this thing is hairy, we should try to make the positions "line up" across ... e.g. outputUnigrams=false should behave as if we emitted the unigrams, then later removed them.

#15819 PR: Fix SpanOrQuery scores each document using the combined IDF of all causes
10.3 hours ago  0 comments  0 votes  0 watches  gaobinlonggithub-actions[bot]
Description Resolves https://github.com/apache/lucene/issues/13796. Fix SpanOrQuery scores each document not using only the IDF of the term that matched, but the ... With two docs (foo:bar, foo:baz) and a spanOr([foo:bar, foo:baz]) query, each doc should score the ...

#15818 PR: Add BM25 k3 query-term frequency saturation to classic query parser
15.2 hours ago  0 comments  0 votes  0 watches  github-actions[bot]sgup432
Description Related issue - https://github.com/apache/lucene/issues/15768 Adds BM25 k3 ... Duplicate terms in a query string now get their boost computed as ((k3+1)*qtf)/(k3+qtf) instead of ... Defaults to -1 (disabled) — fully backward compatible.

[21.9 msec search, 22.9 msec total]