0
0
Firebasecloud~10 mins

Composite index requirements in Firebase - Step-by-Step Execution

Choose your learning style9 modes available
Process Flow - Composite index requirements
Start Query
Check Query Filters
Are multiple fields filtered or sorted?
NoUse Single-field Index
Yes
Check Composite Index Exists
If Exists
Query Uses Composite Index
If Not Exists
Error: Create Composite Index
Create Composite Index in Firebase Console
Retry Query
Query Succeeds Using Composite Index
When a query filters or sorts on multiple fields, Firebase requires a composite index. If missing, it prompts to create one before the query can succeed.
Execution Sample
Firebase
db.collection('books')
  .where('author', '==', 'Alice')
  .orderBy('year')
  .get()
This query filters books by author and sorts by year, requiring a composite index on 'author' and 'year'.
Process Table
StepQuery PartIndex CheckActionResult
1Filter on 'author'Single-field index existsUse single-field indexContinue
2Order by 'year'Needs composite index with 'author' and 'year'Check composite indexNot found
3Composite index missingError thrownPrompt to create composite indexQuery fails
4Create composite indexIndex created in Firebase ConsoleRetry queryQuery succeeds
💡 Query stops at step 3 because composite index is missing for multiple fields filter and sort.
Status Tracker
VariableStartAfter Step 1After Step 2After Step 3After Step 4
Query StatusNot startedFiltering on author OKComposite index missing errorError shown to userQuery succeeds after index creation
Key Moments - 2 Insights
Why does the query fail even though single-field indexes exist?
Because the query filters and sorts on multiple fields, Firebase requires a composite index combining those fields (see execution_table step 3). Single-field indexes alone are not enough.
What should I do when Firebase says a composite index is missing?
You need to create the composite index in the Firebase Console as prompted (see execution_table step 4), then retry the query.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, at which step does the query fail due to missing composite index?
AStep 2
BStep 4
CStep 3
DStep 1
💡 Hint
Check the 'Result' column in execution_table row for step 3.
According to variable_tracker, what is the query status after step 4?
AQuery fails with error
BQuery succeeds after index creation
CQuery not started
DFiltering on author OK
💡 Hint
Look at the last column 'After Step 4' in variable_tracker for 'Query Status'.
If the query only filtered on 'author' without ordering by 'year', what index would be needed?
ASingle-field index on 'author'
BNo index needed
CComposite index on 'author' and 'year'
DComposite index on 'year' only
💡 Hint
Refer to execution_table step 1 where filtering on 'author' uses single-field index.
Concept Snapshot
Composite index is needed when a query filters or sorts on multiple fields.
Firebase checks if such an index exists.
If missing, query fails with an error.
Create the composite index in Firebase Console.
Retry query to succeed.
Full Transcript
When you run a Firebase query that filters or sorts on more than one field, Firebase requires a composite index that covers those fields. The process starts by checking if single-field indexes suffice. If the query involves multiple fields, Firebase looks for a composite index. If it does not exist, the query fails and Firebase prompts you to create the composite index in the Firebase Console. After creating the index, retrying the query will succeed. This ensures queries are efficient and fast.