Java删除dynamodb中的所有项目

时间:2018-10-17 12:11:45

标签: java amazon-dynamodb

我正在尝试删除dynamodb中我表中的所有项目,但是不起作用。

    try {
        ScanRequest scanRequest = new ScanRequest().withTableName(table);
        ScanResult scanResult = null;

        do {
            if (Check.nonNull(scanResult)) {
                scanRequest.setExclusiveStartKey(scanResult.getLastEvaluatedKey());
            }

            scanResult = client.scan(scanRequest);

            scanResult.getItems().forEach((Item) -> {
                String n1 = Item.get("n1").toString();
                String n2 = tem.get("n2").toString();
                DeleteItemSpec spec = new DeleteItemSpec().withPrimaryKey("n1", n1, "n2", n2);
                dynamodb.getTable(table).deleteItem(spec);
            });
        } while (Check.nonNull(scanResult.getLastEvaluatedKey()));
    } catch (Exception e) {
        throw new BadRequestException(e);
    }

n1是我的主分区键

n2是我的主要排序键

3 个答案:

答案 0 :(得分:3)

从DynamoDB删除所有项目的最佳方法是删除表并重新创建它。

否则,将使用大量的读取容量和写入容量单位,这会花费您的钱。

删除并重新创建表是最好的方法。

答案 1 :(得分:1)

PREAMBLE:虽然扫描操作很昂贵,但我需要这个答案来初始化测试场景(低容量)的表。该表是由另一个进程创建的,我需要该表上的测试场景,因此我无法删除和重新创建该表。

答案: 给定:

  • DynamoDbClient 数据库

  • 静态字符串 TABLE_NAME

  • 静态字符串 HASH_KEY

  • 静态字符串 SORT_KEY

     ScanIterable scanIterable = db.scanPaginator(ScanRequest.builder()
             .tableName(TABLE_NAME)
             .build());
     for(ScanResponse scanResponse:scanIterable){
         for( Map<String, AttributeValue> item: scanResponse.items()){
             Map<String,AttributeValue> deleteKey = new HashMap<>();
             deleteKey.put(HASH_KEY,item.get(HASH_KEY));
             deleteKey.put(SORT_KEY,item.get(SORT_KEY));
             db.deleteItem(DeleteItemRequest.builder()
                     .tableName(TRANSACTION_TABLE_NAME)
                     .key(deleteKey).build());
         }
     }
    

答案 2 :(得分:0)

要首先删除表中的所有项目,您需要对表执行扫描操作,这将导致您出现扫描结果。在sacnoutcome上使用带有主键及其主键值的迭代器循环,这将是从表中删除所有项目的一种方法。希望这段代码对您有用。谢谢

Table table = dynamoDB.getTable(your_table);
ItemCollection<ScanOutcome> deleteoutcome = table.scan();
Iterator<Item> iterator = deleteoutcome.iterator();

while (iterator.hasNext()) {
    your_table.deleteItem("PrimaryKey" , iterator.next().get("primary key value"));
}