Question 43 of 307
Single answerYou are deploying a new storage system for your mobile application, which is a media streaming service. You decide the best fit is Google Cloud Datastore. You have entities with multiple properties, some of which can take on multiple values. For example, in the entity 'Movie' the property 'actors' and the property
'tags' have multiple values but the property 'date released' does not. A typical query would ask for all movies with actor= ordered by date_released or all movies with tag=Comedy ordered by date_released. How should you avoid a combinatorial explosion in the number of indexes?
✓AManually configure the index in your index config as follows:


BManually configure the index in your index config as follows:


CSet the following in your entity options: exclude_from_indexes = 'actors, tags'
DSet the following in your entity options: exclude_from_indexes = 'date_published'
✓
Correct Answer: A
Manually configure the index in your index config as follows: <br /> <img src="https://quizcrazepro.co.za/wp-content/uploads/2025/04/0003700001.png" />
▥
Explanation
The correct answer is highlighted above. Review the wording carefully, then use the next question to continue building your understanding of Google certification topics.