summaryrefslogtreecommitdiff
path: root/src/libtracker-miner
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2011-02-23 15:53:57 +0100
committerAleksander Morgado <aleksander@lanedo.com>2011-02-23 15:53:57 +0100
commitcb1637169a531fa5d38112c553a74e62d0ea58c0 (patch)
tree71ba2a2e24e8a72c5cc803c98346506ac941ef66 /src/libtracker-miner
parent6ce45eb0ef1044556607a9a5a6d8821a2ad4fb05 (diff)
downloadtracker-cb1637169a531fa5d38112c553a74e62d0ea58c0.tar.gz
libtracker-miner: Update processing pool explanation with new default queue sizes
Diffstat (limited to 'src/libtracker-miner')
-rw-r--r--src/libtracker-miner/tracker-miner-fs-processing-pool.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/libtracker-miner/tracker-miner-fs-processing-pool.c b/src/libtracker-miner/tracker-miner-fs-processing-pool.c
index a4675f6ad..d71b2eb62 100644
--- a/src/libtracker-miner/tracker-miner-fs-processing-pool.c
+++ b/src/libtracker-miner/tracker-miner-fs-processing-pool.c
@@ -33,7 +33,7 @@
* files (until the tracker_miner_fs_file_notify() is called by the
* upper layer).
* 1.2. "READY" tasks are those used to specify tasks which have a proper
- * SPARQL string ready to be pushed to tracker-store. If
+ * SPARQL string ready to be pushed to tracker-store.
* 1.3. "PROCESSING" tasks are those used to specify tasks that are currently
* being pushed to the store.
*
@@ -64,17 +64,16 @@
* 3. The number of tasks pushed to the pull as "WAIT" tasks is limited to the
* number set while creating the pool. This value corresponds to the
* "processing-pool-wait-limit" property in the TrackerMinerFS object, and
- * currently is set to 1 for TrackerMinerApplications and to 10 to
+ * currently is set to 10 for both TrackerMinerApplications and
* TrackerMinerFiles. In the case of TrackerMinerFiles, this number specifies
* the maximum number of extraction requests that can be managed in parallel.
*
* 4. The number of tasks pushed to the pull as "READY" tasks is limited to
* the number set while creating the pool. This value corresponds to the
* "processing-pool-ready-limit" property in the TrackerMinerFS object, and
- * currently is set to 1 for TrackerMinerApplications and to 100 to
- * TrackerMinerFiles. In the case of TrackerMinerFiles, this number specifies
- * the maximum number of SPARQL updates that can be merged into a single
- * multi-insert SPARQL connection.
+ * currently is set to 100 for both TrackerMinerApplications and
+ * TrackerMinerFiles. This number specifies the maximum number of SPARQL
+ * updates that can be merged into a single multi-insert SPARQL connection.
*
* 5. When a task is pushed to the pool as a "READY" task, the pool will be in
* charge of executing the SPARQL update into the store.