Coder Social home page Coder Social logo

Comments (2)

beyondbill avatar beyondbill commented on September 4, 2024 1

I dig a little bit into the code base and find that request concurrency and # of capacity units seem to be treated as the same thing here.
https://github.com/markitx/dynamo-backup-to-s3/blob/master/lib/dynamo-restore.js#L303

However based on Dynamo docs they are different.

One write capacity unit represents one write per second for an item up to 1 KB in size. If you need to write an item that is larger than 1 KB, DynamoDB will need to consume additional write capacity units. The total number of write capacity units required depends on the item size.

http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ProvisionedThroughput.html

What if some of individual items in my Dynamo are larger than 1KB? Then writing each of them would consume more than 1 write capacity unit, although it just counts for 1 request.

It could explain why my case consumed much more write capacity units than 200.

from dynamo-backup-to-s3.

beyondbill avatar beyondbill commented on September 4, 2024 1

Find something deeper in the code base.
https://github.com/markitx/dynamo-backup-to-s3/blob/master/lib/dynamo-restore.js#L172
It actually bundles 25 items together and then make 1 request using AWS API dynamo.batchWriteItem
https://github.com/markitx/dynamo-backup-to-s3/blob/master/lib/dynamo-restore.js#L299
This will well explain why request body size can easily exceed 1KB. On average one item in our DynamoDB should be easily over 1024/25 bytes

from dynamo-backup-to-s3.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.