We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92ea0e0 commit b4c1526Copy full SHA for b4c1526
1 file changed
generate_mass_data.sh
@@ -6,10 +6,6 @@ table_name="mass-data"
6
7
aws dynamodb create-table --table-name "${table_name}" --attribute-definitions AttributeName=id,AttributeType=S --key-schema AttributeName=id,KeyType=HASH --billing-mode PAY_PER_REQUEST --endpoint-url http://127.0.0.1:8002
8
9
-#for ((index = 0 ; index < num_items ; index++)); do
10
-# aws dynamodb put-item --table-name "${table_name}" --item "{\"id\": {\"S\": \"$(uuidgen)\"}}" --endpoint-url http://127.0.0.1:8002
11
-#done
12
-
13
items_preamble="{\"${table_name}\": ["
14
items_middle=""
15
items_ending=']}'
0 commit comments