[Save this search]

Status
All
   Fixed (7187)
  Closed (4849)
Open (2581)
   Won't Fix (545)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2256)
  PR (325)
Author relation
All
  None (2042)
  Member (634)
  Contributor (451)
  New contributor (59)
Created
All
  Past day (19)
  Past 2 days (23)
  Past 3 days (27)
  Past week (32)
  Past month (63)
  Past 3 months (103)
  Past 6 months (152)
  Past year (265)
Updated
All
  Past day (33)
  Past 2 days (42)
  Past 3 days (46)
  Past week (56)
  Past month (92)
  Past 3 months (131)
  Past 6 months (197)
  Past year (493)
Updated ago
All
  > 1 day ago (2548)
  > 2 days ago (2539)
  > 3 days ago (2535)
  > 1 week ago (2525)
  > 1 month ago (2489)
  > 3 months ago (2450)
  > 1 year ago (2088)
Comment count
All
  0 (585)
  1 (357)
  2 - 5 (796)
  6 - 10 (436)
  10 - 20 (308)
  > 20 (169)
Reaction count
All
  0 (2301)
  1 (167)
  2 - 5 (91)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (14)
  mikemccand (8)
  romseygeek (5)
  rmuir (4)
  iverase (4)
  benwtrent (4)
  dweiss (3)

See all 24...
Mentioned
All
  jpountz (94)
  mikemccand (76)
  benwtrent (53)
  rmuir (51)
  uschindler (38)
  msokolov (38)
  romseygeek (22)

See all 204...
Reviewed
All
  jpountz (23)
  mikemccand (23)
  benwtrent (17)
  rmuir (12)
  msokolov (11)
  uschindler (11)
  dweiss (10)

See all 62...
Commented
All
  asfimport (1369)
  github-actions[bot] (234)
  jpountz (140)
  mikemccand (123)
  rmuir (96)
  benwtrent (85)
  msokolov (81)

See all 297...
User
All
  asfimport (1811)
  github-actions[bot] (275)
  mikemccand (210)
  jpountz (202)
  rmuir (128)
  benwtrent (123)
  msokolov (101)

See all 448...
Last comment user
All
  asfimport (1326)
  github-actions[bot] (224)
  jpountz (32)
  mikemccand (31)
  rmuir (22)
  msokolov (17)
  benwtrent (17)

See all 160...
Draft
All
  No (270)
  Yes (55)
Component
All
  core (604)
  analysis (150)
  highlighter (46)
  spatial (41)
  facet (41)
  queryparser (26)
  test-framework (23)

See all 23...
Type
All
  enhancement (1181)
  bug (724)
  task (201)
  test (79)
  documentation (22)
Labels
All
  Stale (218)
  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 (2581)
Reporter
All
  rmuir (270)
  mikemccand (154)
  jpountz (126)
  dsmiley (68)
  uschindler (52)
  iverase (44)
  romseygeek (42)

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

#16111 PR: Optimize FieldExistsQuery.count() when all docs have the field
23.7 minutes ago  10 comments  0 votes  0 watches  github-actions[bot]iprithvjainankitkjpountzmsfrohromseygeek
Optimize FieldExistsQuery.count() when all docs have the field. Vectors return numDocs() directly. Doc values only optimize with deletions when DocValuesSkipper is available.
    iprithv 24.4 minutes ago:  > @iprithv -- what do you think? makes sense, I kept norms as a special case though getDocCount() for norms actually returns ...
    iprithv 26.1 minutes ago:  yes, actually. updated, thanks...when null will not do full scan now

#16200 PR: Optimize byte vector scoring: precompute cosine query norm and pack int4 queries
30.9 minutes ago  3 comments  0 votes  0 watches  benwtrentgithub-actions[bot]jegentilekaivalnprmuir
# Summary - **Precompute cosine query norm**: Byte vector cosine similarity previously recomputed ... Since the query is fixed for the lifetime of a scorer, the norm is now computed once and passed ... This eliminates one SIMD accumulator, one SIMD multiply, and one reduceLanes per call in the ...
    benwtrent 30.9 minutes ago:  1. let's keep changes unique. this PR is doing too much. If we want to change int4 things, change that first and only and benchmark that only to ensure its ... 2.
    jegentile 2 hours ago:  @benwtrent @rmuir @kaivalnp — would appreciate a review when you have a chance. This PR precomputes the byte vector cosine query norm (eliminating redundant work on every score() ... Benchmark numbers are in the comment above.

#16201 PR: Replace IntObjectHashMap with dense array for field related map to reduce heap usage
33.5 minutes ago  0 comments  0 votes  0 watches  HUSTERGSgithub-actions[bot]
Description This change adds ReadOnlyDenseIntObjectMap, a compact read-only representation for ... It stores values directly in an Object[] indexed by key, avoiding the separate int[] keys table ... This is useful for codec metadata maps keyed by FieldInfo.number.

#16175 PR: prevent double counting toward maxClauseCount
1.8 hours ago  4 comments  0 votes  0 watches  github-actions[bot]iprithvjavanna
only visit indexQuery, dvQuery is an implementation detail
    iprithv 1.9 hours ago:  thanks @javanna for pointing me to 14756. I tried to visit both queries and use max(indexQuery, dvQuery) so for finalization, used repeated ... issue I ran into is that the current QueryVisitor API doesn't seem to provide a clean way to know ...
    javanna 8 hours ago:  hi @iprithv here is some explanation of a possible way forward we discussed, which did not get ...

#12892: Remove all deprecated IndexSearcher#search(Query, Collector) usage / methods in the next major ...
3.3 hours ago  5 comments  0 votes  0 watches  github-project-automation[bot]gsmillerjavannamsfrohromseygeeksgup432zacharymorn
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.7 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.7 years ago:  Opened https://github.com/apache/lucene/pull/13747 for join/join.test.

#16197 PR: Remove deprecated usages of search(Query, Collector) from monitor module
4.7 hours ago  0 comments  0 votes  0 watches  javanna
This is merely removing the deprecated usages, without introducing search concurrency to monitor. ... The searcher creation is all internal to monitor and there is currently no way for users to provide ... Should we want to do that in the future, a larger refactor is needed to support inter-segment ...

#16198: Monitor to support search concurrency
4.7 hours ago  0 comments  0 votes  0 watches  javanna
Description There is currently no way to provide an executor to the index searcher used ... There may be value in parallelizing execution, but besides exposing the ability for users to ...

[21.4 msec search, 22.8 msec total]