[Save this search]

Status
All
   Fixed (7187)
  Closed (4978)
Open (2600)
   Won't Fix (545)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2268)
  PR (332)
Author relation
All
  None (2050)
  Member (644)
  Contributor (461)
  New contributor (65)
Created
All
  Past day (3)
  Past 2 days (14)
  Past 3 days (15)
  Past week (19)
  Past month (64)
  Past 3 months (108)
  Past 6 months (165)
  Past year (273)
Updated
All
  Past day (13)
  Past 2 days (25)
  Past 3 days (37)
  Past week (79)
  Past month (114)
  Past 3 months (146)
  Past 6 months (213)
  Past year (504)
Updated ago
All
  > 1 day ago (2587)
  > 2 days ago (2575)
  > 3 days ago (2563)
  > 1 week ago (2521)
  > 1 month ago (2486)
  > 3 months ago (2454)
  > 1 year ago (2096)
Comment count
All
  0 (583)
  1 (363)
  2 - 5 (804)
  6 - 10 (440)
  10 - 20 (312)
  > 20 (169)
Reaction count
All
  0 (2317)
  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 (75)
  benwtrent (54)
  rmuir (53)
  uschindler (38)
  msokolov (38)
  romseygeek (20)

See all 207...
Reviewed
All
  mikemccand (24)
  jpountz (23)
  benwtrent (15)
  rmuir (13)
  msokolov (13)
  dweiss (11)
  uschindler (11)

See all 64...
Commented
All
  asfimport (1368)
  github-actions[bot] (244)
  jpountz (140)
  mikemccand (123)
  rmuir (97)
  benwtrent (87)
  msokolov (80)

See all 300...
User
All
  asfimport (1810)
  github-actions[bot] (297)
  mikemccand (209)
  jpountz (201)
  rmuir (130)
  benwtrent (123)
  msokolov (101)

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

See all 165...
Draft
All
  No (274)
  Yes (58)
Component
All
  core (621)
  analysis (151)
  highlighter (47)
  spatial (41)
  facet (41)
  queryparser (27)
  test-framework (23)

See all 23...
Type
All
  enhancement (1191)
  bug (724)
  task (202)
  test (79)
  documentation (22)
Labels
All
  Stale (216)
  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 (2600)
Reporter
All
  rmuir (270)
  mikemccand (154)
  jpountz (126)
  dsmiley (67)
  uschindler (52)
  iverase (44)
  romseygeek (43)

See all 752...
Assignee
All
  Unassigned (2357)
  mikemccand (35)
  uschindler (31)
  romseygeek (28)
  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

#16268 PR: Use the doc-values skip index to skip per-doc value lookups in LongRangeFacetCutter
2.9 minutes ago  35 comments  0 votes  0 watches  epotyomgithub-actions[bot]slow-J
Resolves https://github.com/apache/lucene/issues/16249 Implementation heavily inspired by ... Range faceting (in the sandbox module -LongRangeFacetCutter) currently reads the doc-values value ... When the faceted field is single-valued, we can use a doc-values skip index.
    epotyom 6.6 hours ago:  Can we deduplicate the calls to DocValues.getSortedNumeric and DocValues.unwrapSingleton? We call them both in maybeSkipper and here for the same field.
    epotyom 6.6 hours ago:  If we rename skipField to fieldName, maybe we should rename this method as well, perhaps to ...

#16285 PR: Apply GCD bound transform to sorted numeric rangeIntoBitSet
46.5 minutes ago  7 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 9.3 hours ago:  Thanks @neoremind, I've expanded the tests.
    neoremind 1.3 days ago:  Looks like queryMin and queryMax are always N * gcd + offset, valid bounds that lead to must-hit ... I see transformGcdBounds could returns null indicating that the queryMin and queryMax lands between ... Worth a test case?

#16297 PR: Use LongHashSet for sparse ordinal sets in DocValuesRangeIterator
47.9 minutes 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 ...

#16295 PR: Delegate rangeIntoBitSet in SingletonSortedNumericDocValues
48.5 minutes ago  1 comments  0 votes  0 watches  costingithub-actions[bot]romseygeek
SingletonSortedNumericDocValues did not override rangeIntoBitSet, causing single-valued sorted ... This small PR fixes this inconsistency.
    romseygeek 3.2 hours ago:  LGTM. Can you resolve the merge conflicts and I will push.

#16349 PR: Optimize IndexedDISI by implementing binary search for sparseDocs in …
1.7 hours ago  0 comments  0 votes  0 watches  rajat315315
Fixes 16348 Description This fix would be particularly useful in the case when we are ... In that case, we won't need to do a linear search over the 4096 Docs in the worst case. It would take only 12 operations log(N).

#16348: Optimize IndexedDISI by implementing binary search for sparseDocs in advance methods
1.9 hours ago  0 comments  0 votes  0 watches  rajat315315
Description If we look at below line of code, we are doing linear search if NumDocs < 4096. https ...

#16347 PR: Fix integer underflow in assertion in SparseFixedBitSet
2.3 hours ago  1 comments  0 votes  0 watches  romseygeek
For values close to Integer.MAX_VALUE, the blockCount calculation in SparseFixedBitSet can result ... The method checks that the calculated block count will cover the full length of the bitset; if the ... This is fixed by a simple cast to long.
    romseygeek 2.3 hours ago:  Elasticsearch CI uncovered this - it's very rare, the randomised test in question has been running ...

[15.2 msec search, 16.0 msec total]