[Save this search]

Status
All
   Fixed (7187)
  Closed (4735)
Open (2560)
   Won't Fix (545)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2251)
  PR (309)
Author relation
All
  None (2037)
  Member (631)
  Contributor (424)
  New contributor (61)
Created
All
  Past day (6)
  Past 2 days (8)
  Past 3 days (12)
  Past week (17)
  Past month (39)
  Past 3 months (89)
  Past 6 months (138)
  Past year (255)
Updated
All
  Past day (11)
  Past 2 days (16)
  Past 3 days (19)
  Past week (29)
  Past month (63)
  Past 3 months (131)
  Past 6 months (176)
  Past year (484)
Updated ago
All
  > 1 day ago (2549)
  > 2 days ago (2544)
  > 3 days ago (2541)
  > 1 week ago (2531)
  > 1 month ago (2497)
  > 3 months ago (2429)
  > 1 year ago (2076)
Comment count
All
  0 (570)
  1 (358)
  2 - 5 (794)
  6 - 10 (432)
  10 - 20 (305)
  > 20 (170)
Reaction count
All
  0 (2278)
  1 (167)
  2 - 5 (93)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (14)
  mikemccand (10)
  rmuir (4)
  iverase (4)
  benwtrent (4)
  dweiss (3)
  msokolov (3)

See all 24...
Mentioned
All
  jpountz (93)
  mikemccand (74)
  benwtrent (53)
  rmuir (50)
  msokolov (40)
  uschindler (38)
  romseygeek (18)

See all 203...
Reviewed
All
  mikemccand (24)
  jpountz (23)
  benwtrent (17)
  rmuir (14)
  msokolov (11)
  uschindler (11)
  dweiss (10)

See all 61...
Commented
All
  asfimport (1369)
  github-actions[bot] (232)
  jpountz (140)
  mikemccand (122)
  rmuir (96)
  benwtrent (84)
  msokolov (81)

See all 289...
User
All
  asfimport (1811)
  github-actions[bot] (275)
  mikemccand (209)
  jpountz (201)
  rmuir (128)
  benwtrent (124)
  msokolov (103)

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

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

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

See all 157...
Commits?
All
  No (2560)
Reporter
All
  rmuir (270)
  mikemccand (156)
  jpountz (126)
  dsmiley (68)
  uschindler (52)
  iverase (44)
  romseygeek (42)

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

#16065 PR: FaissKnnVectorsFormat COSINE similarity support
1 minute ago  0 comments  0 votes  0 watches  github-actions[bot]iprithv
added support for VectorSimilarityFunction.COSINE in the Faiss-based vector format. read this to implement, which was useful! https://github.com/facebookresearch/faiss/wiki/FAQ#how-can-i-index-vectors-for-cosine-distance

#16064: FaissKnnVectorsFormat COSINE similarity support
6.6 minutes ago  0 comments  0 votes  0 watches  iprithv
right now, FaissKnnVectorsFormat only supports DOT_PRODUCT and EUCLIDEAN. If we try to use COSINE, it fails at runtime with an UnsupportedOperationException. since cosine ...

#16061 PR: Improve cost estimation in SortedSetDocValuesRangeQuery when using DocValuesSkipper
1 hour ago  12 comments  0 votes  0 watches  github-actions[bot]iveraseromseygeek
I noticed that the current implementation always return values.cost() because we are delaying the ... This is because we need to do some lookups for resolving the ordinals of the query. Still when there is a skipper and the index is dense and used as primary sort, we have a very fast ...
    iverase 1.2 hours ago:  I think we want to use the skipper directly here, I noticed we are being a bit inefficient here. For example: ` skipper.advance(minOrd, Long.MAX_VALUE); ... This should be true very often because of the way we are building the blocks.
    romseygeek 2.1 hours ago:  I like this a lot! I wonder if its possible to use SkipBlockRangeIterator to simplify the code that finds bounds a bit?

#16063 PR: Remove redundant final modifiers
1.6 hours ago  0 comments  0 votes  0 watches  github-actions[bot]vsop-479
Description This change removes redundant final modifiers throughout all final classes -- except ...

#16053 PR: Add an (optional) field-writer creation strategy to Lucene99FlatVectorsWriter
4 hours ago  2 comments  0 votes  0 watches  github-actions[bot]ldematte
Lucene99FlatVectorsWriter hard-codes the per-field storage for vector values to an on-heap ... Different users of Lucene99FlatVectorsFormat may want to change how vectors are stored in memory; ... In particular, this PR adds a public constructor overload to Lucene99FlatVectorsWriter that accepts ...
    ldematte 23.9 hours ago:  We could store FlatFieldVectorsWriters and FieldInfos separately in 2 arrays, but I think using a ...

#15993 PR: Add maxValueCount to DocValuesSkipper metadata
7.8 hours ago  3 comments  0 votes  0 watches  github-actions[bot]iprithvjainankitkromseygeek
# Description resolves https://github.com/apache/lucene/issues/15794 - Add DocValuesSkippermaxV ... . - Persist exact global maxValueCount metadata in Lucene90 doc values skipper metadata for new ...
    iprithv 4.7 days ago:  @romseygeek would you be able to take a look at this? Thanks!
    iprithv 12.7 days ago:  > I am wondering if this information needs to stored as part of DocValuesSkipper as this should be ... Also, this PR - 15737 might be related. Thanks for taking a look.

#15978 PR: Fix HNSW InfoStream duplicate times and add per-chunk completion logging
7.9 hours ago  30 comments  0 votes  0 watches  github-actions[bot]iprithvmikemccand
# Description: Fixes 15967 The printGraphBuildStatus method in HnswGraphBuilder.addVectors() ... However, during concurrent HNSW merging, each worker processes chunks of 2048 vectors, and the ... This means the print fires **at most once per chunk**, always on the first matching node where t == ...
    iprithv 7.9 hours ago:  @mikemccand just wanted to touch base with you on this, in case it got buried. Thanks!
    iprithv 13.6 days ago:  sure, done. Thanks!

[20.6 msec search, 21.6 msec total]