-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add --timeout-millis option to export-pg-from-queries (#77)
* Add --timeout-millis option to export-pg-from-queries, and update docs * Update list of clone instance types * Update docs
- Loading branch information
1 parent
5fb4f7f
commit 8e57ea5
Showing
13 changed files
with
472 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
NAME | ||
neptune-export.sh add-clone - Clone an Amazon Neptune database cluster | ||
|
||
SYNOPSIS | ||
neptune-export.sh add-clone [ --clone-cluster-id <targetClusterId> ] | ||
[ --clone-cluster-instance-type <cloneClusterInstanceType> ] | ||
[ --clone-cluster-replica-count <replicaCount> ] | ||
--source-cluster-id <sourceClusterId> | ||
|
||
OPTIONS | ||
--clone-cluster-id <targetClusterId> | ||
Cluster ID of the cloned Amazon Neptune database cluster | ||
|
||
This option may occur a maximum of 1 times | ||
|
||
|
||
--clone-cluster-instance-type <cloneClusterInstanceType> | ||
Instance type for cloned cluster (by default neptune-export will | ||
use the same instance type as the source cluster) | ||
|
||
This options value is restricted to the following set of values: | ||
db.r4.large | ||
db.r4.xlarge | ||
db.r4.2xlarge | ||
db.r4.4xlarge | ||
db.r4.8xlarge | ||
db.r5.large | ||
db.r5.xlarge | ||
db.r5.2xlarge | ||
db.r5.4xlarge | ||
db.r5.8xlarge | ||
db.r5.12xlarge | ||
db.t3.medium | ||
|
||
This option may occur a maximum of 1 times | ||
|
||
|
||
--clone-cluster-replica-count <replicaCount> | ||
Number of read replicas to add to the cloned cluster (default, 0) | ||
|
||
This option may occur a maximum of 1 times | ||
|
||
|
||
This options value must fall in the following range: 0 <= value <= 15 | ||
|
||
|
||
--source-cluster-id <sourceClusterId> | ||
Cluster ID of the source Amazon Neptune database cluster | ||
|
||
This option may occur a maximum of 1 times | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.