LoginSignup
0
0

More than 5 years have passed since last update.

DynamoDB CLI の Scan での --page-size とは何か

Posted at

表題の件が Document( http://docs.aws.amazon.com/cli/latest/reference/dynamodb/scan.html ) に

--page-size (integer)
  The size of each page.

としか書いておらず。単位が書いていない。

Default 1MB ということなので、下記で試した所、同じような Consumed Capacity になったので、おそらく KiloByte なのだろう。

aws dynamodb scan --table-name TABLENAME --page-size 1024 --return-consumed-capacity TOTAL --filter-expression "created_at >= :created_at" --expression-attribute-values '{":created_at":{"N":"1452356100"}}'
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0