Indexing and Query Optimisation

45
Support Engineer, 10gen Australia Stephen Steneker Indexing and Query Optimisation #MongoMelbourne

description

MongoDB supports a wide range of indexing options to enable fast querying of your data. In this talk we’ll cover how indexing works, the various indexing options, and cover use cases where each might be useful.

Transcript of Indexing and Query Optimisation

Page 1: Indexing and Query Optimisation

Support Engineer, 10gen Australia

Stephen Steneker

Indexing and Query Optimisation

#MongoMelbourne

Page 2: Indexing and Query Optimisation

Agenda

• What are indexes?

• Why do I need them?

• Working with indexes in MongoDB

• Optimise your queries

• Avoiding common mistakes

Page 3: Indexing and Query Optimisation

What are indexes?

Page 4: Indexing and Query Optimisation

What are indexes?

Imagine you’re looking for a recipe in a cookbook ordered by recipe name. Looking up a recipe by name is quick and easy.

Page 5: Indexing and Query Optimisation

What are indexes?

• How would you find a recipe using chicken?

• How about a 250-350 calorie recipe using chicken?

Page 6: Indexing and Query Optimisation

KRISTINE TO INSERT IMAGE OF COOKBOOK

Consult the index!

Page 7: Indexing and Query Optimisation

Linked List

Page 8: Indexing and Query Optimisation

Finding 7 in Linked List

Page 9: Indexing and Query Optimisation

Finding 7 in Tree

Page 10: Indexing and Query Optimisation

Indexes in MongoDB are B-trees

Page 11: Indexing and Query Optimisation

Queries, inserts and deletes: O(log(n)) time

Page 12: Indexing and Query Optimisation

Indexes are the single biggest tuneable performance factor in MongoDB

Page 13: Indexing and Query Optimisation

Absent or suboptimal indexes are the most common avoidable MongoDB performance problem.

Page 14: Indexing and Query Optimisation

Why do I need indexes?A brief story

Page 15: Indexing and Query Optimisation

Working with Indexes in MongoDB

Page 16: Indexing and Query Optimisation

// Create an index if one does not existdb.recipes.createIndex({ main_ingredient: 1 })

// The client remembers the index and raises no errorsdb.recipes.ensureIndex({ main_ingredient: 1 })

* 1 means ascending, -1 descending

How do I create indexes?

Page 17: Indexing and Query Optimisation

// Multiple fields (compound key indexes)db.recipes.ensureIndex({ main_ingredient: 1, calories: -1})

// Arrays of values (multikey indexes){ name: 'Chicken Noodle Soup’, ingredients : ['chicken', 'noodles'] }

db.recipes.ensureIndex({ ingredients: 1 })

What can be indexed?

Page 18: Indexing and Query Optimisation

// Subdocuments{ name : 'Pavlova', contributor: { name: 'Ima Aussie', id: 'ima123' }}

db.recipes.ensureIndex({ 'contributor.id': 1 })

db.recipes.ensureIndex({ 'contributor': 1 })

What can be indexed?

Page 19: Indexing and Query Optimisation

// List a collection's indexes

db.recipes.getIndexes()

db.recipes.getIndexKeys()

// Drop a specific index

db.recipes.dropIndex({ ingredients: 1 })

// Drop all indexes and recreate them

db.recipes.reIndex()

// Default (unique) index on _id

How do I manage indexes?

Page 20: Indexing and Query Optimisation

// Index creation is a blocking operation that can take a long time

// Background creation yields to other operations

db.recipes.ensureIndex(

{ ingredients: 1 },

{ background: true }

)

Background Index Builds

Page 21: Indexing and Query Optimisation

Options

• Uniqueness constraints (unique, dropDups)

• Sparse Indexes

• Geospatial (2d) Indexes

• TTL Collections (expireAfterSeconds)

Page 22: Indexing and Query Optimisation

// Only one recipe can have a given value for name

db.recipes.ensureIndex( { name: 1 }, { unique: true } )

// Force index on collection with duplicate recipe names – drop the duplicates

db.recipes.ensureIndex(

{ name: 1 },

{ unique: true, dropDups: true }

)

* dropDups is probably never what you want

Uniqueness Constraints

Page 23: Indexing and Query Optimisation

// Only documents with field calories will be indexed

db.recipes.ensureIndex(

{ calories: -1 },

{ sparse: true }

)

// Allow multiple documents to not have calories field

db.recipes.ensureIndex(

{ name: 1 , calories: -1 },

{ unique: true, sparse: true }

)

* Missing fields are stored as null(s) in the index

Sparse Indexes

Page 24: Indexing and Query Optimisation

// Add latitude, longitude coordinates

{

name: '10gen Sydney’,

loc: [ 151.21037, -33.88456 ]

}

// Index the coordinates

db.locations.ensureIndex( { loc : '2d' } )

// Query for locations 'near' a particular coordinate

db.locations.find({

loc: { $near: [ 151.21, -33.88 ] }

})

Geospatial Indexes

Page 25: Indexing and Query Optimisation

// Documents must have a BSON UTC Date field

{ 'status' : ISODate('2012-11-09T11:44:07.211Z'), … }

// Documents are removed after 'expireAfterSeconds' seconds

db.recipes.ensureIndex(

{ submitted_date: 1 },

{ expireAfterSeconds: 3600 }

)

TTL Collections

Page 26: Indexing and Query Optimisation

Limitations

• Collections can not have > 64 indexes.

• Index keys can not be > 1024 bytes (1K).

• The name of an index, including the namespace,

