Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/ybm_cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ ybm cluster [flags]

* [ybm](ybm.md) - ybm - Effortlessly manage your DB infrastructure on YugabyteDB Aeon (DBaaS) from command line!
* [ybm cluster cert](ybm_cluster_cert.md) - Get the root CA certificate
* [ybm cluster connection-pooling](ybm_cluster_connection-pooling.md) - Manage Connection Pooling for a cluster
* [ybm cluster create](ybm_cluster_create.md) - Create a cluster
* [ybm cluster db-audit-logging](ybm_cluster_db-audit-logging.md) - Configure Database Audit Logging for your Cluster.
* [ybm cluster db-query-logging](ybm_cluster_db-query-logging.md) - Configure Database Query Logging for your Cluster.
Expand Down
38 changes: 38 additions & 0 deletions docs/ybm_cluster_connection-pooling.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
## ybm cluster connection-pooling

Manage Connection Pooling for a cluster

### Synopsis

Manage Connection Pooling for a cluster

```
ybm cluster connection-pooling [flags]
```

### Options

```
-c, --cluster-name string [REQUIRED] The name of the cluster.
-h, --help help for connection-pooling
```

### Options inherited from parent commands

```
-a, --apiKey string YugabyteDB Aeon account API key
--config string config file (default is $HOME/.ybm-cli.yaml)
--debug Use debug mode, same as --logLevel debug
-l, --logLevel string Select the desired log level format(info). Default to info
--no-color Disable colors in output , default to false
-o, --output string Select the desired output format (table, json, pretty). Default to table
--timeout duration Wait command timeout, example: 5m, 1h. (default 168h0m0s)
--wait Wait until the task is completed, otherwise it will exit immediately, default to false
```

### SEE ALSO

* [ybm cluster](ybm_cluster.md) - Manage cluster operations
* [ybm cluster connection-pooling disable](ybm_cluster_connection-pooling_disable.md) - Disable Connection Pooling for a cluster
* [ybm cluster connection-pooling enable](ybm_cluster_connection-pooling_enable.md) - Enable Connection Pooling for a cluster

36 changes: 36 additions & 0 deletions docs/ybm_cluster_connection-pooling_disable.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
## ybm cluster connection-pooling disable

Disable Connection Pooling for a cluster

### Synopsis

Disable Connection Pooling for a cluster

```
ybm cluster connection-pooling disable [flags]
```

### Options

```
-h, --help help for disable
```

### Options inherited from parent commands

```
-a, --apiKey string YugabyteDB Aeon account API key
-c, --cluster-name string [REQUIRED] The name of the cluster.
--config string config file (default is $HOME/.ybm-cli.yaml)
--debug Use debug mode, same as --logLevel debug
-l, --logLevel string Select the desired log level format(info). Default to info
--no-color Disable colors in output , default to false
-o, --output string Select the desired output format (table, json, pretty). Default to table
--timeout duration Wait command timeout, example: 5m, 1h. (default 168h0m0s)
--wait Wait until the task is completed, otherwise it will exit immediately, default to false
```

### SEE ALSO

* [ybm cluster connection-pooling](ybm_cluster_connection-pooling.md) - Manage Connection Pooling for a cluster

36 changes: 36 additions & 0 deletions docs/ybm_cluster_connection-pooling_enable.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
## ybm cluster connection-pooling enable

Enable Connection Pooling for a cluster

### Synopsis

Enable Connection Pooling for a cluster

```
ybm cluster connection-pooling enable [flags]
```

### Options

```
-h, --help help for enable
```

### Options inherited from parent commands

```
-a, --apiKey string YugabyteDB Aeon account API key
-c, --cluster-name string [REQUIRED] The name of the cluster.
--config string config file (default is $HOME/.ybm-cli.yaml)
--debug Use debug mode, same as --logLevel debug
-l, --logLevel string Select the desired log level format(info). Default to info
--no-color Disable colors in output , default to false
-o, --output string Select the desired output format (table, json, pretty). Default to table
--timeout duration Wait command timeout, example: 5m, 1h. (default 168h0m0s)
--wait Wait until the task is completed, otherwise it will exit immediately, default to false
```

### SEE ALSO

* [ybm cluster connection-pooling](ybm_cluster_connection-pooling.md) - Manage Connection Pooling for a cluster

1 change: 1 addition & 0 deletions docs/ybm_cluster_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ ybm cluster create [flags]
--region-info stringArray Region information for the cluster, provided as key-value pairs. Arguments are region=<region-name>,num-nodes=<number-of-nodes>,vpc=<vpc-name>,num-cores=<num-cores>,disk-size-gb=<disk-size-gb>,disk-iops=<disk-iops> (AWS only). region, num-nodes, num-cores, disk-size-gb are required. Specify one --region-info flag for each region in the cluster.
--preferred-region string [OPTIONAL] The preferred region in a multi region cluster. The preferred region handles all read and write requests from clients.
--default-region string [OPTIONAL] The primary region in a partition-by-region cluster. The primary region is where all the tables not created in a tablespace reside.
--enable-connection-pooling [OPTIONAL] Enable connection pooling for the cluster during creation. Default false.
-h, --help help for create
```

Expand Down
Loading