AMC reports non-suceccfull read if key not found?

What is the meaning of successful read on AMC?

If it is KeyNotFoundError, will it be successful read?

What other cases do you think can not be successful read?

All errors, including RecordNotFound are extracted from the total and presented as successful.

Im sorry, I’m not very good at English

All errors, including RecordNotFound are extracted from the total and presented as successful.

@ khosrow

You mean presented as NOT successful, right?

For example,

Total: 922.80 TPS
Seccessful: 29.80TPS

the meaning of above is that we make 922 read (transaction) per second, but almost of them (excluding 29.80 TPS) returns some errors (I guesss the error is record not found).

The server gives you total, and various error stats. Hence:

Successful = Total - Errors

In your case with that high rate, most errors are probably record not found.

I exactly understand, thank you.