我需要获取dynamodb表中的确切行数。我是java新手,所以它有点令人困惑。我的理解是你不能使用describe表,因为它只每6小时更新一次。
DynamoDB dynamoDB = new DynamoDB(new AmazonDynamoDBClient(new ProfileCredentialsProvider()));
Table table = dynamoDB.getTable("<table name>");
ScanResult result = new ScanResult();
//不确定这最后一行。谁知道解决方案? 的System.out.println(result.withCount(1));
答案 0 :(得分:0)
以下是获取商品数量的代码。
请注意,当您扫描表格中的所有项目以获取计数时,您可能会花费。希望您不要在包含数百万项的表上运行此代码。
public Long getCountOfItems(String tableName) {
Long numberOfItems = 0L;
try {
ScanResult result = null;
do {
ScanRequest scanRequest = new ScanRequest().withTableName(tableName);
if (result != null) {
scanRequest.setExclusiveStartKey(result.getLastEvaluatedKey());
}
result = dynamoDBClient.scan(scanRequest);
numberOfItems = numberOfItems + result.getItems().size();
} while (result.getLastEvaluatedKey() != null);
} catch (Exception db) {
throw new RuntimeException("Record count couldn't be calculated ...", db);
}
System.out.println(numberOfItems);
return numberOfItems;
}
答案 1 :(得分:0)
由于扫描结果的限制为1MB
,因此有时行数多于返回的行数。因此,只需进行常规扫描并检查结果是否包含LastEvaluatedKey
。如果是这种情况,请继续扫描,但使用setExclusiveStartKey
从最后一条记录的位置开始。
ScanResult scanResult = client.scan(scanRequest);
int total = 0;
while(true)
{
total += scanResult.getScannedCount();
Map<String, AttributeValue> pages = scanResult.getLastEvaluatedKey();
if (pages == null)
break;
scanRequest.setExclusiveStartKey(pages);
scanResult = client.scan(scanRequest);
}