I am working on an app engine project with datastore(creating our database),
As per the information give in this link total number of read write operation is listed for different case(Insert ,update and delete),but i am confused how write operation is calculated for modifying index and composite index.
we have below Case scenario in which we have to calculate number of write operation
1 >> Datastore query requires filtering based on single property no complex query [no index defined in datastore-indexes.xml file]
as per example “SELECT * FROM MESSAGE AS MESSAGE ORDER BY timestamp desc"
2>> Datastore query requires filtering based on single property no complex query [index defined on one property in datastore-indexes.xml file ]
as per example “SELECT * FROM MESSAGE AS MESSAGE ORDER BY timestamp desc"
3>> Datastore query requires filtering based on complex query [index defined for complex query defind in datastore-indexes.xml file ]
as per example "“SELECT * FROM MESSAGE AS MESSAGE WHERE req_id="xyz123" ORDER BY timestamp desc"
Note::for example purpose i have taken this statement “SELECT * FROM MESSAGE AS MESSAGE ORDER BY timestamp desc".This jpql query makes a get(1 read operation) http request in order to retrieve data from datastore.
Question
For above case scenario how New Entity Put write operation will be counted ?[ New Entity Put " 2 writes + 2 writes per indexed property value + 1 write per composite index value"]
thanks in advance!!!!