Also clean up minor issues in common text fragments.
debian/tmp/usr/share/doc/skytools3/queue_splitter.html
debian/tmp/usr/share/doc/skytools3/queue_mover.html
debian/tmp/usr/share/doc/skytools3/londiste3.html
+debian/tmp/usr/share/doc/skytools3/simple_consumer3.html
+debian/tmp/usr/share/doc/skytools3/simple_local_consumer3.html
debian/tmp/usr/share/man/man1/londiste3.1
debian/tmp/usr/share/man/man1/queue_mover3.1
debian/tmp/usr/share/man/man1/queue_splitter3.1
+debian/tmp/usr/share/man/man1/simple_consumer3.1
+debian/tmp/usr/share/man/man1/simple_local_consumer3.1
londiste3.html walmgr3.html qadmin.html scriptmgr.html \
sql-grants.html \
skytools_upgrade.html queue_mover.html queue_splitter.html \
+ simple_consumer3.html simple_local_consumer3.html \
howto/londiste3_cascaded_rep_howto.html \
howto/londiste3_merge_howto.html \
howto/londiste3_partitioning_howto.html \
MAN5 =
MAN1_SFX = scriptmgr.1 skytools_upgrade.1 queue_mover.1 queue_splitter.1
-MAN1 = qadmin.1 pgqd.1 walmgr3.1 londiste3.1
+MAN1 = qadmin.1 pgqd.1 walmgr3.1 londiste3.1 simple_consumer3.1 simple_local_consumer3.1
FQHTML = $(addprefix html/doc/, $(DOCHTML)) $(addprefix html/, $(TOPHTML))
FQMAN1 = $(addprefix man/, $(MAN1))
=== Common PgQ consumer parameters ===
- pgq_queue_name::
+ queue_name::
Queue name to attach to.
No default.
- pgq_consumer_id::
+ consumer_name::
Consumers ID to use when registering.
Default: %(job_name)s
-d, --daemon::
make program go background
+ --ini::
+ show commented template config file.
+
Following switches are used to control already running process.
The pidfile is read from config then signal is sent to process
id specified there.
--- /dev/null
+
+= simple_consumer3(1) =
+
+== NAME ==
+
+simple_consumer3 - PgQ consumer that executes query for each event
+
+== SYNOPSIS ==
+
+ simple_consumer3.py [switches] config.ini
+
+== DESCRIPTION ==
+
+For each event in batch it will execute query, filling event
+values into it.
+
+Transactionality: query is executed in autocommit mode,
+no batch tracking is done. That means on failure,
+whole batch is fetched and all events are processed again.
+
+== CONFIG ==
+
+Run `simple_consumer3 --ini` to see commented config template.
+
+== COMMAND LINE SWITCHES ==
+
+include::common.switches.txt[]
+
--- /dev/null
+
+= simple_local_consumer3(1) =
+
+== NAME ==
+
+simple_local_consumer3 - PgQ consumer that executes query for each row
+
+== SYNOPSIS ==
+
+ simple_local_consumer3.py [switches] config.ini
+
+== DESCRIPTION ==
+
+For each event in batch it will execute query, filling event
+values into it.
+
+Transactionality: query is executed in autocommit mode,
+completed batch is tracked in local file. It can be switched
+between nodes in cascaded queue.
+
+== CONFIG ==
+
+Run `simple_local_consumer3 --ini` to see commented config template.
+
+== COMMAND LINE SWITCHES ==
+
+include::common.switches.txt[]
+