Package org.apache.tika.pipes
Class PipesConfigBase
java.lang.Object
org.apache.tika.config.ConfigBase
org.apache.tika.pipes.PipesConfigBase
- Direct Known Subclasses:
AsyncConfig
,PipesConfig
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
static final long
default size to send back to the PipesClient for batch emitting.static final int
static final long
static final long
static final long
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Restart the forked PipesServer after it has processed this many files to avoid slow-building memory leaks.long
What is the maximum bytes size per extract that will be allowed to be shipped back to the emit queue in the forking process.int
long
long
long
long
void
setForkedJvmArgs
(List<String> jvmArgs) void
setJavaPath
(String javaPath) void
setMaxFilesProcessedPerProcess
(int maxFilesProcessedPerProcess) void
setMaxForEmitBatchBytes
(long maxForEmitBatchBytes) void
setNumClients
(int numClients) void
setShutdownClientAfterMillis
(long shutdownClientAfterMillis) If the client has been inactive after this many milliseconds, shut it down.void
setSleepOnStartupTimeoutMillis
(long sleepOnStartupTimeoutMillis) void
setStartupTimeoutMillis
(long startupTimeoutMillis) void
setTikaConfig
(String tikaConfig) void
setTikaConfig
(Path tikaConfig) void
setTimeoutMillis
(long timeoutMillis) How long to wait in milliseconds before timing out the forked process.Methods inherited from class org.apache.tika.config.ConfigBase
buildComposite, buildComposite, buildSingle, buildSingle, configure, handleSettings
-
Field Details
-
DEFAULT_MAX_FOR_EMIT_BATCH
public static final long DEFAULT_MAX_FOR_EMIT_BATCHdefault size to send back to the PipesClient for batch emitting. If an extract is larger than this, it will be emitted directly from the forked PipesServer.- See Also:
-
DEFAULT_TIMEOUT_MILLIS
public static final long DEFAULT_TIMEOUT_MILLIS- See Also:
-
DEFAULT_STARTUP_TIMEOUT_MILLIS
public static final long DEFAULT_STARTUP_TIMEOUT_MILLIS- See Also:
-
DEFAULT_SHUTDOWN_CLIENT_AFTER_MILLS
public static final long DEFAULT_SHUTDOWN_CLIENT_AFTER_MILLS- See Also:
-
DEFAULT_NUM_CLIENTS
public static final int DEFAULT_NUM_CLIENTS- See Also:
-
DEFAULT_MAX_FILES_PROCESSED_PER_PROCESS
public static final int DEFAULT_MAX_FILES_PROCESSED_PER_PROCESS- See Also:
-
-
Constructor Details
-
PipesConfigBase
public PipesConfigBase()
-
-
Method Details
-
getTimeoutMillis
public long getTimeoutMillis() -
setTimeoutMillis
public void setTimeoutMillis(long timeoutMillis) How long to wait in milliseconds before timing out the forked process.- Parameters:
timeoutMillis
-
-
getShutdownClientAfterMillis
public long getShutdownClientAfterMillis() -
setShutdownClientAfterMillis
public void setShutdownClientAfterMillis(long shutdownClientAfterMillis) If the client has been inactive after this many milliseconds, shut it down.- Parameters:
shutdownClientAfterMillis
-
-
getNumClients
public int getNumClients() -
setNumClients
public void setNumClients(int numClients) -
getForkedJvmArgs
-
setStartupTimeoutMillis
public void setStartupTimeoutMillis(long startupTimeoutMillis) -
setForkedJvmArgs
-
getMaxFilesProcessedPerProcess
public int getMaxFilesProcessedPerProcess()Restart the forked PipesServer after it has processed this many files to avoid slow-building memory leaks.- Returns:
-
setMaxFilesProcessedPerProcess
public void setMaxFilesProcessedPerProcess(int maxFilesProcessedPerProcess) -
getTikaConfig
-
setTikaConfig
-
setTikaConfig
-
getJavaPath
-
setJavaPath
-
getStartupTimeoutMillis
public long getStartupTimeoutMillis() -
getMaxForEmitBatchBytes
public long getMaxForEmitBatchBytes()What is the maximum bytes size per extract that will be allowed to be shipped back to the emit queue in the forking process. If an extract is too big, skip the emit queue and forward it directly from the forked PipesServer. If set to0
, this will never send an extract back for batch emitting, but will always emit the extract directly from the forked PipeServer. If set to-1
, this will always send the extract back for batch emitting.- Returns:
- the threshold extract size at which to emit directly from the forked PipeServer
-
setMaxForEmitBatchBytes
public void setMaxForEmitBatchBytes(long maxForEmitBatchBytes) -
getSleepOnStartupTimeoutMillis
public long getSleepOnStartupTimeoutMillis() -
setSleepOnStartupTimeoutMillis
public void setSleepOnStartupTimeoutMillis(long sleepOnStartupTimeoutMillis)
-