[Save this search]

Status
All
   Fixed (7187)
  Closed (5006)
Open (2604)
   Won't Fix (545)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2269)
  PR (335)
Author relation
All
  None (2055)
  Member (640)
  Contributor (462)
  New contributor (67)
Created
All
  Past day (1)
  Past 2 days (4)
  Past 3 days (6)
  Past week (15)
  Past month (56)
  Past 3 months (116)
  Past 6 months (170)
  Past year (277)
Updated
All
  Past day (8)
  Past 2 days (22)
  Past 3 days (26)
  Past week (36)
  Past month (113)
  Past 3 months (153)
  Past 6 months (217)
  Past year (504)
Updated ago
All
  > 1 day ago (2596)
  > 2 days ago (2582)
  > 3 days ago (2578)
  > 1 week ago (2568)
  > 1 month ago (2491)
  > 3 months ago (2451)
  > 1 year ago (2100)
Comment count
All
  0 (586)
  1 (364)
  2 - 5 (805)
  6 - 10 (439)
  10 - 20 (314)
  > 20 (168)
Reaction count
All
  0 (2321)
  1 (170)
  2 - 5 (91)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (13)
  mikemccand (9)
  rmuir (5)
  benwtrent (5)
  msokolov (4)
  iverase (4)
  dweiss (3)

See all 26...
Mentioned
All
  jpountz (93)
  mikemccand (77)
  rmuir (54)
  benwtrent (54)
  uschindler (38)
  msokolov (38)
  romseygeek (21)

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

See all 63...
Commented
All
  asfimport (1368)
  github-actions[bot] (245)
  jpountz (140)
  mikemccand (123)
  rmuir (97)
  benwtrent (85)
  msokolov (81)

See all 302...
User
All
  asfimport (1810)
  github-actions[bot] (300)
  mikemccand (209)
  jpountz (201)
  rmuir (131)
  benwtrent (122)
  msokolov (100)

See all 453...
Last comment user
All
  asfimport (1324)
  github-actions[bot] (236)
  mikemccand (32)
  jpountz (32)
  rmuir (23)
  msokolov (18)
  benwtrent (17)

See all 166...
Draft
All
  No (277)
  Yes (58)
Component
All
  core (623)
  analysis (153)
  highlighter (47)
  spatial (41)
  facet (41)
  queryparser (27)
  test-framework (23)

See all 23...
Type
All
  enhancement (1192)
  bug (725)
  task (202)
  test (79)
  documentation (22)
Labels
All
  Stale (217)
  legacy-jira-fix-versio... (214)
  legacy-jira-fix-versio... (169)
  affects-version:4.0-ALPHA (81)
  tool:build (54)
  vector-based-search (48)
  affects-version:6.0 (37)

See all 157...
Commits?
All
  No (2604)
Reporter
All
  rmuir (270)
  mikemccand (154)
  jpountz (126)
  dsmiley (67)
  uschindler (52)
  iverase (44)
  romseygeek (42)

See all 751...
Assignee
All
  Unassigned (2362)
  mikemccand (35)
  uschindler (31)
  romseygeek (28)
  dsmiley (22)
  rmuir (15)
  jpountz (11)

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

#16381 PR: StopFilter: pack ASCII stop words into longs for faster lookup
2.5 hours ago  1 comments  0 votes  0 watches  costingithub-actions[bot]uschindler
Pack short ASCII stop words (up to 8 chars, which covers all standard English stop word lists) into ... Non-packable sets (non-ASCII or words >8 chars) fall back to the existing CharArraySet path ... Benchmark AMD EPYC 7R32 (c5a.2xlarge) 2000 tokens per iteration, english = 50% stop words, ...
    uschindler 2.5 hours ago:  I am not so happy with that change as it makes everything more complex. It may be 2.6 times faster for each lookup, but the overall speedup during indexing is likely much ... In addition to me the whole thing may be better organized if the optimization would be inside ...

#16285 PR: Apply GCD bound transform to sorted numeric rangeIntoBitSet
3.7 hours ago  15 comments  0 votes  0 watches  costingithub-actions[bot]neoremindsgup432
GCD- and delta-encoded multi-value SortedNumericDocValues decode every packed value during range ... This transforms query bounds into the encoded domain and compares raw values directly, matching the ... Uses the same approach as 16160 (the same utility methods are used, will be removed once that PR ...
    costin 6.3 days ago:  You're right , the code can be further reused. With #16283 merged, the code now delegates to DOC_VALUES_RANGE_SUPPORT.sortedNumericRangeIntoBitSet ...
    costin 6.4 days ago:  Nice. The multiply-compare is more concise however in the interest of readability I'll keep the current ...

#12892: Remove all deprecated IndexSearcher#search(Query, Collector) usage / methods in the next major ...
4.6 hours ago  5 comments  0 votes  0 watches  gaobinlonggithub-project-automation[bot]gsmillerjavannamsfrohromseygeeksgup432vijaykriishnazacharymorn
Description As a follow-up of https://github.com/apache/lucene/issues/11041, we would like to ... A list of the leftover usages follows:- [x] facet: FacetsCollector (ongoing discussion at #13725, ...
    gsmiller 1.8 years ago:  Note that we added a factory method in CollectorManager that might make these migration tasks a ... See CollectorManagerforSequentialExecution (and thanks to @romseygeek for the idea!). EDIT: After more consideration, this is probably too trappy for users and is likely getting removed ...
    msfroh 1.8 years ago:  Opened https://github.com/apache/lucene/pull/13747 for join/join.test.

#16294 PR: Route doc-values queries through ConstantScoreScorerSupplier
6.2 hours ago  0 comments  0 votes  0 watches  costingithub-actions[bot]
Replace DefaultScorerSupplier with ConstantScoreScorerSupplier in five constant-score doc-values ... Same pattern as 16143

#16297 PR: Use LongHashSet for sparse ordinal sets in DocValuesRangeIterator
6.2 hours ago  0 comments  0 votes  0 watches  costingithub-actions[bot]
Replace LongBitSet with LongHashSet in buildOrdinalSet() so memory scales with the number of ... This is an issue since DocValuesRangeIterator.buildOrdinalSet() builds a set of matching ordinals ... The current implementation allocates, per query, a LongBitSet(ordCount) where ordCount is the ...

#16245 PR: Simple64
6.2 hours ago  50 comments  0 votes  0 watches  github-actions[bot]mikemccandvsop-479
Description Simple64: pack multiple small non-negative integers into a single long. This change try to implement Simple64 to bulk encode/decode small ints, and use it to write terms' ...
    vsop-479 6.6 hours ago:  Sure.
    vsop-479 6.8 hours ago:  DataInput has readLongs, switched to using it.

#16368 PR: Check if merge is aborted during HNSW graph construction
15.2 hours ago  2 comments  0 votes  0 watches  github-actions[bot]jeho-rpls
Fixes 16367. HNSW graph construction never checked OneMerge's abort flag. It is a pure-CPU loop that performs no writes, so IndexWriterrollback and abortMerges() blocked ...
    jeho-rpls 2.5 days ago:  Opened #16369 with a fix for the unrelated test failure above.
    jeho-rpls 2.5 days ago:  The CI failure is unrelated to this change: TestForceNoBulkScoringQuery.testBulkScoringIsDisabled ( ... Re-pushed to re-trigger CI with fresh seeds.

[15.1 msec search, 16.0 msec total]