Filled in reason #3 to submit separate out celery.
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 4 Dec 2011 21:27:00 +0000 (15:27 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 4 Dec 2011 21:27:00 +0000 (15:27 -0600)
docs/source/production-deployments.rst

index 37251734f0d43a6cadf3ddea4641f75b7d7c89ee..75acf9cfc1a25b92b5416af17735a317aa5e5018 100644 (file)
@@ -23,7 +23,16 @@ deployments for several reasons:
    MediaGoblin application itself, this simplifies management and
    support better workload distribution.
 
-3. ... additional reason here. ....
+3. If your user submits something complex and it needs to process,
+   that's extra time your user has to sit around waiting when they
+   could get back immediately to doing things on the site.
+   Furthermore, if that processing step takes a long time, as it
+   certainly will for video, your user won't just be left waiting,
+   their connection will probably time out.
+
+Basically, if you're doing anything other than trivial images for a
+small set of users (or something similarly trivial, like ascii art),
+you want to switch over to doing a separate celery process.
 
 Build an :ref:`init script <init-script>` around the following
 command.