Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run tasks on couchdb

I need to schedule tasks to run on a couchdb database. These tasks read one db; aggregate data and write them to another database for archival purposes. I've seen the status page in futon which seems to be a a place to schedule tasks but I'm not able to find any documentation on how to actually accomplish this.

like image 276
shane Avatar asked Aug 30 '11 15:08

shane


1 Answers

Tasks shown in CouchDB's futon are built-in processes such as compaction or replication. You cannot define and run your own tasks here.

For handling your problem, you must run your task as external application that access CouchDB data over the HTTP API, and execute as cronjob, but not within CouchDB.

like image 186
b_erb Avatar answered Sep 25 '22 22:09

b_erb