[Save this search]

Status
All
   Fixed (7187)
  Closed (5105)
Open (2633)
   Won't Fix (545)
   Duplicate (297)
   Invalid (217)
   Not A Problem (195)
Issue type
All
  Issue (2279)
  PR (354)
Author relation
All
  None (2056)
  Member (648)
  Contributor (494)
  New contributor (67)
Created
All
  Past day (1)
  Past 2 days (10)
  Past 3 days (10)
  Past week (13)
  Past month (57)
  Past 3 months (134)
  Past 6 months (188)
  Past year (291)
Updated
All
  Past day (8)
  Past 2 days (21)
  Past 3 days (24)
  Past week (36)
  Past month (111)
  Past 3 months (181)
  Past 6 months (241)
  Past year (533)
Updated ago
All
  > 1 day ago (2625)
  > 2 days ago (2612)
  > 3 days ago (2609)
  > 1 week ago (2597)
  > 1 month ago (2522)
  > 3 months ago (2452)
  > 1 year ago (2100)
Comment count
All
  0 (593)
  1 (376)
  2 - 5 (809)
  6 - 10 (444)
  10 - 20 (314)
  > 20 (169)
Reaction count
All
  0 (2348)
  1 (172)
  2 - 5 (91)
  6 - 10 (16)
  10 - 20 (5)
  > 20 (1)
Review Requested
All
  jpountz (13)
  mikemccand (11)
  rmuir (6)
  iverase (4)
  romseygeek (4)
  benwtrent (4)
  uschindler (3)

See all 27...
Mentioned
All
  jpountz (102)
  mikemccand (87)
  rmuir (61)
  benwtrent (53)
  uschindler (43)
  msokolov (40)
  romseygeek (23)

See all 209...
Reviewed
All
  mikemccand (26)
  jpountz (23)
  benwtrent (14)
  rmuir (13)
  uschindler (12)
  dweiss (10)
  msokolov (10)

See all 62...
Commented
All
  asfimport (1368)
  github-actions[bot] (267)
  jpountz (139)
  mikemccand (126)
  rmuir (96)
  benwtrent (82)
  msokolov (80)

See all 308...
User
All
  asfimport (1810)
  github-actions[bot] (319)
  mikemccand (220)
  jpountz (210)
  rmuir (137)
  benwtrent (121)
  msokolov (100)

See all 464...
Last comment user
All
  asfimport (1319)
  github-actions[bot] (254)
  mikemccand (35)
  jpountz (32)
  rmuir (24)
  benwtrent (17)
  msokolov (16)

See all 164...
Draft
All
  No (295)
  Yes (59)
Component
All
  core (627)
  analysis (156)
  highlighter (46)
  facet (42)
  spatial (41)
  queryparser (29)
  sandbox (22)

See all 23...
Type
All
  enhancement (1199)
  bug (726)
  task (202)
  test (78)
  documentation (22)
Labels
All
  Stale (254)
  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 (2633)
Reporter
All
  rmuir (270)
  mikemccand (154)
  jpountz (125)
  dsmiley (69)
  uschindler (52)
  iverase (43)
  dweiss (41)

See all 759...
Assignee
All
  Unassigned (2391)
  mikemccand (35)
  uschindler (32)
  romseygeek (27)
  dsmiley (22)
  rmuir (15)
  jpountz (11)

See all 44...
  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

