Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. WARN --- [s-shard-locks-1] c.a.s.d.AmazonDynamoDBLockClient :
  2. Could not acquire lock because of a client side failure in talking to DDB
  3. com.amazonaws.services.dynamodbv2.model.ProvisionedThroughputExceededException:
  4. The level of configured provisioned throughput for the table was exceeded. Consider increasing your provisioning level with the UpdateTable API. (Service: AmazonDynamoDBv2; Status Code: 400; Error Code: ProvisionedThroughputExceededException
  5. ...
  6. at org.springframework.integration.aws.lock.DynamoDbLockRegistry$DynamoDbLock.doLock(DynamoDbLockRegistry.java:504)
  7.  
  8. @StreamListener(Channels.OUR_CHANNEL)
  9. fun consumeThing(Thing: MutableMap<Any, Any>) {
  10. log.info("thing received: {}.", thing)
  11. // some methods to write it to our own datbase
  12. }
  13.  
  14. spring:
  15. cloud:
  16. stream:
  17. defaultBinder: kinesis
  18. bindings:
  19. thingsChannel:
  20. group: aGroup
  21. destination: aDestionation
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement