-
Notifications
You must be signed in to change notification settings - Fork 85
Wish List
jashkenas edited this page Sep 13, 2010
·
13 revisions
A brief list of things it would be nice to see contributed to CloudCrowd:
- A Job Creation UI for the Operations Center … pick your action, add inputs and options, and you’re off to the races.
- More unit and acceptance tests.
- Additional storage backends for the AssetStore, besides s3 and filesystem. Database and memcache backends seem like they would be interesting options.
- Some performance tests and benchmarks, to see what the expected throughput looks like at different levels.
- It would be nice to take a look at Grand Central Dispatch for ideas on how to efficiently manage workers and job queues.
- We should also at least consider a queue-per-worker / work-stealing setup.
- Add/Remove Workers via the server UI – drnic
- And how about running a single daemon process per box, that fetches work and forks off workers. You could configure a “percentage of memory to leave free”, and the daemon would continue to fetch work and fork workers up to that limit. Would be a nice way to scale to the confines of a box while avoiding memory leaks.