#16030 PR: Implement data-blind scalar quantization
10.2 minutes ago  5 comments  0 votes  0 watches  github-actions[bot]kaivalnpmccullochtmikemccandromseygeek
Add an option to the quantization format to enable or disable centering (enabled by default). When centering is disabled we also stop writing the float vectors which can lead to significant ... Special handling is included during merges -- we check that all of the input is in the same ...
    mccullocht 10.2 minutes ago:  I'll try to revive this over the next week or two. > This should work well when incoming vectors are isotropic (all dimensions behave the same i.e ...
    mikemccand 1.4 hours ago:  +1, I love that we are making progress on data-blind quantization. This should work well when incoming vectors are isotropic (all dimensions behave the same i.e. the ... But I think your average trained model won't just produce isotropic embeddings?

#16091 PR: Replace deprecated search(Query, Collector) with CollectorManager in JoinUtil
1.6 hours ago  14 comments  0 votes  0 watches  github-actions[bot]jainankitkjavanna
For the ScoreMode.None + no min/max path, replace the deprecated IndexSearchersearch(Query, ... All per-slice collectors share a single AtomicLongArray sized to the global value count, so memory ... Each slice remaps segment ordinals to global ordinals during collection and atomically ORs the ...
    javanna 1.6 hours ago:  Heads up: I reworked the approach to be less memory costly, at the cost of using atomic data ... That adds some overhead for the sequential case where an executor is not provided to the index ... I find that that is an ok compromise though, because we want search concurrency to be a first class ...
    javanna 2.5 hours ago:  I pushed a different version that is much closer to what the original collector did, and added a ... The memory concerns should addressed by that. I am going to resolve this thread and will request another review round.

#16298: Store IndexedDISI in a separate file from doc values data
2.3 hours ago  1 comments  0 votes  0 watches  romseygeeksgup432
Description Currently, for sparse fields (where not all documents have a value), we write two ... IndexedDISI is a compressed list of docIds which helps in answering question like 'Does document X ... We already separated out skip index into a different file - https://github.com/apache/lucene/pull/ ...
    romseygeek 2.3 hours ago:  > We can either separate out this into a new file or stuff it inside skip index. I prefer the former as it is much clean.

#16510 PR: Implement intoBitSet for NotDocIdSet and IndexSortSortedNumericDocValuesRangeQuery
5.9 hours ago  0 comments  0 votes  0 watches  github-actions[bot]kkewwei
Description This PR adds intoBitSet implementations for these two cases, which can avoid ... I’m not sure whether benchmarks are required for these paths. I’d be happy to add them if need

#16092 PR: Add hadamard rotation to vector fields
11.6 hours ago  81 comments  0 votes  0 watches  benwtrentgithub-actions[bot]kaivalnpmccullochtmikemccandshubhamvishuxande
Description I worked with CC(Claude Code; did a great job in all phases from initial impl to ... This address the 2nd item Implement random rotation of vectors and queries. from Data-blind scalar ... I'm opening this to gather community feedback, as it shows promising recall improvements.
    mikemccand 16.1 days ago:  Note: luceneutil PR is merged, so benchmarks can precondition vectors (a way to pre-test before ... @shubhamvishu is there a separate issue open to switch to data-blind quantization? I.e. we don't need to scan the incoming vectors to compute their distributions.
    github-actions[bot] 1.6 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!

#16089 PR: Upgrade DocIdSetBuilder to use FixedBitSet eagerly once exceeding the threshold
13.7 hours ago  12 comments  0 votes  0 watches  epotyomgithub-actions[bot]kkewwei
Description In DocIdSetBuilder, if We know the cost and is large enough, switch the builder to ... . <!
    epotyom 2.2 days ago:  Thanks for adding and running the tests @kkewwei - great results!
    kkewwei 2.4 days ago:  @epotyom Thanks for the detailed explanation. I added a SubHalfIntNRQ benchmark task set in luceneutil(I'd be happy to submit a PR if necessary.) ... https://github.com/kkewwei/luceneutil/commit/2c44e536d3a42b686ed4c77e3c10be0976291bfd The ...

#16496 PR: Redesign ReaderUtil.partitionByLeaf to take int[] and add partitionBy…
17.7 hours ago  17 comments  0 votes  0 watches  github-actions[bot]gsmillermikemccandzihanx
…LeafWithOrdinals for scatter/gather [Disclaimer: I work at Amazon customer facing product ... This is the first building block for a future doc-values retriever (scatter/gather); the retriever ... Tracking issue: 15905 # What changed - **partitionByLeaf(ScoreDoc[], leaves) → partitionByLeaf( ...
    zihanx 18.1 hours ago:  Thanks Greg for the detailed benchmark! While you are working on the benchmark I also asked Claude to run a quick local sanity check ... And packedLong also shows better performance than introSorter and performs pretty close to plain: ...
    gsmiller 18.3 hours ago:  Cool, just pushed those changes (should only have touched the benchmark code, not any of your ... Also posting the results I got from running the benchmark here. It's really interesting (to me at least) to see the benchmark validate the merit of the packed-long ...

[16.1 msec search, 17.1 msec total]