You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2015/05/15 09:06:36 UTC

svn commit: r1679505 - /sling/site/trunk/content/documentation/bundles/apache-sling-eventing-and-job-handling.mdtext

Author: cziegeler
Date: Fri May 15 07:06:36 2015
New Revision: 1679505

URL: http://svn.apache.org/r1679505
Log:
Correct queue type docs

Modified:
    sling/site/trunk/content/documentation/bundles/apache-sling-eventing-and-job-handling.mdtext

Modified: sling/site/trunk/content/documentation/bundles/apache-sling-eventing-and-job-handling.mdtext
URL: http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/bundles/apache-sling-eventing-and-job-handling.mdtext?rev=1679505&r1=1679504&r2=1679505&view=diff
==============================================================================
--- sling/site/trunk/content/documentation/bundles/apache-sling-eventing-and-job-handling.mdtext (original)
+++ sling/site/trunk/content/documentation/bundles/apache-sling-eventing-and-job-handling.mdtext Fri May 15 07:06:36 2015
@@ -87,7 +87,7 @@ A queue configuration can have the follo
 | Property Name | Description |
 |--|--|
 | `queue.name` | The name of the queue. If matching is used for topics, the value {0} can be used for replacing the matched part. |
-| `queue.type` | The type of the queue: ORDERED, UNORDERED, TOPIC, ROUND-ROBIN, IGNORE, DROP |
+| `queue.type` | The type of the queue: ORDERED, UNORDERED, TOPIC_ROUND_ROBIN |
 | `queue.topics` | A list of topics processed by this queue. Either the concrete topic is specified or the topic string ends with /* or /. If a star is at the end all topics and sub topics match, with a dot only direct sub topics match. |
 | `queue.maxparallel` | How many jobs can be processed in parallel? -1 for number of processors.|
 | `queue.retries` | How often should the job be retried. -1 for endless retries. |
@@ -101,7 +101,7 @@ The configurations are processed in orde
 
 An ordered queue processes one job after the other.
 
-#### Unordered Queues
+#### Unordered Queues (or Parallel queues)
 
 Unordered queues process jobs in parallel.
 
@@ -109,13 +109,6 @@ Unordered queues process jobs in paralle
 
 The jobs are processed in parallel. Scheduling of the jobs is based on the topic of the jobs. These are started by doing round-robin on the available topics.
 
-#### Ignoring Queues
-
-A queue of type *ignoring* ignores this job. The job is persisted but not processed. This can be used to delay processing of some jobs. With a changed configuration, the ignored jobs can be processed at a later time.
-
-#### Dropping Queues
-
-A queue of type *drop* is dropping a job - which means it is not processed at all and directly discarded.
 
 ### Job Distributing