Dynamo DB Java SDK: DescribeTable response is showing wrong item count

0

I am working on a client program to just read the tables metadata. I am using the Describe table java API to do the same: val describeTableRequest = DescribeTableRequest.builder() .tableName(tableName) .build() I am running this request again after adding an item into the table, but the DescribeTableResponse is still showing the item count as 0. I waited for 30 mins and its still the same 0. Below is the code snippet for the same: `val describeTableResponse = client.describeTable(describeTableRequest) val tableDescription = describeTableResponse.table()

    println("Table Name: ${tableDescription.tableName()}")
    println("Table Status: ${tableDescription.tableStatus()}")
    println("Items count: ${tableDescription.itemCount()}")`

Client is basically created using the below snippet: val client = DynamoDbClient.builder() .credentialsProvider { AwsBasicCredentials.create(accessKey, secretKey) } .region(Region.of(region)) .build()

Please note that the Scan Request-Response is showing the right count but it is scanning the whole table and is not needed for me. I just need the basic metadata of the table.

Please let me know if I am missing anything here.

Abraham
feita há 8 meses280 visualizações
1 Resposta
1
Resposta aceita

That item count is updated approximately every six hours. In the Console where you see the item count you get a note to this effect.

Console screen shot

If you want to track counts over time, there's a blog discussing that.

AWS
respondido há 8 meses
profile picture
ESPECIALISTA
avaliado há 8 meses

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas