Roshan B Vishwakarma
Roshan B Vishwakarma

Reputation: 99

Run map reduce functions as a job in mongodb

Running a map reduce functions as a job in mongodb. Is it possible?

If I updated the collection with some data then the map reduce functions should run automatically as a job & produce the result in the output collection with latest data.

Can we achieve this in mongodb?

Upvotes: 1

Views: 100

Answers (1)

Ian Mercer
Ian Mercer

Reputation: 39307

No. You would need to schedule these outside MongoDB.

What you are asking for sounds like it may be better suited to being a View within Couchbase.

Upvotes: 1

Related Questions