must be < 128 characters.

• Queries can only use 1 index*

• Indexes have storage requirements, and impact the

performance of writes.

• In memory sort (no-index) limited to 32mb of return

data.

Page 27: Indexing and Query Optimisation

Optimise Your Queries

Page 28: Indexing and Query Optimisation

db.setProfilingLevel( n , slowms=100ms )

n=0 profiler off

n=1 record operations longer than slowms

n=2 record all queries

db.system.profile.find()

* The profile collection is a capped collection, and fixed in size

Profiling Slow Ops

Page 29: Indexing and Query Optimisation

db.recipes.find( { calories:

{ $lt : 40 } }

).explain( )

{

"cursor" : "BasicCursor" ,

"n" : 42,

"nscannedObjects” : 12345

"nscanned" : 12345,

...

"millis" : 356,

...

}

* Doesn’t use cached plans, re-evals and resets cache

The Explain Plan (Pre Index)

Page 30: Indexing and Query Optimisation

db.recipes.find( { calories:

{ $lt : 40 } }

).explain( )

{

"cursor" : "BtreeCursor calories_-1" ,

"n" : 42,

"nscannedObjects": 42

"nscanned" : 42,

...

"millis" : 0,

...

}

* Doesn’t use cached plans, re-evals and resets cache

The Explain Plan (Post Index)

Page 31: Indexing and Query Optimisation

The Query Optimiser

Page 32: Indexing and Query Optimisation

The Query Optimiser

• For each "type" of query, MongoDB periodically tries all useful indexes• Aborts the rest as soon as one plan wins• The winning plan is temporarily cached for each “type” of query

Page 33: Indexing and Query Optimisation

// Tell the database what index to use

db.recipes.find({

calories: { $lt: 1000 } }

).hint({ _id: 1 })

// Tell the database to NOT use an index

db.recipes.find(

{ calories: { $lt: 1000 } }

).hint({ $natural: 1 })

Manually Select Index to Use

Page 34: Indexing and Query Optimisation

// Given the following indexdb.collection.ensureIndex({ a:1, b:1 , c:1, d:1 })

// The following query and sort operations can use the indexdb.collection.find( ).sort({ a:1 })db.collection.find( ).sort({ a:1, b:1 })

db.collection.find({ a:4 }).sort({ a:1, b:1 })db.collection.find({ b:5 }).sort({ a:1, b:1 })

Use Indexes to Sort Query Results

Page 35: Indexing and Query Optimisation

// Given the following index

db.collection.ensureIndex({ a:1, b:1, c:1, d:1 })

// These can not sort using the index

db.collection.find( ).sort({ b: 1 })

db.collection.find({ b: 5 }).sort({ b: 1 })

Indexes that won’t work for sorting query results

Page 36: Indexing and Query Optimisation

// MongoDB can return data from just the index

db.recipes.ensureIndex({ main_ingredient: 1, name: 1 })

// Return only the ingredients field

db.recipes.find(

{ main_ingredient: 'chicken’ },

{ _id: 0, name: 1 }

)

// indexOnly will be true in the explain plan

db.recipes.find(

{ main_ingredient: 'chicken' },

{ _id: 0, name: 1 }

).explain()

{

"indexOnly": true,

}

Index Covered Queries

Page 37: Indexing and Query Optimisation

Absent or suboptimal indexes are the most common avoidable MongoDB performance problem.

Page 38: Indexing and Query Optimisation

Avoiding Common Mistakes

Page 39: Indexing and Query Optimisation

// MongoDB can only use one index for a query

db.collection.ensureIndex({ a: 1 })

db.collection.ensureIndex({ b: 1 })

// Only one of the above indexes is used

db.collection.find({ a: 3, b: 4 })

Trying to Use Multiple Indexes

Page 40: Indexing and Query Optimisation

// Compound key indexes are very effective

db.collection.ensureIndex({ a: 1, b: 1, c: 1 })

// But only if the query is a prefix of the index

// This query can't effectively use the index

db.collection.find({ c: 2 })

// …but this query can

db.collection.find({ a: 3, b: 5 })

Compound Key Mistakes

Page 41: Indexing and Query Optimisation

db.collection.distinct('status’)

[ 'new', 'processed' ]

db.collection.ensureIndex({ status: 1 })

// Low selectivity indexes provide little benefit

db.collection.find({ status: 'new' })

// Better

db.collection.ensureIndex({ status: 1, created_at: -1 })

db.collection.find(

{ status: 'new' }

).sort({ created_at: -1 })

Low Selectivity Indexes

Page 42: Indexing and Query Optimisation

db.users.ensureIndex({ username: 1 })

// Left anchored regex queries can use the index

db.users.find({ username: /^joe smith/ })

// But not generic regexes

db.users.find({username: /smith/ })

// Or case insensitive queries

db.users.find({ username: /Joe/i })

Regular Expressions

Page 43: Indexing and Query Optimisation

// Indexes aren't helpful with negationsdb.things.ensureIndex({ x: 1 })

// e.g. "not equal" queries db.things.find({ x: { $ne: 3 } })

// …or "not in" queriesdb.things.find({ x: { $nin: [2, 3, 4 ] } })

// …or the $not operatordb.people.find({ name: { $not: 'John Doe' } })

Negation

Page 44: Indexing and Query Optimisation

Choosing the right indexes is one of the most important things you can do as a MongoDB developer so take the time to get your indexes right!

Page 45: Indexing and Query Optimisation

Support Engineer, 10gen

Stephen Steneker

Thank you

#MongoMelbourne