[Save this search]

Status
All
   Fixed (7187)
  Closed (4572)
Open (2550)
   Won't Fix (543)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2239)
  PR (311)
Author relation
All
  None (2032)
  Member (613)
  Contributor (425)
  New contributor (57)
Created
All
  Past day (3)
  Past 2 days (3)
  Past 3 days (4)
  Past week (15)
  Past month (42)
  Past 3 months (97)
  Past 6 months (150)
  Past year (284)
Updated
All
  Past day (11)
  Past 2 days (12)
  Past 3 days (16)
  Past week (33)
  Past month (69)
  Past 3 months (133)
  Past 6 months (403)
  Past year (491)
Updated ago
All
  > 1 day ago (2539)
  > 2 days ago (2538)
  > 3 days ago (2534)
  > 1 week ago (2517)
  > 1 month ago (2481)
  > 3 months ago (2417)
  > 1 year ago (2059)
Comment count
All
  0 (566)
  1 (356)
  2 - 5 (798)
  6 - 10 (430)
  10 - 20 (302)
  > 20 (168)
Reaction count
All
  0 (2268)
  1 (168)
  2 - 5 (92)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (16)
  mikemccand (8)
  benwtrent (6)
  rmuir (4)
  iverase (4)
  dweiss (3)
  msokolov (3)

See all 23...
Mentioned
All
  jpountz (95)
  mikemccand (71)
  rmuir (50)
  benwtrent (48)
  uschindler (41)
  msokolov (40)
  dweiss (18)

See all 195...
Reviewed
All
  jpountz (23)
  mikemccand (22)
  rmuir (15)
  msokolov (15)
  uschindler (13)
  benwtrent (12)
  dweiss (11)

See all 61...
Commented
All
  asfimport (1369)
  github-actions[bot] (237)
  jpountz (140)
  mikemccand (119)
  rmuir (98)
  benwtrent (85)
  msokolov (81)

See all 283...
User
All
  asfimport (1811)
  github-actions[bot] (277)
  jpountz (203)
  mikemccand (202)
  rmuir (131)
  benwtrent (120)
  msokolov (105)

See all 434...
Last comment user
All
  asfimport (1326)
  github-actions[bot] (227)
  jpountz (32)
  mikemccand (31)
  rmuir (24)
  msokolov (18)
  gsmiller (15)

See all 151...
Draft
All
  No (259)
  Yes (52)
Component
All
  core (594)
  analysis (151)
  highlighter (48)
  spatial (42)
  facet (40)
  queryparser (27)
  test-framework (25)

See all 23...
Type
All
  enhancement (1171)
  bug (724)
  task (198)
  test (78)
  documentation (22)
Labels
All
  Stale (226)
  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 (2550)
Reporter
All
  rmuir (271)
  mikemccand (153)
  jpountz (126)
  dsmiley (68)
  uschindler (52)
  romseygeek (42)
  iverase (42)

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

#15886 PR: Cache frozen FieldType to skip schema validation
35 seconds ago  2 comments  0 votes  0 watches  ChrisHegartyTim-Brooksgithub-actions[bot]
When indexing, every field in every document has its schema built via updateDocFieldSchema and ... For the common case where a field consistently uses the same frozen FieldType instance, this work ... This change caches the frozen FieldType on each PerField and checks same object instance to detect ...
    ChrisHegarty 7.1 hours ago:  This looks goo to me Tim. Can we add a change log entry for 10.5?
    Tim-Brooks 3.1 days ago:  This is motivated by scenarios where the user is mostly lightly indexing (docvalues, stored fields, ... In scenarios like this the actual validation of the schema starts to dominating the processDocument ... This change does not make a difference in lunceneutil benchmarks which are inverted indices heavy. ...

#15818 PR: Add BM25 k3 query-term frequency saturation to classic query parser
25.8 minutes ago  33 comments  0 votes  0 watches  github-actions[bot]msfrohrmuirsgup432
Description Related issue - https://github.com/apache/lucene/issues/15768 Adds BM25 k3 ... Duplicate terms in a query get their boost computed as ((k3+1)*qtf)/(k3+qtf) instead of linear ... Defaults to -1 (disabled) so fully backward compatible.
    sgup432 25.9 minutes ago:  @msfroh Do you mind taking another look?
    sgup432 3 days ago:  Updated!

#15890: Add ability to pass DataAccess hit with Lucene104ScalarQuantizedVectorsReader
28.6 minutes ago  0 comments  0 votes  0 watches  navneet1v
# Description Similar to Lucene99FlatVectorsReader, we should add the ability to pass DataAccess ... Because a ScalerQuantized VectorReader can be used for both sequential based search and for HNSW ...

#15823 PR: Implement method to add all stream elements into a PriorityQueue.
1.6 hours ago  91 comments  0 votes  0 watches  Copilotcopilot-pull-request-reviewer[bot]dweissgithub-actions[bot]gsmilleruschindlervsop-479
In DisjunctionMaxBulkScorer's constructor all values to compare is 0, so we can skip the shift.
    uschindler 1.6 hours ago:  > No doubt I likely have a misunderstanding here :). I don't often leverage streams to be honest.
    gsmiller 2.5 hours ago:  No doubt I likely have a misunderstanding here :). I don't often leverage streams to be honest. If I'm understanding, your point here is that forEachOrdered is going to guarantee sequential ...

#15676 PR: Feature/collaborative hnsw search
3.8 hours ago  25 comments  0 votes  0 watches  benwtrentgithub-actions[bot]krickertmsokolovnavneet1vvigyasharma
[HNSW] Collaborative Search via Dynamic Threshold Feedback > **Status: Experimental** - This ... Full distributed multi-shard testing will happen in a follow-up PR for OpenSearch.
    krickert 3.8 hours ago:  Update - Still working through this - it took me awhile to get data wrangled into this with the ... The real test will have a full document index and compare the two with a 250GB index between 16 and ... I'm using a single 4080 GPU for this, so I think the data might take a few days to produce.
    krickert 24.4 days ago:  Thanks for the suggestions, @vigyasharma. You’re right; I used the current 100-visit warm-up as a static safeguard to prevent the "entry ... My next round of tests will retain the 100-visit warm-up to establish a baseline, then I'll ...

#15627 PR: Deferring lambda in TermStates.java according to prefetch
4.3 hours ago  27 comments  0 votes  0 watches  epotyomgithub-actions[bot]msokolovshubhamsrkdevuschindler
Problem Currently, for term lookup TermStates.get defers for every case (to the lambda in ... This works great for cold indexes but might not be the best for hot indexes. Solution We can depend upon prefetch for deferring.
    msokolov 4.3 hours ago:  This looks ready to me -- do you have any concerns, @uschindler ?
    github-actions[bot] 18.7 days ago:  This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the dev@lucene.apache.org list. Thank you for your contribution!

#15574 PR: Introduce FirstPassGroupingCollectorManager
4.6 hours ago  1 comments  0 votes  0 watches  gaobinlonggithub-actions[bot]
Description This pr introduces FirstPassGroupingCollectorManager and switches TestGrouping and ... Relates to https://github.com/apache/lucene/issues/12892.
    github-actions[bot] 2 months ago:  This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the dev@lucene.apache.org list. Thank you for your contribution!

[20.9 msec search, 21.9 msec total]