本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。
使用 Amazon CLI 连接到 Amazon Keyspaces
您可以使用 Amazon Command Line Interface (Amazon CLI) 来控制多个 Amazon 通过命令行提供服务,并通过脚本实现自动化。有了 Amazon Keyspaces,你可以使用 Amazon CLI 用于数据定义语言 (DDL) 操作,例如创建表。此外,您还可以使用基础设施即代码 (IaC) 服务和工具,例如 Amazon CloudFormation 还有 Terraform。
在你可以使用之前 Amazon CLI 使用 Amazon Keyspaces,您必须获得访问密钥 ID 和私有访问密钥。有关更多信息,请参阅 创建和配置 Amazon Amazon Keyspaces 的凭证。
有关可用于 Amazon Keyspaces 的所有命令的完整列表,请参阅 Amazon CLI,请参阅 Amazon CLI 命令参考
正在下载并配置 Amazon CLI
这些区域有: Amazon CLI 可在以下网址获得https://www.amazonaws.cn/cli
使用 Amazon CLI 使用 Amazon Keyspaces
命令行格式包含 Amazon Keyspaces 操作名称,后跟该操作的参数。这些区域有: Amazon CLI 支持参数值的简写语法,以及。JSON以下 Amazon Keyspaces 示例使用 Amazon CLI 速记语法。有关更多信息,请参阅使用速记语法和 Amazon CLI.
以下命令可创建一个名为 catalog 的密钥空间。
aws keyspaces create-keyspace --keyspace-name 'catalog'
该命令在输出中返回资源 Amazon 资源名称 (ARN)。
{ "resourceArn": "arn:aws:cassandra:us-east-1:111222333444:/keyspace/catalog/" }
要确认密钥空间目录是否存在,您可以使用以下命令。
aws keyspaces get-keyspace --keyspace-name 'catalog'
该命令将在输出中返回以下值。
{ "keyspaceName": "catalog", "resourceArn": "arn:aws:cassandra:us-east-1:111222333444:/keyspace/catalog/" }
以下命令可创建一个名为 book_awards 的表。该表的分区键由 year
和 award
两列组成,聚类键由 category
和 rank
两列组成,两个聚类列均使用升序排序。(为便于阅读,本部分中的长命令分行显示。)
aws keyspaces create-table --keyspace-name 'catalog' --table-name 'book_awards' --schema-definition 'allColumns=[{name=year,type=int},{name=award,type=text},{name=rank,type=int}, {name=category,type=text}, {name=author,type=text},{name=book_title,type=text},{name=publisher,type=text}], partitionKeys=[{name=year},{name=award}],clusteringKeys=[{name=category,orderBy=ASC},{name=rank,orderBy=ASC}]'
该命令的输出结果如下。
{ "resourceArn": "arn:aws:cassandra:us-east-1:111222333444:/keyspace/catalog/table/book_awards" }
要确认表的元数据和属性,您可以使用以下命令。
aws keyspaces get-table --keyspace-name 'catalog' --table-name 'book_awards'
此命令将返回以下输出。
{ "keyspaceName": "catalog", "tableName": "book_awards", "resourceArn": "arn:aws:cassandra:us-east-1:111222333444:/keyspace/catalog/table/book_awards", "creationTimestamp": 1645564368.628, "status": "ACTIVE", "schemaDefinition": { "allColumns": [ { "name": "year", "type": "int" }, { "name": "award", "type": "text" }, { "name": "category", "type": "text" }, { "name": "rank", "type": "int" }, { "name": "author", "type": "text" }, { "name": "book_title", "type": "text" }, { "name": "publisher", "type": "text" } ], "partitionKeys": [ { "name": "year" }, { "name": "award" } ], "clusteringKeys": [ { "name": "category", "orderBy": "ASC" }, { "name": "rank", "orderBy": "ASC" } ], "staticColumns": [] }, "capacitySpecification": { "throughputMode": "PAY_PER_REQUEST", "lastUpdateToPayPerRequestTimestamp": 1645564368.628 }, "encryptionSpecification": { "type": "AWS_OWNED_KMS_KEY" }, "pointInTimeRecovery": { "status": "DISABLED" }, "ttl": { "status": "ENABLED" }, "defaultTimeToLive": 0, "comment": { "message": "" } }
创建具有复杂架构的表时,从JSON文件加载表的架构定义可能会很有帮助。下面是一个示例配置文件。从 schema_definition.zip 下载架构定义示例JSON文件并进行提取schema_definition.json
,记下该文件的路径。在此示例中,架构定义JSON文件位于当前目录中。有关不同的文件路径选项,请参阅如何从文件加载参数。
aws keyspaces create-table --keyspace-name 'catalog' --table-name 'book_awards' --schema-definition '
file://schema_definition.json
'
以下示例说明如何使用名称myTable和附加选项创建简单表。请注意,为提高可读性,命令被分成了多个独立的行。该命令显示了如何创建表以及如何执行以下操作:
设置表的容量模式
为表启用 P oint-in-time 恢复
将表格的默认生存时间 (TTL) 值设置为一年
为表添加两个标签
aws keyspaces create-table --keyspace-name 'catalog' --table-name 'myTable' --schema-definition 'allColumns=[{name=id,type=int},{name=name,type=text},{name=date,type=timestamp}],partitionKeys=[{name=id}]' --capacity-specification 'throughputMode=PROVISIONED,readCapacityUnits=5,writeCapacityUnits=5' --point-in-time-recovery 'status=ENABLED' --default-time-to-live '31536000' --tags 'key=env,value=test' 'key=dpt,value=sec'
此示例说明如何创建一个新表,该表使用客户托管密钥进行加密,并TTL允许您为列和行设置到期日期。要运行此示例,您必须替换客户管理的资源 ARN Amazon KMS 使用您自己的密钥进行密钥并确保 Amazon Keyspaces 可以访问该密钥。
aws keyspaces create-table --keyspace-name 'catalog' --table-name 'myTable' --schema-definition 'allColumns=[{name=id,type=int},{name=name,type=text},{name=date,type=timestamp}],partitionKeys=[{name=id}]' --encryption-specification 'type=CUSTOMER_MANAGED_KMS_KEY,kmsKeyIdentifier=
arn:aws:kms:us-east-1:111222333444:key/11111111-2222-3333-4444-555555555555
' --ttl 'status=ENABLED'