Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: couchbase/indexing
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: couchbase/indexing
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: unstable
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 14 commits
  • 57 files changed
  • 4 contributors

Commits on Jan 29, 2026

  1. MB-68533 handle partition prune for inst in training

    Change-Id: I3615788edf70aa454d5ee674b4bd132716420943
    Signed-off-by: Dhruvil Shah <dsdruvil8@gmail.com>
    NightWing1998 committed Jan 29, 2026
    Configuration menu
    Copy the full SHA
    2865ca7 View commit details
    Browse the repository at this point in the history
  2. MB-68507 Reduce build progress logging frequency in shard rebalancer

    Limit getBuildProgress logging from every 5 seconds to every 5 minutes
    to reduce log flooding and thus avoiding log rollover in case of large number of instances and long rebalance phases. The function is still called every 5 seconds for progress tracking, but log messages are only emitted every 5 minutes.
    
    + Add lastBuildProgressLogTime field to ShardRebalancer struct
    + Update getBuildProgress to check time elapsed since last log
    + First log happens immediately, subsequent logs every 5 minutes
    
    Change-Id: I47d2be8bde9e14d9d442b7c0fce1d5b43630ad0f
    devanshsa5 committed Jan 29, 2026
    Configuration menu
    Copy the full SHA
    7da9bc0 View commit details
    Browse the repository at this point in the history
  3. MB-70200 Add helper for sparse vector generation

    Change-Id: I1fc54584516e7e62c14fe5cd0e79a9fe9fa50b97
    deepkaran committed Jan 29, 2026
    Configuration menu
    Copy the full SHA
    fa90d82 View commit details
    Browse the repository at this point in the history
  4. MB-70200 Sparse vector codebook

    This patch mainly defines which methods will be implemented for sparse
    codebook and provides implementation for some of the methods.
    
    Future patches will implement the remaining methods.
    
    Change-Id: If12605ad23342fb3e887d30f585cea61c8c95573
    deepkaran committed Jan 29, 2026
    Configuration menu
    Copy the full SHA
    dc3e58d View commit details
    Browse the repository at this point in the history
  5. MB-70200 Add unit test for sparse codebook

    Change-Id: I32b2ce622e9935c49de31f8b52c1ec383694e0b8
    deepkaran committed Jan 29, 2026
    Configuration menu
    Copy the full SHA
    e3aa6fa View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2026

  1. MB-70219: Add sparse vector data to system:indexes

    * "index_key": [
            "`gender`",
            "`sift` SPARSE VECTOR",
            "`docnum`"
       ],
    *  "with": {
            "description": "IVF256",
            "num_partition": 1,
            "num_replica": 0,
            "retain_deleted_xattr": false,
            "scan_nprobes": 1,
            "train_list": 10000
       }
    * "definition": "CREATE INDEX `idx_sift10k` ON `default`(`gender`,
        `sift` SPARSE VECTOR,`docnum`) WITH {  \"defer_build\":true,
            \"description\":\"IVF256\",
            \"train_list\":10000 }",
    
    Change-Id: I32af5825017f32e0193a26105ee60b7df42ad611
    ksaikrishnateja committed Jan 30, 2026
    Configuration menu
    Copy the full SHA
    0d9d06b View commit details
    Browse the repository at this point in the history
  2. MB-100 update docker scripts to use env vars

    use RELEASE and MANIFEST env vars over hard coded values
    
    Change-Id: I757ad83271bab5e2eb7acc1407862034e6f81d86
    Signed-off-by: Dhruvil Shah <dsdruvil8@gmail.com>
    NightWing1998 committed Jan 30, 2026
    Configuration menu
    Copy the full SHA
    912b53c View commit details
    Browse the repository at this point in the history
  3. MB-100 add golangci-lint to our CI scripts

    Change-Id: Iaa7c2399c39e82aba86a272d4448c4d39b2cdc01
    Signed-off-by: Dhruvil Shah <dsdruvil8@gmail.com>
    NightWing1998 committed Jan 30, 2026
    Configuration menu
    Copy the full SHA
    746e5ed View commit details
    Browse the repository at this point in the history
  4. MB-100 add lint as a new mode for CI

    Change-Id: I6ed2e09cfc50727c025bc558f79fccf5168cfa25
    Signed-off-by: Dhruvil Shah <dsdruvil8@gmail.com>
    NightWing1998 committed Jan 30, 2026
    Configuration menu
    Copy the full SHA
    bbe439a View commit details
    Browse the repository at this point in the history
  5. MB-100 add go paths in linter

    Change-Id: I962edc3f98358ae5a9b30e3c5eed4f6c5e82cc84
    Signed-off-by: Dhruvil Shah <dsdruvil8@gmail.com>
    NightWing1998 committed Jan 30, 2026
    Configuration menu
    Copy the full SHA
    74346d5 View commit details
    Browse the repository at this point in the history
  6. MB-100 golangci-lint path fix

    Change-Id: Ice1f6bae5302bd5ee6ebb64c2c2089a503e0c840
    Signed-off-by: Dhruvil Shah <dsdruvil8@gmail.com>
    NightWing1998 committed Jan 30, 2026
    Configuration menu
    Copy the full SHA
    71fa37e View commit details
    Browse the repository at this point in the history
  7. MB-100 update golangci to only consider HEAD~ changes

    Change-Id: I748ea7ff47d4ba12dcee41ad09a85f1bfefdb755
    Signed-off-by: Dhruvil Shah <dsdruvil8@gmail.com>
    NightWing1998 committed Jan 30, 2026
    Configuration menu
    Copy the full SHA
    389cdcc View commit details
    Browse the repository at this point in the history
  8. MB-100 add nolint build flags to files with typecheck issues

    many legacy/tools files have compilation issues; add a build
    flag `nolint` to ignore type check errors in linter
    
    Change-Id: Ife93b3b038725f5e1ed182f085ac27f1d903f047
    Signed-off-by: Dhruvil Shah <dsdruvil8@gmail.com>
    NightWing1998 committed Jan 30, 2026
    Configuration menu
    Copy the full SHA
    6d6f807 View commit details
    Browse the repository at this point in the history
  9. MB-100 dolint update for one run per repo

    Change-Id: Ib9d246390b689e45adfca305973ad8eba52e046a
    Signed-off-by: Dhruvil Shah <dsdruvil8@gmail.com>
    NightWing1998 committed Jan 30, 2026
    Configuration menu
    Copy the full SHA
    ed3d372 View commit details
    Browse the repository at this point in the history
Loading