Question

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.

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top