0

I am looking for options to sync and enrich documents from MongoDB to Elasticsearch. I found Monstache that can do the sync part. I also found Elasticsearch Ingest Node that can modify the documents before indexing into Elasticsearch.

Can I use Monstache to index documents through the ingest node so that I can transform and enrich documents before storing in Elasticsearch?

There are other options like logstash, but the MongoDB plugin is not actively maintained and has quite a lot of issues. So, I am looking at other options.

Ikar Pohorský
  • 4,617
  • 6
  • 39
  • 56
JOHN
  • 1,411
  • 3
  • 21
  • 41

1 Answers1

0

The question has been answered in Github:https://github.com/rwynn/monstache/issues/310

The idea is to set the default pipeline in index. So each documents will go through the default pipeline before indexing into Elasticsearch.

JOHN
  • 1,411
  • 3
  • 21
  • 41