[Save this search]

Status
All
   Fixed (7187)
  Closed (4641)
Open (2554)
   Won't Fix (543)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2245)
  PR (309)
Author relation
All
  None (2034)
  Member (625)
  Contributor (429)
  New contributor (60)
Created
All
  Past day (4)
  Past 2 days (5)
  Past 3 days (5)
  Past week (10)
  Past month (41)
  Past 3 months (98)
  Past 6 months (139)
  Past year (271)
Updated
All
  Past day (12)
  Past 2 days (16)
  Past 3 days (18)
  Past week (29)
  Past month (66)
  Past 3 months (132)
  Past 6 months (357)
  Past year (485)
Updated ago
All
  > 1 day ago (2542)
  > 2 days ago (2538)
  > 3 days ago (2536)
  > 1 week ago (2525)
  > 1 month ago (2488)
  > 3 months ago (2422)
  > 1 year ago (2069)
Comment count
All
  0 (561)
  1 (359)
  2 - 5 (801)
  6 - 10 (436)
  10 - 20 (302)
  > 20 (165)
Reaction count
All
  0 (2271)
  1 (169)
  2 - 5 (92)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (15)
  mikemccand (8)
  rmuir (5)
  benwtrent (5)
  iverase (4)
  dweiss (3)
  msokolov (3)

See all 23...
Mentioned
All
  jpountz (94)
  mikemccand (72)
  rmuir (53)
  benwtrent (50)
  msokolov (41)
  uschindler (39)
  dweiss (19)

See all 202...
Reviewed
All
  jpountz (23)
  mikemccand (23)
  rmuir (16)
  msokolov (14)
  benwtrent (14)
  dweiss (11)
  uschindler (11)

See all 57...
Commented
All
  asfimport (1369)
  github-actions[bot] (241)
  jpountz (140)
  mikemccand (122)
  rmuir (100)
  benwtrent (86)
  msokolov (81)

See all 288...
User
All
  asfimport (1811)
  github-actions[bot] (277)
  mikemccand (207)
  jpountz (202)
  rmuir (133)
  benwtrent (125)
  msokolov (104)

See all 439...
Last comment user
All
  asfimport (1326)
  github-actions[bot] (234)
  mikemccand (33)
  jpountz (32)
  rmuir (24)
  benwtrent (17)
  gsmiller (16)

See all 154...
Draft
All
  No (257)
  Yes (52)
Component
All
  core (592)
  analysis (150)
  highlighter (48)
  spatial (41)
  facet (39)
  queryparser (27)
  test-framework (25)

See all 23...
Type
All
  enhancement (1174)
  bug (725)
  task (199)
  test (77)
  documentation (22)
Labels
All
  Stale (231)
  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 157...
Commits?
All
  No (2554)
Reporter
All
  rmuir (270)
  mikemccand (156)
  jpountz (126)
  dsmiley (68)
  uschindler (52)
  romseygeek (42)
  iverase (42)

See all 745...
Assignee
All
  Unassigned (2312)
  mikemccand (35)
  uschindler (31)
  romseygeek (27)
  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

#14758: Support multiple HNSW graphs backed by the same vectors
2.2 hours ago  28 comments  0 votes  0 watches  benwtrentdungba88github-project-automation[bot]jpountzkaivalnpmccullochtmikemccandmsokolovnavneet1vshubhamvishu
Description For use-cases of searching different subsets of vectors in the index, where a ... This could be done today by: 1. Indexing all vectors in a single field and using query-time pre-filtering, but it can become ...
    benwtrent 2.2 hours ago:  Why can't we use another field? I know its weird for a format to be aware of another field. But presumably, these labels already exist in the data corpus and are stored as another field ...
    mikemccand 2.6 hours ago:  What if we take the duplicate detection out of the picture and offer explicit labels specified by ... So the Lucene user could optionally pass String[] or so labels to KnnFloatVectorField? With no labels (default) passed it does what it does today: the vector is only indexed into the ...

#15961 PR: Remove implicit determinization from WildcardQuery
6.4 hours ago  9 comments  0 votes  0 watches  drempapisgithub-actions[bot]rmuirromseygeek
This change continues the determinization cleanup started for regexp queries (15939) by applying ... Previously, wildcard automata were implicitly determinized up front. After removing that implicit determinization, some code paths (especially query visiting/ ...
    rmuir 6.4 hours ago:  Yes but I am trying to avoid the insertion of a whole new automaton class/java file. I can see where the old logic may have bugs, but maybe we can fix them and avoid that?
    drempapis 6.6 hours ago:  Without that change I am getting errors of the like ` java.lang.AssertionError: expected: ... That means hashCode() also had to change. Previously, NFA hash code came from nfaRunAutomaton.hashCode().

#15954 PR: Use SkipBlockRangeIterator as approximation in SortedNumericDocValuesRangeQuery
8.5 hours ago  6 comments  0 votes  0 watches  github-actions[bot]romseygeeksgup432
Description Replace DocValuesRangeIterator with SkipBlockRangeIterator as the two-phase ... This makes the approximation block-level only (no DV decoding), deferring value reads to matches(). In conjunctions, this avoids wasted DV decoding when another field's block is NO.
    romseygeek 8.5 hours ago:  One more thing which needs to be addressed, but looks good otherwise! Do you have updated benchmark numbers following this change?
    romseygeek 8.6 hours ago:  I think we need to return the cached block end here? The approximation might expand to more blocks which aren't guaranteed to all match.

#15962: Revert to plain google java format once markdown support is in
11 hours ago  0 comments  0 votes  0 watches  dweiss
Description Seems like it's coming, so we won't need a custom fork.https://github.com/google/ ...

#15929 PR: Rename CollectionStatistics to FieldStats and TermStatistics to TermStats.
12.2 hours ago  4 comments  0 votes  0 watches  github-actions[bot]jainankitkrmuirvsop-479
    vsop-479 15.5 hours ago:  > One thing to consider, we also have NumericFieldStats class. Maybe we want to think about more consistency and shorter names? e.g.
    rmuir 23.9 hours ago:  I don't remember the reasoning behind the name, but I think FieldStatistics is better. One thing to consider, we also have NumericFieldStats class. Maybe we want to think about more consistency and shorter names?

#15257 PR: Implement off-heap scoring for OSQ 4, 7, and 8 bit representations
13.5 hours ago  5 comments  0 votes  0 watches  benwtrentgithub-actions[bot]iverasemccullocht
Partial implementation of 15155 So far this is not any faster than the alternative. On an AMD RYZEN AI MAX+ 395 ` baseline: Results: recall latency(ms) netCPU avgCpuCount ...
    mccullocht 6.4 months ago:  Ok, repeated the experiment with a specific byte[] x MemorySegment implementation. In the luceneutil benchmarks I'm not suffering from the same inlining/pollution issues. The profiles remain the same where suddenly reduceLanes() becomes very expensive.
    mccullocht 6.4 months ago:  I plan to try the simplest thing first and just copy the dot product code for byte[] x ... I hoped that the JVM would monomorphize these calls but I guess not.

#15960 PR: Move parent field from DWPT to IndexingChain
15.7 hours ago  0 comments  0 votes  0 watches  Tim-Brooksgithub-actions[bot]
The parent field (used for block indexing) was previously managed by DWPT: it created a ... Move ownership of the parent field into IndexingChain, where field schemas and processing already ... The parent field and its PerField are created once in the IndexingChain constructor, and ...

[20.8 msec search, 21.9 msec total]