0
0
Firebasecloud~20 mins

Composite index requirements in Firebase - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Composite Index Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
query_result
intermediate
2:00remaining
What happens if a Firestore query requires a composite index that does not exist?

You run a Firestore query that filters on two fields and orders by a third. The required composite index is missing. What will Firestore do?

AThe query returns an empty result set without error.
BFirestore automatically creates the composite index in the background and runs the query.
CThe query runs but ignores the order by clause.
DFirestore throws an error with a direct link to create the missing composite index.
Attempts:
2 left
💡 Hint

Think about how Firestore helps developers create missing indexes.

🧠 Conceptual
intermediate
2:00remaining
Why are composite indexes required for some Firestore queries?

Firestore requires composite indexes for queries that:

  • Filter on multiple fields
  • Order by fields not included in single-field indexes
  • Use range filters on multiple fields

Which reason best explains why composite indexes are needed?

ATo speed up queries by pre-sorting data on multiple fields together.
BTo reduce Firestore storage costs by combining indexes.
CTo allow queries to run without any network calls.
DTo automatically backup data before queries run.
Attempts:
2 left
💡 Hint

Think about how indexes help databases find data faster.

📝 Syntax
advanced
2:00remaining
Which Firestore index definition JSON correctly defines a composite index on fields 'status' (ascending) and 'createdAt' (descending)?

Choose the valid JSON snippet for a composite index on 'status' ascending and 'createdAt' descending.

A{ "collectionGroup": "orders", "queryScope": "COLLECTION", "fields": [{"fieldPath": "status", "order": "ASC"}, {"fieldPath": "createdAt", "order": "DESC"}] }
B{ "collection": "orders", "fields": [{"fieldPath": "status", "order": "ASCENDING"}, {"fieldPath": "createdAt", "order": "DESCENDING"}] }
C{ "collectionGroup": "orders", "queryScope": "COLLECTION", "fields": [{"fieldPath": "status", "order": "ASCENDING"}, {"fieldPath": "createdAt", "order": "DESCENDING"}] }
D{ "collectionGroup": "orders", "queryScope": "COLLECTION", "fields": [{"fieldPath": "status", "order": "ascending"}, {"fieldPath": "createdAt", "order": "descending"}] }
Attempts:
2 left
💡 Hint

Check the exact property names and values Firestore expects in index definitions.

optimization
advanced
2:00remaining
How can you minimize the number of composite indexes needed for multiple queries on the same collection?

You have several queries on a Firestore collection filtering and ordering by different combinations of fields. What is the best way to reduce the total composite indexes you must create?

ACreate separate composite indexes for each query to avoid conflicts.
BCreate one composite index that includes all fields used in any query, ordered by frequency of use.
CUse only single-field indexes and avoid composite indexes entirely.
DCreate composite indexes only for the most complex queries and let others run without indexes.
Attempts:
2 left
💡 Hint

Think about how composite indexes can cover multiple queries if designed carefully.

🔧 Debug
expert
2:00remaining
Why does this Firestore query fail despite having a composite index defined?

Given a composite index on fields 'category' (ascending) and 'price' (descending), this query filters where category = 'books' and orders by price ascending. Why does it fail?

db.collection('products').where('category', '==', 'books').orderBy('price', 'asc')
AThe composite index order for 'price' is descending but the query orders ascending, causing a mismatch.
BFirestore does not support ordering by fields with equality filters.
CThe query must include an orderBy on 'category' before ordering by 'price'.
DThe composite index must include a filter on 'price' as well.
Attempts:
2 left
💡 Hint

Check if the order directions in the query match the index definition.