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.

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top