Elasticsearch to MongoDB Migration — MongoES

Sathiya Sarathi
Datawrangler
Published in
3 min readFeb 11, 2018

The following are some of the instances where the developers simply love to hate!

  • The one-last-thing syndrome — This reminds me of the following quote:

The first 90 percent of the code accounts for the first 90 percent of the development time. The remaining 10 percent of the code accounts for the other 90 percent of the development time.

- Tom Cargill, Bell Labs, from the book `Programming Pearls`

  • QAs declaring certain undocumented features to be as bugs — Seriously, this create traumas for a developer.
  • Interruptions during coding — Here’s an idea. Try talking to developers while they code; chances are, they have just about <10% of your attention.

There are some problems which we get used to..

But, there are others which makes us wanna do this..

Ouch!! That’s gotta hurt real bad
  • DISCONNECTION FROM THE SERVER DUE TO BAD INTERNET DURING A MIGRATION — Ouch!! That’s gotta hurt real bad.

Talking about ES to MongoDB Migration - How hard could that be?

Good Side:

  • JSON objects are common for both.
  • Numerous tools to choose from, for migration.

Bad Side:

  • The Migration can be hideous, and can eat up a lot of the system resources. Be ready for a system-freeze, in case the migration tool uses a queue.

Ugly Side:

  • Can never be resumed from the point of failure. If the connectivity goes down during the migration; the transferred collection has to be deleted and the data transfer has to be initiated once again from the beginning.

Alright, there’s nothing there to be felt bad about.

MongoES is a pure python3-bred Migration tool to migrate documents from the Elasticsearch’s index to the MongoDB collections.

It’s robust in it’s native way; no queues/message brokers are involved; which means that there won’t be any memory spikes or system freezes.

This became achievable due to the fact that MongoES specifically uses a tagging strategy prior to the migration. The tagging happens in the source Elasticsearch, which stands as a checkpoint during the migration.

Why a new custom id tagging, while there’s an _id already?

Unless the documents are explicitly tagged, the _id fields in Elasticsearch documents are a bunch of alphanumeric strings generated to serialize the documents. These _id columns become unusable, since queries/aggregations can not be run using them.

MongoES — How to:

  1. Install all the Prerequisites.
  2. Clone the repository from https://github.com/datawrangl3r/mongoes.git
  3. Edit the mongoes.json file according to your requirements.

4. Make sure that both the elasticsearch and mongoDB services are up and running, and fire up the migration by keying in:

5. Sit back and relax; for we got you covered! The migration’s default value is 1000 documents per transfer.

Happy Wrangling!!! :)

Originally published at https://www.datawrangler.in on February 11, 2018.

--

--