m3ctl/

directory
v1.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 7, 2021 License: Apache-2.0

README

M3DB CLI Tool

This is a CLI tool to do some things that may be desirable for cluster introspection, or for operational purposes.

Where configuration data is required its provided via YAML.

You can:

  • create a database per the simplified database create API
  • list namespaces
  • delete namespaces
  • list placements
  • delete placements
  • add nodes
  • remove nodes

NOTE: This tool can delete namespaces and placements. It can be quite hazardous if used without adequate understanding of your m3db cluster's topology, or without a decent understanding of how m3db works.

Examples

# show help
m3ctl -h
# create a database
m3ctl apply -f ./database/examples/dbcreate.yaml
# list namespaces
m3ctl get ns
# delete a namespace
m3ctl delete ns -id default
# list placements
m3ctl get pl
# point to some remote and list namespaces
m3ctl -endpoint http://localhost:7201 get ns
# check the namespaces in a kubernetes cluster
# first setup a tunnel via kubectl port-forward ... 7201 
m3ctl -endpoint http://localhost:7201 get ns
# list the ids of the placements
m3ctl -endpoint http://localhost:7201 get pl | jq .placement.instances[].id

Some example yaml files for the "apply" subcommand are provided in the yaml/examples directory. Here's one to initialize a topology:

---
operation: init
num_shards: 64
replication_factor: 1
instances:
  - id: nodeid1
    isolation_group: isogroup1
    zone: etcd1
    weight: 100
    endpoint: node1:9000
    hostname: node1
    port: 9000
  - id: nodeid2
    isolation_group: isogroup2
    zone: etcd1
    weight: 100
    endpoint: node2:9000
    hostname: node2
    port: 9000
  - id: nodeid3
    isolation_group: isogroup3
    zone: etcd1
    weight: 100
    endpoint: node3:9000
    hostname: node3
    port: 9000

See the examples directories below.

References

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL