Class FileSystemStatusReporter
- java.lang.Object
-
- org.apache.tika.pipes.PipesReporter
-
- org.apache.tika.pipes.reporters.fs.FileSystemStatusReporter
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Initializable
public class FileSystemStatusReporter extends PipesReporter implements Initializable
This is intended to write summary statistics to disk periodically. As of the 2.5.0 release, this is ALPHA version. There may be breaking changes in the future. Becauseuses {@link java.time.Instant}, if you are deserializing with jackson-databind, you'll need to add jackson-datatype-jsr310. See the unit tests for how to deserialize AsyncStatus.
-
-
Field Summary
-
Fields inherited from class org.apache.tika.pipes.PipesReporter
NO_OP_REPORTER
-
-
Constructor Summary
Constructors Constructor Description FileSystemStatusReporter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkInitialization(InitializableProblemHandler problemHandler)
void
close()
No-op implementation.void
error(String msg)
This is called if the process has crashed.void
error(Throwable t)
This is called if the process has crashed.void
initialize(Map<String,Param> params)
void
report(FetchEmitTuple t, PipesResult result, long elapsed)
void
report(TotalCountResult totalCountResult)
No-op implementation.void
setReportUpdateMillis(long millis)
void
setStatusFile(String path)
boolean
supportsTotalCount()
Override this if your reporter supports total count.
-
-
-
Method Detail
-
setReportUpdateMillis
@Field public void setReportUpdateMillis(long millis)
-
initialize
public void initialize(Map<String,Param> params) throws TikaConfigException
- Specified by:
initialize
in interfaceInitializable
- Parameters:
params
- params to use for initialization- Throws:
TikaConfigException
-
checkInitialization
public void checkInitialization(InitializableProblemHandler problemHandler) throws TikaConfigException
- Specified by:
checkInitialization
in interfaceInitializable
- Parameters:
problemHandler
- if there is a problem and no custom initializableProblemHandler has been configured via Initializable parameters, this is called to respond.- Throws:
TikaConfigException
-
close
public void close() throws IOException
Description copied from class:PipesReporter
No-op implementation. Override for custom behavior- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classPipesReporter
- Throws:
IOException
-
error
public void error(Throwable t)
Description copied from class:PipesReporter
This is called if the process has crashed. Implementers should not rely on close() to be called after this.- Specified by:
error
in classPipesReporter
-
error
public void error(String msg)
Description copied from class:PipesReporter
This is called if the process has crashed. Implementers should not rely on close() to be called after this.- Specified by:
error
in classPipesReporter
-
report
public void report(FetchEmitTuple t, PipesResult result, long elapsed)
- Specified by:
report
in classPipesReporter
-
report
public void report(TotalCountResult totalCountResult)
Description copied from class:PipesReporter
No-op implementation. Override for custom behavior and make sure to overridePipesReporter.supportsTotalCount()
to returntrue
- Overrides:
report
in classPipesReporter
-
supportsTotalCount
public boolean supportsTotalCount()
Description copied from class:PipesReporter
Override this if your reporter supports total count.- Overrides:
supportsTotalCount
in classPipesReporter
- Returns:
false
as the baseline implementation
-
-