Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

couchbase-index-manager

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

couchbase-index-manager

Manage Couchbase indexes during the CI/CD process

  • 0.2.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
decreased by-91.67%
Maintainers
1
Weekly downloads
 
Created
Source

couchbase-index-manager

Build Status npm version

Overview

Provides a command-line interface to manage Couchbase indexes, synchronizing them to index definitions provided in files. It is intended to be used as part of a CI/CD pipeline, or to assist with local development.

It also provides an API which may be used by importing a node module.

Common parameters

  • -c couchbase://xxx - Couchbase cluster, defaults to localhost
  • -u username - Username to connect to the Couchbase cluster
  • -p password - Password to connect to the Couchbase cluster
  • -q - Quiet output, only prints errors and warnings
  • --no-rbac - Disable RBAC, required to connect to 4.x clusters
  • --no-color - Suppress color in output

Sync Command

The sync command executes an index synchronization

couchbase-index-manager [common-options] sync [sync-options] <bucketName> <path...>

bucketName should be the name of the bucket to sync, and path is the path to the index definitions. path may be either a single YAML or JSON file, or a directory containing multiple files. Multiple paths may also be provided, they will be processed in order.

Supply "-" as the path to process definitions from stdin. JSON input will be assumed if it starts with a curly brace, otherwise it will be parsed as YAML.

cat definitions.yaml | couchbase-index-manager -c couchbase://node -u Administrator -p password sync beer-sample -

Note: --force is assumed if processing from stdin.

Options

  • -f - Skip the configuration prompt, just run the sync (useful for scripting)
  • --dry-run - Just output the plan, don't make any changes
  • --safe - Don't drop any existing indexes, only create new ones
  • -t 30 - Seconds to wait for index build to complete, 0 for infinite (default 5m)
  • --bucket-password password - For 4.x clusters, provides the bucket password for secure buckets

Examples

couchbase-index-manager -c couchbase://localhost -u Administrator -p password sync beer-sample ./directory/
couchbase-index-manager -c couchbase://localhost -u Administrator -p password sync beer-sample ./directory/file.yaml
couchbase-index-manager -c couchbase://localhost -u Administrator -p password sync beer-sample ./directory/file.json

Definition Files

Definition files may be written in either JSON or YAML. The define the name of the index, the columns to be index, and may also contain other options.

When YAML is used, multiple definitions may be provided in a single file, separated by a line of dashes.

name: beer_primary
is_primary: true
---
name: BeersByAbv
index_key:
- abv
condition: (`type` = 'beer')
num_replica: 0
---
name: BeersByIbu
index_key:
- ibu
condition: (`type` = 'beer')
num_replica: 0
---
name: OldIndex
lifecycle:
  drop: true
FieldRequiredDescription
nameYName of the index.
is_primaryNTrue for a primary index.
index_keyNArray of index keys. May be attributes of documents deterministic functions.
conditionNCondition for the WHERE clause of the index.
num_replicaNDefaults to 0, number of index replicas to create.
nodesNList of nodes for index placement. Automatic placement is used if not present.
lifecycle.dropNIf true, drops the index if it exists.

A primary index must not have index_key or condition properties. A secondary index must have values in the index_key array. Additionally, there may not be more than one primary index in the set of definitions.

If nodes and num_replica are both present, then num_replica must be the number of nodes minus one.

Overrides

When deploying to multiple environments, there may be variations in index definitions. For example, you may have a different number of replicas or a different list of node assignments. To support this, you may also apply overrides to the index definitions.

Overrides are processed in the order they are found, and can only override index definitions that with the same name. The index definition must also be found before the override. Any field which is not supplied on the override will be skipped, leaving the original value unchanged. The exception is nodes and num_replica, updating one will automatically adjust the other field.

FieldRequiredDescription
typeYAlways "override".
nameYName of the index.
is_primaryNTrue for a primary index.
index_keyNArray of index keys. May be attributes of documents deterministic functions.
conditionNCondition for the WHERE clause of the index.
num_replicaNNumber of index replicas to create.
nodesNList of nodes for index placement.
lifecycle.dropNIf true, drops the index if it exists.
post_processNOptional Javascript function body which may further alter the index definition. "this" will be the index definition.

Example

type: override
name: BeersByAbv
num_replica: 2
---
type: override
name: BeersByIbu
post_process: |
  this.num_replicas += 2;

Updating Indexes

It is important that couchbase-index-manager be able to recognize when indexes are updated. Couchbase Server performs certain normalizations on both index_key and condition, meaning that the values in Couchbase may be slightly different than the values submitted when the index is created.

Therefore, it is important that the definition files be created with normalization in mind. Make sure the definitions include the already normalized version of the keys and condition, otherwise couchbase-index-manager may drop and recreate the index on each run.

Dropping Indexes

If an index is removed from the definition files, it is not dropped. This prevents different CI/CD processes from interfering with each other as they manage different indexes. To drop an index, leave the definition in place but set lifecycle.drop to true.

Replicas and Couchbase Server 4.X

Replicas are emulated on Couchbase Server 4.X by creating multiple indexes. If num_replica is greater than 0, the additional indexes are named with the suffix _replicaN, where N starts at 1. For example, an index with 2 replicas named MyIndex will have 3 indexes, MyIndex, MyIndex_replica1, and MyIndex_replica2.

Note that the nodes list is only respected during index creation, indexes will not be moved between nodes if they already exist.

Replicas and Couchbase Server 5

Currently, it isn't possible to detect replicas via queries to "system:indexes". Therefore, num_replica is only respected during index creation. Changes to num_replica on existing indexes will be ignored.

Note that the nodes list is only respected during index creation, indexes will not be moved between nodes if they already exist.

Docker Image

A Docker image for running couchbase-index-manager is available at https://hub.docker.com/r/btburnett3/couchbase-index-manager.

docker run --rm -it -v ./:/definitions btburnett3/couchbase-index-manager -c couchbase://cluster -u Administrator -p password sync beer-sample /definitions

Keywords

FAQs

Package last updated on 28 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc