[Save this search]

Status
All
   Fixed (7187)
  Closed (3899)
Open (2466)
   Won't Fix (543)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2206)
  PR (260)
Author relation
All
  None (2184)
  Member (542)
  Contributor (254)
  New contributor (50)
Created
All
  Past day (2)
  Past 2 days (4)
  Past 3 days (7)
  Past week (13)
  Past month (40)
  Past 3 months (94)
  Past 6 months (181)
  Past year (296)
Updated
All
  Past day (6)
  Past 2 days (8)
  Past 3 days (14)
  Past week (28)
  Past month (60)
  Past 3 months (132)
  Past 6 months (247)
  Past year (360)
Updated ago
All
  > 1 day ago (2460)
  > 2 days ago (2458)
  > 3 days ago (2452)
  > 1 week ago (2438)
  > 1 month ago (2406)
  > 3 months ago (2334)
  > 1 year ago (2106)
Comment count
All
  0 (554)
  1 (362)
  2 - 5 (761)
  6 - 10 (413)
  10 - 20 (289)
  > 20 (157)
Reaction count
All
  0 (2183)
  1 (166)
  2 - 5 (94)
  6 - 10 (17)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (11)
  mikemccand (5)
  rmuir (3)
  dweiss (3)
  iverase (3)
  romseygeek (3)
  uschindler (2)

See all 20...
Mentioned
All
  jpountz (88)
  mikemccand (64)
  rmuir (40)
  uschindler (35)
  benwtrent (33)
  msokolov (32)
  dweiss (17)

See all 175...
Reviewed
All
  jpountz (26)
  mikemccand (24)
  rmuir (14)
  dweiss (13)
  msokolov (10)
  uschindler (9)
  benwtrent (9)

See all 57...
Commented
All
  asfimport (1377)
  github-actions[bot] (221)
  jpountz (151)
  mikemccand (106)
  rmuir (89)
  msokolov (68)
  benwtrent (56)

See all 253...
User
All
  asfimport (1825)
  github-actions[bot] (229)
  jpountz (205)
  mikemccand (190)
  rmuir (121)
  msokolov (85)
  benwtrent (82)

See all 389...
Last comment user
All
  asfimport (1335)
  github-actions[bot] (204)
  jpountz (39)
  mikemccand (30)
  dweiss (23)
  rmuir (23)
  benwtrent (14)

See all 131...
Draft
All
  No (214)
  Yes (46)
Component
All
  core (555)
  analysis (150)
  highlighter (44)
  spatial (41)
  facet (38)
  queryparser (26)
  suggest (16)

See all 22...
Type
All
  enhancement (1135)
  bug (727)
  task (204)
  test (76)
  documentation (19)
Labels
All
  legacy-jira-fix-versio... (214)
  Stale (198)
  legacy-jira-fix-versio... (169)
  affects-version:4.0-ALPHA (81)
  tool:build (55)
  vector-based-search (46)
  affects-version:6.0 (37)

See all 157...
Commits?
All
  No (2466)
Reporter
All
  rmuir (271)
  mikemccand (149)
  jpountz (129)
  dsmiley (68)
  dweiss (55)
  uschindler (52)
  iverase (44)

See all 716...
Assignee
All
  Unassigned (2226)
  mikemccand (35)
  uschindler (28)
  romseygeek (26)
  dsmiley (22)
  rmuir (14)
  dweiss (13)

See all 43...
  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

#15118 PR: LUCENE-14611: Fix TestTermInSetQuery.testDuel OOM by reducing large r…
3.7 hours ago  4 comments  0 votes  0 watches  Narendra9793dweissgithub-actions[bot]
This PR addresses the issue where TestTermInSetQuery.testDuel occasionally ran into OutOfMemoryError ... . 🔧 Changes Made: Updated testDuel to limit the size of randomly generated terms and queries. ...
    dweiss 3.7 hours ago:  I'd like to see the reason why this test OOMs first - what's causing the memory blowout? Limiting the ranges doesn't seem like a good fix for the underlying problem - you also increase the ...
    dweiss 3.8 hours ago:  I'd reuse RandomizedTest.randomIntBetween(...) instead of this code.

