使用 Cassandra Go 客户端驱动程序以编程方式访问亚马逊 Keyspaces - Amazon Keyspaces (for Apache Cassandra)
Amazon Web Services 文档中描述的 Amazon Web Services 服务或功能可能因区域而异。要查看适用于中国区域的差异,请参阅 中国的 Amazon Web Services 服务入门 (PDF)

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

使用 Cassandra Go 客户端驱动程序以编程方式访问亚马逊 Keyspaces

本节说明了如何使用 Go 客户端驱动程序连接到 Amazon Keyspaces。要向用户和应用程序提供凭证以编程方式访问 Amazon Keyspaces 资源,您可以执行以下任一操作:

  • 创建与特定Amazon Identity and Access Management (IAM) 用户关联的服务特定凭证。

  • 为了增强安全性,我们建议为所有Amazon服务中使用的 IAM 用户和角色创建 IAM 访问密钥。适用于 Cassandra 客户端驱动程序的 Amazon Keyspaces Sigv4 身份验证插件使您能够使用 IAM 访问密钥而不是用户名和密码对对 Amazon Keyspaces 的调用进行身份验证。有关更多信息,请参阅如何创建和配置AmazonAmazon Keyspaces 凭证

开始前的准备工作

您需要完成以下任务才能开始。

Amazon Keyspaces 要求使用传输层安全 (TLS) 来帮助保护与客户端的连接。要使用 TLS 连接到亚马逊Keyspaces,您需要下载亚马逊数字证书并将 Python 驱动程序配置为使用 TLS。

使用以下命令下载 Starfield 数字证书并保存在sf-class2-root.crt本地或主目录中。

curl https://certs.secureserver.net/repository/sf-class2-root.crt -O
注意

您还可以使用亚马逊数字证书连接到 Amazon Keyspaces,如果您的客户成功连接到 Amazon Keyspaces,则可以继续这样做。Starfield 证书为使用旧证书颁发机构的客户端提供了额外的向后兼容性。

curl https://certs.secureserver.net/repository/sf-class2-root.crt -O

使用适用于 Apache Cassandra 的 Gocql 驱动程序和特定于服务的凭证Connect 到 Amazon Keyspaces

  1. 为您的应用程序创建一个目录。

    mkdir ./gocqlexample
  2. 导航到新目录。

    cd gocqlexample
  3. 为您的应用程序创建一个文件。

    touch cqlapp.go
  4. 下载 Go 驱动程序。

    go get github.com/gocql/gocql
  5. 将以下示例代码添加到 cqlapp.go 文件。

    package main import ( "fmt" "github.com/gocql/gocql" "log" ) func main() { // add the Amazon Keyspaces service endpoint cluster := gocql.NewCluster("cassandra.us-east-2.amazonaws.com") cluster.Port=9142 // add your service specific credentials cluster.Authenticator = gocql.PasswordAuthenticator{ Username: "ServiceUserName", Password: "ServicePassword"} // provide the path to the sf-class2-root.crt cluster.SslOpts = &gocql.SslOptions{ CaPath: "path_to_file/sf-class2-root.crt", EnableHostVerification: false, } // Override default Consistency to LocalQuorum cluster.Consistency = gocql.LocalQuorum cluster.DisableInitialHostLookup = false session, err := cluster.CreateSession() if err != nil { fmt.Println("err>", err) } defer session.Close() // run a sample query from the system keyspace var text string iter := session.Query("SELECT keyspace_name FROM system_schema.tables;").Iter() for iter.Scan(&text) { fmt.Println("keyspace_name:", text) } if err := iter.Close(); err != nil { log.Fatal(err) } session.Close() }

    使用说明:

    1. "path_to_file/sf-class2-root.crt"替换为第一步中保存的证书路径。

    2. 按照中的步骤,确保ServiceUserNameServicePassword与您在生成服务特定凭证时获得的用户名和密码相匹配生成特定服务的凭证

    3. 有关可用终端节点的列表,请参阅Amazon Keyspaces 服务端点

  6. 构建程序。

    go build cqlapp.go
  7. 运行程序。

    ./cqlapp

使用 Apache Cassandra 的 Go 驱动程序和 SigV4 身份验证插件Connect 亚马逊 Keyspaces

以下代码示例显示了如何使用开源 Go 驱动程序的 Sigv4 身份验证插件来访问 Amazon Keyspaces(适用于 Apache Cassandra)。

如果您尚未执行此操作,请按照步骤为您的 IAM 用户或角色创建凭证如何创建和配置AmazonAmazon Keyspaces 凭证

将 Go Sigv4 身份验证插件从GitHub 存储库添加到您的应用程序。该插件支持 Cassandra 的开源 Go 驱动程序的 4.x 版本,并且依赖Amazon SDK for Go。

$ go mod init $ go get github.com/aws/aws-sigv4-auth-cassandra-gocql-driver-plugin

在此代码示例中,Amazon Keyspaces 终端节点由Cluster类表示。它使用集群AwsAuthenticator的 for 身份验证器属性来获取证书。

package main import ( "fmt" "github.com/aws/aws-sigv4-auth-cassandra-gocql-driver-plugin/sigv4" "github.com/gocql/gocql" "log" ) func main() { // configuring the cluster options cluster := gocql.NewCluster("cassandra.us-west-2.amazonaws.com") cluster.Port=9142 var auth sigv4.AwsAuthenticator = sigv4.NewAwsAuthenticator() auth.Region = "us-west-2" auth.AccessKeyId = "AKIAIOSFODNN7EXAMPLE" auth.SecretAccessKey = "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" cluster.Authenticator = auth cluster.SslOpts = &gocql.SslOptions{ CaPath: "path_to_file/sf-class2-root.crt", EnableHostVerification: false, } cluster.Consistency = gocql.LocalQuorum cluster.DisableInitialHostLookup = false session, err := cluster.CreateSession() if err != nil { fmt.Println("err>", err) return } defer session.Close() // doing the query var text string iter := session.Query("SELECT keyspace_name FROM system_schema.tables;").Iter() for iter.Scan(&text) { fmt.Println("keyspace_name:", text) } if err := iter.Close(); err != nil { log.Fatal(err) } }

使用说明:

  1. "path_to_file/sf-class2-root.crt"替换为第一步中保存的证书路径。

  2. 确保AccessKeyIdSecretAccessKey与您使用获得的访问密钥和私有访问密钥相匹配AwsAuthenticator。有关更多信息,请参阅中的配置Amazon SDK for Go Amazon SDK for Go

  3. 要将访问密钥存储在代码之外,请参阅中的最佳实践如何管理 IAM 用户的访问密钥

  4. 有关可用终端节点的列表,请参阅Amazon Keyspaces 服务端点