Edited wiki page through web user interface.

This commit is contained in:
Louwrentius 2009-03-08 22:51:48 +00:00
parent f7165934ff
commit 0910505304
1 changed files with 15 additions and 2 deletions

View File

@ -14,7 +14,6 @@ Items can be two things:
* files within a user-specified directory * files within a user-specified directory
* arbitrary lines of text within a file * arbitrary lines of text within a file
When PPSS has finished, it has produced a log file of its operation. By default, this file is called ppss-log.txt. When PPSS has finished, it has produced a log file of its operation. By default, this file is called ppss-log.txt.
Also, a directory is created, by default JOB_LOG. Within this directory a logfile exists for each item that has been processed. If a log file is present for an item, and PPSS is re-run, these items will be skipped. Also, a directory is created, by default JOB_LOG. Within this directory a logfile exists for each item that has been processed. If a log file is present for an item, and PPSS is re-run, these items will be skipped.
@ -44,10 +43,12 @@ In this example, a list of URLs is provided by the file list.txt. These urls are
`$ ./ppss.sh standalone -f list-of-urls.txt -c 'wget -q "$ITEM"'` `$ ./ppss.sh standalone -f list-of-urls.txt -c 'wget -q "$ITEM"'`
== Advanced command line options ==
== logging (must read) ==
== Logging (must read) ==
There are two separate log mechanisms: There are two separate log mechanisms:
@ -62,6 +63,18 @@ _Item log file_
When an item is processed, any output that is generated is logged within its individual log file. This logfile resides within the directory job_log. This directory is created from where PPSS is executed. When an item is processed, any output that is generated is logged within its individual log file. This logfile resides within the directory job_log. This directory is created from where PPSS is executed.
{{{
===== PPSS Item Log File =====
Host: imac-2.local
Item: PPSS_LOCAL_TMPDIR/20080602.wav
Start date: Mar 03 00:10:32
Encode of PPSS_LOCAL_TMPDIR/20080602.wav successful.
Status: Succes - item has been processed.
Elapsed time (h:m:s): 0:4:48
}}}
If you tailor your command the right way, or create a (small) script, it is very easy to determine which items have not been processed correctly. A simple grep on 'error' might already give a clue. If you tailor your command the right way, or create a (small) script, it is very easy to determine which items have not been processed correctly. A simple grep on 'error' might already give a clue.
*Important:* If a log file exists for an item, and PPSS is run again, that item will be skipped. This allows you to interrupt PPSS and continue where you left off. If you want to process all items again, just remove the job_log directory. *Important:* If a log file exists for an item, and PPSS is run again, that item will be skipped. This allows you to interrupt PPSS and continue where you left off. If you want to process all items again, just remove the job_log directory.