#15120 PR: Add estimatedByteSizes to merges kicked off by IndexWriter.addIndexes(CodecReader[])
8.7 hours ago  1 comments  0 votes  0 watches  cwperksgithub-actions[bot]
Description This PR abstracts the logic to add estimatedByteSizes on merges to a method called ... This PR adds a simple test to ensure that estimated bytes are added to the merge after ... /gradlew :lucene:core:test --tests TestIndexWriterMerging.testAddEstimatedBytesToMerge -i ...
    github-actions[bot] 10.7 hours ago:  This PR does not have an entry in lucene/CHANGES.txt. Consider adding one. If the PR doesn't need a changelog entry, then add the skip-changelog label to it and you will stop ...

#14996 PR: Make BitSet no longer implement Bits.
10.4 hours ago  12 comments  0 votes  0 watches  benwtrentgithub-actions[bot]jpountzmsokolov
Lucene has call sites of Bits#get that are more polymorphic than they should because they sometimes ... This makes some call sites bimorphic when they could be monomorphic, of polymorphic when they could ... Given how polymorphism affects performance, I would like to fix this performance trap.
    github-actions[bot] 6.4 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!
    benwtrent 20.8 days ago:  Within the HNSW format, we do this: ` if (acceptDocs instanceof BitSet bitSet) { // Use ... So, I am not sure we can make this change without progressing: https://github.com/apache/lucene/ ...

#15116 PR: Rewrite of the GroupVInt optimization without lambdas, varhandles and no code in subclasses
11.4 hours ago  47 comments  0 votes  0 watches  easyicegithub-actions[bot]jpountzrmuiruschindler
Hi, this is a rewrite of the GroupVInt optimization. The results are great for MMapDirectory (more than twice as fast than the baseline implementation. The code has no risk of varhandles or lambda optimization and no callsite pollution issue, because ...
    uschindler 11.4 hours ago:  > > Can this method be made private now? It is only used by readGroupVInts. maybe the JavaDoc for this method should be updated as well.
    uschindler 11.5 hours ago:  I changed the code, but left the constant for now. The constant is still needed for writing when we refactor the code to guess the maximum scratch ...

#15119: Deadlock between IndexWriter, IndexWriterConfig, ConcurrentMergeScheduler
12.2 hours ago  0 comments  0 votes  0 watches  drabe8
Description Similar to https://github.com/apache/lucene/issues/12419 In our use case, we create ... (We use a ByteBuffersDirectory to create discrete indexes for a small subset of the data that a ... We see one thread constructing an IndexWriterConfig, waiting for the IndexWriter Class Init monitor ...

#15045 PR: Use FixedBitSet#cardinality for counting liveDocs in CheckIndex
14.4 hours ago  4 comments  0 votes  0 watches  easyicegithub-actions[bot]jpountz
This uses FixedBitSet#cardinality to speed up counting liveDocs in CheckIndex and some assert ...
    jpountz 14.4 hours ago:  Thanks for explaining. I'm not not too fond of the approach, it looks like you'd really want to add int Bitscardinality(), ... But it looks a bit odd to me.
    easyice 13.1 days ago:  Thanks for the review Adrien, sorry for not making it clear, this change also use instanceof ... I had considered another approach: placing the new cardinality method in Bits, similar to applyMask ...

#15117: Implement asBulkSimScorer() on FeatureField's SimScorers
1.7 days ago  1 comments  0 votes  0 watches  jpountz
Description Given the upside we've seen of implementing asBulkSimScorer on BM25SimScorer, we ...
    jpountz 1.7 days ago:  If you'd like to work on it, don't ask that this issue be assigned to you, just open a PR and link ...

[20.6 msec search, 21.6 msec total]