Skip to content
This repository was archived by the owner on Jul 14, 2020. It is now read-only.
This repository was archived by the owner on Jul 14, 2020. It is now read-only.

[Question] Batch insert support with Aurora Data Source #17

@sandeepmistry

Description

@sandeepmistry

Is it possible to perform a batch execution insert using AppSync with an Aurora Data Source?

There is a Tutorial: DynamoDB Transaction Resolvers but I could not find the same for Aurora.

Here's an example of a schema I would like to use:

        type LambdaMetric {
          id: ID!
          documentClassificationId: ID!
          timestamp: Int!
          isActive: Boolean!
          stackName: String!
          functionName: String!
          version: Int!
          elapsedTime: Int!
        }

        input LambdaMetricInput {
          documentClassificationId: ID!
          timestamp: Int!
          isActive: Boolean!
          stackName: String!
          functionName: String!
          version: Int!
          elapsedTime: Int!
        }

        type Mutation {
          addLambdaMetrics(input: [LambdaMetricInput!]!): [LambdaMetric!]!
        }

I'm currently using boto3's rds-data batch_execute_statement and would like to port my application to AppSync + Aurora.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions