The docs say that there are 50,000 free Read, Write, and Small Operations to the datastore.
I guess read and write are obvious, but what falls under the “small ops” category? If I ran a query would it be a small or read operation?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here’s the documentation on this. As I understand it, queries by key are considered “small operations,” so a query for entities, a query for keys, and creating a new key all deplete the small operations quota.
A query is both a small and read operation: it costs 1 read + 1 small per entity retrieved.