MongoDB Auto Increment: How to Get Sequential IDs

MongoDB has no built-in auto increment. There is no AUTO_INCREMENT keyword and no sequence object. The default _id is an ObjectId, a 12 byte value that is unique but not sequential in the way a counter is.

To get 1, 2, 3 you keep a counter document in its own collection. Before each insert you increment that counter with findOneAndUpdate and $inc. That single update is atomic, so two clients never receive the same number.

OptionYou getUse it when
Default ObjectIdUnique, roughly time orderedYou do not need readable numbers
Counter collection1, 2, 3 with no gaps in normal useYou need an order number or invoice number
Counter in application memoryFast, but wrong with more than one serverNever in production
Atlas triggerCounter logic kept in the databaseYou already run on Atlas

Here is the counter pattern in the MongoDB shell.

db.counters.insertOne({ _id: "orderId", seq: 0 }) function getNextSequence(name) { const doc = db.counters.findOneAndUpdate( { _id: name }, { $inc: { seq: 1 } }, { returnDocument: "after", upsert: true } ) return doc.seq } db.orders.insertOne({ _id: getNextSequence("orderId"), item: "Keyboard" })

Node.js With the Official Driver

The same call works in the Node.js driver. One detail changes between driver versions.

const counters = db.collection('counters') async function nextId(name) { const doc = await counters.findOneAndUpdate( { _id: name }, { $inc: { seq: 1 } }, { returnDocument: 'after', upsert: true } ) return doc.seq } await db.collection('orders').insertOne({ _id: await nextId('orderId'), item: 'Mouse' })

Driver version 6 and later returns the document itself. Older versions returned a wrapper, so you had to read result.value.seq. If doc.seq is undefined, print the whole result and check which shape you have.

Mongoose

Put the counter call in a pre-save hook. The model then behaves as if the field increments itself.

orderSchema.pre('save', async function (next) { if (!this.isNew) return next() const c = await Counter.findByIdAndUpdate( 'orderId', { $inc: { seq: 1 } }, { new: true, upsert: true } ) this.orderNumber = c.seq next() })

Keep the number in a normal field such as orderNumber. Leaving _id as an ObjectId is safer, because you can change the numbering later.

Java and C#

Both drivers expose the same operation with a return document option.

Document filter = new Document("_id", "orderId"); Document update = new Document("$inc", new Document("seq", 1L)); FindOneAndUpdateOptions opts = new FindOneAndUpdateOptions() .returnDocument(ReturnDocument.AFTER).upsert(true); long next = counters.findOneAndUpdate(filter, update, opts).getLong("seq");
var filter = Builders<BsonDocument>.Filter.Eq("_id", "orderId"); var update = Builders<BsonDocument>.Update.Inc("seq", 1); var opts = new FindOneAndUpdateOptions<BsonDocument> { ReturnDocument = ReturnDocument.After, IsUpsert = true }; var next = counters.FindOneAndUpdate(filter, update, opts)["seq"].AsInt64;

Use a 64 bit integer for the counter. A 32 bit field runs out at about two billion rows.

What Can Go Wrong

  • Gaps appear. You take a number, then the insert fails. The number is gone. Numbering stays ordered but is not always continuous.
  • The counter document is a hot spot. Every insert updates one document. At very high write rates that one document limits throughput.
  • Sharding does not help this pattern. The counter lives on one shard, so all inserts wait on it.
  • Sequential IDs leak information. A customer can read order number 4102 and estimate your volume.
  • Two calls are not one transaction. The counter update and the insert are separate. Wrap both in a transaction if a gap is unacceptable.

If none of that matters to you, keep the ObjectId. It is generated by the client, needs no round trip, and never contends on a single document.

How to Prepare

TAGS
Coding Interview
System Design Fundamentals
CONTRIBUTOR
Arslan Ahmad
Arslan Ahmad
ex-FAANG engineering manager and author or Grokking series.

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
How to Answer: "Why Do You Want to Work at Canva?"
Canva screens against its values (Make Complex Things Simple, Set Crazy Big Goals, Be a Force for Good) and expects genuine product connection. A structure, sample answer, and mistakes.
Top Harvey Behavioral Interview Questions (and How to Answer Them)
The behavioral themes Harvey screens for, likely questions grouped by theme, what interviewers listen for, and one worked sample outline.
Top Perplexity Behavioral Interview Questions (and How to Answer Them)
Perplexity screens for curiosity, speed, and ownership across the hiring manager deep dive and the founder interview. The questions to expect and how to answer them.
How to Answer: "Why Do You Want to Work at Miro?"
What Miro interviewers listen for in the motivation question, a three-part structure, a full sample answer, and the mistakes candidates make.
How to Answer: "Why Do You Want to Work at Walmart Global Tech?"
Walmart Global Tech runs technology at the largest physical-plus-digital scale on earth. What interviewers listen for, a sample answer, and the mistakes to avoid.
How to Answer: "Why Do You Want to Work at DoorDash?"
DoorDash screens for operator mindset and genuine marketplace interest, and every employee delivers orders a few times a year. How to answer with evidence, plus a sample and mistakes.
Related Courses
New
Grokking the AI System Design Interview course cover
Grokking the AI System Design Interview
Learn to design AI systems the way interviewers expect: classic ML products, LLM and RAG architectures, and agentic systems, all through the lens of the system design interview.
4.6
(3,192 learners)
Discounted price for Your Region

$123

Grokking the Coding Interview: Patterns for Coding Questions course cover
Grokking the Coding Interview: Patterns for Coding Questions
The 24 essential patterns behind every coding interview question. Available in Java, Python, JavaScript, C++, C#, and Go. The most comprehensive coding interview course with 543 lessons. A smarter alternative to grinding LeetCode.
4.6
Discounted price for Your Region

$197

Grokking Modern AI Fundamentals course cover
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
4.1
Discounted price for Your Region

$72

Design Gurus logo
One-Stop Portal For Tech Interviews.
Copyright © 2026 Design Gurus, LLC. All rights reserved.