使用 Cloudformation 创建具有复合主键的 DynamoDB

Posted

技术标签:

【中文标题】使用 Cloudformation 创建具有复合主键的 DynamoDB【英文标题】:Using Cloudformation to Create DynamoDB with composite primary key 【发布时间】:2017-12-13 17:32:33 【问题描述】:

通过命令行或在线 API,我可以轻松创建“复合主键”,但是当我尝试使用 CloudFormation 为我完成这项工作时,我看不到任何 JSON/YAML 可以让我设置称为“复合主键”的东西。语言完全不同,所以我希望有人可以指导我如何使用 Cloudformation 创建这样的密钥。

我的最佳猜测类似于以下内容,我希望复合键同时包含 userId 和 noteId:

  Resources:
    usersTable:
      Type: AWS::DynamoDB::Table
      Properties:
        TableName: notes_serverless
        AttributeDefinitions:
          - AttributeName: userId
            AttributeType: S
          - AttributeName: noteId
            AttributeType: S
        KeySchema:
          - AttributeName: userId
            KeyType: HASH
          - AttributeName: noteId
            KeyType: RANGE
        ProvisionedThroughput:
          ReadCapacityUnits: 1
          WriteCapacityUnits: 1

【问题讨论】:

你能显示你用来创建具有复合主键的表的命令吗? 我只需要正确的 YAML 语法。我实际上是使用无服务器框架来部署云形成代码。在 Web API 上有一个简单的复选框供您选中。 【参考方案1】:

这是使用分区键和排序键创建 DynamoDB 表的 YAML 语法。

OP 上的语法几乎是正确的。我刚刚用正确的引号格式化并重新排列了属性的顺序。

AWSTemplateFormatVersion: "2010-09-09"
Resources: 
  usersTable: 
    Type: "AWS::DynamoDB::Table"
    Properties: 
      AttributeDefinitions: 
        - 
          AttributeName: "userId"
          AttributeType: "S"
        - 
          AttributeName: "noteId"
          AttributeType: "S"
      KeySchema: 
        - 
          AttributeName: "userId"
          KeyType: "HASH"
        - 
          AttributeName: "noteId"
          KeyType: "RANGE"
      ProvisionedThroughput: 
        ReadCapacityUnits: "5"
        WriteCapacityUnits: "5"
      TableName: "notes_serverless"

【讨论】:

以上是关于使用 Cloudformation 创建具有复合主键的 DynamoDB的主要内容,如果未能解决你的问题,请参考以下文章

尝试插入具有复合主键的记录时出错

Spring用外键保存复合主键

使用 Django 的复合/复合主/唯一键

如何使用 CloudFormation 创建具有集成 RDS 的 AWS Elasticbeanstalk 应用程序?

复合主键?还是具有唯一复合索引的自动增量主键? [关闭]

使用 Spring-data-cassandra 查询具有复合主键的表