Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tika Wiki" for change 
notification.

The "TikaJAXRS" page has been changed by TimothyAllison:
https://wiki.apache.org/tika/TikaJAXRS?action=diff&rev1=49&rev2=50

   * {{{-taskTimeoutMillis}}} and {{{-taskPulseMillis}}}: {{{taskPulseMillis}}} 
specifies how often to check to determine if a parse/detect task has timed out 
{{{taskTimeoutMillis}}}
   * {{{-pingTimeoutMillis}}} and {{{-pingPulseMillis}}}: {{{pingPulseMillis}}} 
specifies how often for the parent process to ping the child process to check 
status.  {{{pingTimeoutMillis}}} how long the parent process should wait to 
hear back from the child process before restarting it and/or how long the child 
process should wait to receive a ping from the parent process before shutting 
itself down. 
  
- If the child process is in the process of shutting down, and it gets a new 
request it will return {{{503 -- Service Unavailable}}}.  If the server times 
out on a file, the client will receive an IOException from the closed socket.
+ If the child process is in the process of shutting down, and it gets a new 
request it will return {{{503 -- Service Unavailable}}}.  If the server times 
out on a file, the client will receive an IOException from the closed socket.  
Note that all other files that are being processed will end with an IOException 
from a closed socket when the child process shuts down; e.g. if you send three 
files to tika-server concurrently, and one of them causes a catastrophic 
problem requiring the child to shut down, you won't be able to tell which file 
caused the problems.  In the future, we may implement a gentler shutdown than 
we currently have.
  
+ NOTE: to specify the JVM args for the child process, prepend the arguments 
with {{{-J}}} as in {{{-JXmx4g}}}.
+ 

Reply via email to