-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when re-deploying #32
Comments
Further information: It just doesn't seem to work for me at all. I did a completely clean deploy and it still failed. I'm trying to create and autoscale four DynamoDB tables. Here are some relevant capacities:
- table: TagDynamoDbTable
read:
minimum: 5 # Minimum read capacity
maximum: 1000 # Maximum read capacity
usage: 0.75 # Targeted usage percentage
write:
minimum: 5 # Minimum write capacity
maximum: 1000 # Maximum write capacity
usage: 0.75 # Targeted usage percentage The Dynamo Table: TagDynamoDbTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: mac
AttributeType: S
- AttributeName: timestamp
AttributeType: N
KeySchema:
- AttributeName: mac
KeyType: HASH
- AttributeName: timestamp
KeyType: RANGE
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 1000
StreamSpecification:
StreamViewType: "NEW_IMAGE"
TableName: ${self:provider.environment.DYNAMODB_TAG_TABLE} And the error:
|
@TimMensch ever figure this out? |
Sorry, but this happened long enough ago that I don't recall how I resolved it. I think I ditched all auto-scaling from within |
thanks for the response @TimMensch appreciate it! |
I faced this issue quite a while ago as well. Unlike Tim, however, I am still using this plugin and it seems to be working great. |
I'm seeing this error on deploy:
Considering re-deploying is how I've been testing, this is a problem. Worse, just deleting the table doesn't help. So for now I've had to disable
serverless-dynamodb-autoscaling
so that I can deploy at all.Thoughts?
The text was updated successfully, but these errors were encountered: