Class MultiprocessingAnalysisEngine_impl
- All Implemented Interfaces:
AnalysisEngine
,TextAnalysisEngine
,CasObjectProcessor
,CasProcessor
,ConfigurableResource
,Resource
AnalysisEngine
implementation that can process multiple CAS
objects
simultaneously. This is accomplished by maintaining a pool of AnalysisEngine
instances.
When initialized, this class checks for the parameter AnalysisEngine.PARAM_NUM_SIMULTANEOUS_REQUESTS
to
determine how many AnalysisEngine
instances to put in the pool.-
Field Summary
Fields inherited from class org.apache.uima.analysis_engine.impl.AnalysisEngineImplBase
LOG_RESOURCE_BUNDLE, PARAM_VERIFICATION_MODE
Fields inherited from interface org.apache.uima.analysis_engine.AnalysisEngine
MDC_ANNOTATOR_CONTEXT_NAME, MDC_ANNOTATOR_IMPL_NAME, MDC_CAS_ID, MDC_ROOT_CONTEXT_ID, PARAM_CONFIG_PARAM_SETTINGS, PARAM_MBEAN_NAME_PREFIX, PARAM_MBEAN_SERVER, PARAM_NUM_SIMULTANEOUS_REQUESTS, PARAM_RESOURCE_MANAGER, PARAM_THROTTLE_EXCESSIVE_ANNOTATOR_LOGGING, PARAM_TIMEOUT_PERIOD
Fields inherited from interface org.apache.uima.resource.Resource
PARAM_AGGREGATE_SOFA_MAPPINGS, PARAM_CONFIG_MANAGER, PARAM_CONFIG_PARAM_SETTINGS, PARAM_EXTERNAL_OVERRIDE_SETTINGS, PARAM_PERFORMANCE_TUNING_SETTINGS, PARAM_RESOURCE_MANAGER, PARAM_UIMA_CONTEXT
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Notifies this AnalysisEngine that processing of a batch has completed.void
Notifies this AnalysisEngine that processing of an entire collection has completed.void
destroy()
Releases all resources held by thisResource
.protected org.apache.uima.internal.util.AnalysisEnginePool
getPool()
Gets the AnalysisEngine pool used to serve process requests.protected int
Gets the timeout period, after which an exception will be thrown if no AnalysisEngine is available in the pool.boolean
initialize
(ResourceSpecifier aSpecifier, Map<String, Object> aAdditionalParams) Initializes thisResource
from aResourceSpecifier
.Invokes this AnalysisEngine's analysis logic.process
(CAS aCAS, ResultSpecification aResultSpec) Invokes this AnalysisEngine's analysis logic.void
process
(CAS aCAS, ResultSpecification aResultSpec, ProcessTrace aTrace) Invokes this AnalysisEngine's analysis logic.Similar toAnalysisEngine.process(CAS)
but uses the Java-object-basedJCas
interface instead of the generalCAS
interface.process
(JCas aJCas, ResultSpecification aResultSpec) Similar toAnalysisEngine.process(CAS,ResultSpecification)
but uses the Java-object-basedJCas
interface instead of the generalCAS
interface.void
process
(JCas aJCas, ResultSpecification aResultSpec, ProcessTrace aTrace) Similar toAnalysisEngine.process(CAS, ResultSpecification, ProcessTrace)
but uses the Java-object-basedJCas
interface instead of the generalCAS
interface.processAndOutputNewCASes
(CAS aCAS) Processes a CAS, possibly producing multiple CASes as a result.processAndOutputNewCASes
(JCas aJCas) Default implementation of processAndOutputNewCASes(JCas) method.void
Instructs this Resource to re-read its configuration parameter settings.void
Set the logger in the current UimaContext for use by user annotators.void
setResultSpecification
(ResultSpecification aResultSpec) Sets the list of output types and features that the application wants this AnalysisEngine to produce.Methods inherited from class org.apache.uima.analysis_engine.impl.AnalysisEngineImplBase
batchProcessComplete, buildProcessTraceFromMBeanStats, buildProcessTraceFromMBeanStats, callInitializeMethod, callProcessMethod, collectionProcessComplete, createResultSpecification, createResultSpecification, enterBatchProcessComplete, enterCollectionProcessComplete, enterProcess, exitBatchProcessComplete, exitCollectionProcessComplete, exitProcess, finalize, getAnalysisEngineMetaData, getCurrentConfigParameterSettings, getFeatureNamesForType, getManagementInterface, getMBean, getMBeanNamePrefix, getMBeanServer, getPerformanceTuningSettings, getProcessingResourceMetaData, isProcessTraceEnabled, isReadOnly, isStateless, newCAS, newJCas, normalizeIsoLangCodes, process, processCas, processCas, resetResultSpecificationToDefault, setMetaData, setPerformanceTuningSettings, typeSystemInit
Methods inherited from class org.apache.uima.resource.ConfigurableResource_ImplBase
getConfigParameterValue, getConfigParameterValue, setConfigParameterValue, setConfigParameterValue
Methods inherited from class org.apache.uima.resource.Resource_ImplBase
getCasManager, getLogger, getMetaData, getRelativePathResolver, getResourceManager, getUimaContext, getUimaContextAdmin, loadUserClass, loadUserClassOrThrow, setContextHolder, setContextHolderX, withContextHolder
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.uima.analysis_engine.AnalysisEngine
createResultSpecification, createResultSpecification, getAnalysisEngineMetaData, getFeatureNamesForType, getLogger, getManagementInterface, getPerformanceTuningSettings, getResourceManager, newCAS, newJCas, process
Methods inherited from interface org.apache.uima.collection.base_cpm.CasObjectProcessor
processCas, processCas, typeSystemInit
Methods inherited from interface org.apache.uima.collection.base_cpm.CasProcessor
batchProcessComplete, collectionProcessComplete, getProcessingResourceMetaData, isReadOnly, isStateless
Methods inherited from interface org.apache.uima.resource.ConfigurableResource
getConfigParameterValue, getConfigParameterValue, setConfigParameterValue, setConfigParameterValue
Methods inherited from interface org.apache.uima.resource.Resource
getMetaData, getUimaContext, getUimaContextAdmin
-
Constructor Details
-
MultiprocessingAnalysisEngine_impl
public MultiprocessingAnalysisEngine_impl()
-
-
Method Details
-
initialize
public boolean initialize(ResourceSpecifier aSpecifier, Map<String, Object> aAdditionalParams) throws ResourceInitializationExceptionDescription copied from interface:Resource
Initializes thisResource
from aResourceSpecifier
. Applications do not need to call this method. It is called automatically by theResourceFactory
and cannot be called a second time.- Specified by:
initialize
in interfaceAnalysisEngine
- Specified by:
initialize
in interfaceResource
- Overrides:
initialize
in classAnalysisEngineImplBase
- Parameters:
aSpecifier
- specifies how to create a resource or locate an existing resource service.aAdditionalParams
- a Map containing additional parameters. May benull
if there are no parameters. Each class that implements this interface can decide what additional parameters it supports.- Returns:
- true if and only if initialization completed successfully. Returns false if the given
ResourceSpecifier
is not of an appropriate type for this Resource. If theResourceSpecifier
is of an appropriate type but is invalid or if some other failure occurs, an exception should be thrown. - Throws:
ResourceInitializationException
- if a failure occurs during initialization.- See Also:
-
process
public ProcessTrace process(CAS aCAS, ResultSpecification aResultSpec) throws ResultNotSupportedException, AnalysisEngineProcessException Description copied from interface:AnalysisEngine
Invokes this AnalysisEngine's analysis logic. Prior to calling this method, the caller must ensure that the CAS has been populated with the artifact to be analyzed as well as any inputs required by this AnalysisEngine (as defined by this AnalysisEngine'sCapability
specification.)This version of the
process
method takes aResultSpecification
as an argument. TheResultSpecification
is alist of output types and features that the application wants this AnalysisEngine to produce. If you are going to use the sameResultSpecification
for multiple calls toprocess
, it is not recommended to use this method. Instead callAnalysisEngine.setResultSpecification(ResultSpecification)
once and then callAnalysisEngine.process(CAS)
for each CAS that you want to process.- Specified by:
process
in interfaceAnalysisEngine
- Overrides:
process
in classAnalysisEngineImplBase
- Parameters:
aCAS
- the CAS containing the inputs to the processing. Analysis results will also be written to this CAS.aResultSpec
- a list of outputs that this AnalysisEngine should produce.- Returns:
- an object containing information about which AnalysisEngine components have executed and information, such as timing, about that execution.
- Throws:
ResultNotSupportedException
- if this AnalysisEngine is not capable of producing the results requested inaResultSpec
.AnalysisEngineProcessException
- if a failure occurs during processing.- See Also:
-
process
public void process(CAS aCAS, ResultSpecification aResultSpec, ProcessTrace aTrace) throws ResultNotSupportedException, AnalysisEngineProcessException Description copied from interface:AnalysisEngine
Invokes this AnalysisEngine's analysis logic. Prior to calling this method, the caller must ensure that the CAS has been populated with the artifact to be analyzed as well as any inputs required by this AnalysisEngine (as defined by this AnalysisEngine'sCapability
specification.)This version of the
process
method takes aResultSpecification
as an argument. TheResultSpecification
is a list of output types and features that the application wants this AnalysisEngine to produce. If you are going to use the sameResultSpecification
for multiple calls toprocess
, it is not recommended to use this method. Instead callAnalysisEngine.setResultSpecification(ResultSpecification)
once and then callAnalysisEngine.process(CAS)
for each CAS that you want to process.This version of this method also takes a
ProcessTrace
object as a parameter. This allows trace events to be written to an existingProcessTrace
rather than a new one.- Specified by:
process
in interfaceAnalysisEngine
- Overrides:
process
in classAnalysisEngineImplBase
- Parameters:
aCAS
- the CAS containing the inputs to the processing. Analysis results will also be written to this CAS.aResultSpec
- a list of outputs that this AnalysisEngine should produce.aTrace
- the object to which trace events will be recorded- Throws:
ResultNotSupportedException
- if this AnalysisEngine is not capable of producing the results requested inaResultSpec
.AnalysisEngineProcessException
- if a failure occurs during processing.- See Also:
-
processAndOutputNewCASes
Description copied from interface:AnalysisEngine
Processes a CAS, possibly producing multiple CASes as a result. The application uses theCasIterator
interface to step through the output CASes.If this Analysis Engine does not produce output CASes, then the
CasIterator
will return no elements. You can check if an AnalysisEngine is capable of producing output CASes by checking theOperationalProperties.getOutputsNewCASes()
operational property (getAnalysisEngineMetaData().getOperationalProperties().getOutputsNewCASes()
).Once this method is called, the AnalysisEngine "owns"
aCAS
until such time as theCasIterator.hasNext()
method returns false. That is, the caller should not attempt to modify or access the input CAS until it has read all of the elements from the CasIterator. If the caller wants to abort the processing before having read all of the output CASes, it may callCasIterator.release()
, which will stop further processing from occurring, and ownership ofaCAS
will revert to the caller.- Specified by:
processAndOutputNewCASes
in interfaceAnalysisEngine
- Overrides:
processAndOutputNewCASes
in classAnalysisEngineImplBase
- Parameters:
aCAS
- the CAS to be processed- Returns:
- an object for iterating through any output CASes
- Throws:
AnalysisEngineProcessException
- if a failure occurs during processing
-
process
Description copied from interface:AnalysisEngine
Invokes this AnalysisEngine's analysis logic. Prior to calling this method, the caller must ensure that the CAS has been populated with the artifact to be analyzed as well as any inputs required by this AnalysisEngine (as defined by this AnalysisEngine'sCapability
specification.)This version of
process
does not take aResultSpecification
parameter. You may specify aResultSpecification
by callingAnalysisEngine.setResultSpecification(ResultSpecification)
prior to calling this method.- Specified by:
process
in interfaceAnalysisEngine
- Overrides:
process
in classAnalysisEngineImplBase
- Parameters:
aCAS
- the CAS containing the inputs to the processing. Analysis results will also be written to this CAS.- Returns:
- an object containing information about which AnalysisEngine components have executed and information, such as timing, about that execution.
- Throws:
AnalysisEngineProcessException
- if a failure occurs during processing.
-
process
Description copied from interface:AnalysisEngine
Similar toAnalysisEngine.process(CAS)
but uses the Java-object-basedJCas
interface instead of the generalCAS
interface.- Specified by:
process
in interfaceAnalysisEngine
- Overrides:
process
in classAnalysisEngineImplBase
- Parameters:
aJCas
- the JCas containing the inputs to the processing. Analysis results will also be written to this JCas.- Returns:
- an object containing information about which AnalysisEngine components have executed and information, such as timing, about that execution.
- Throws:
AnalysisEngineProcessException
- if a failure occurs during processing.- See Also:
-
process
public ProcessTrace process(JCas aJCas, ResultSpecification aResultSpec) throws ResultNotSupportedException, AnalysisEngineProcessException Description copied from interface:AnalysisEngine
Similar toAnalysisEngine.process(CAS,ResultSpecification)
but uses the Java-object-basedJCas
interface instead of the generalCAS
interface.This version of the
process
method takes aResultSpecification
as an argument. TheResultSpecification
is a list of output types and features that the application wants this AnalysisEngine to produce. If you are going to use the sameResultSpecification
for multiple calls toprocess
, it is not recommended to use this method. Instead callAnalysisEngine.setResultSpecification(ResultSpecification)
once and then callAnalysisEngine.process(JCas)
for each CAS that you want to process.- Specified by:
process
in interfaceAnalysisEngine
- Overrides:
process
in classAnalysisEngineImplBase
- Parameters:
aJCas
- the JCas containing the inputs to the processing. Analysis results will also be written to this JCas.aResultSpec
- a list of outputs that this AnalysisEngine should produce.- Returns:
- an object containing information about which AnalysisEngine components have executed and information, such as timing, about that execution.
- Throws:
ResultNotSupportedException
- if this AnalysisEngine is not capable of producing the results requested inaResultSpec
.AnalysisEngineProcessException
- if a failure occurs during processing.- See Also:
-
process
public void process(JCas aJCas, ResultSpecification aResultSpec, ProcessTrace aTrace) throws ResultNotSupportedException, AnalysisEngineProcessException Description copied from interface:AnalysisEngine
Similar toAnalysisEngine.process(CAS, ResultSpecification, ProcessTrace)
but uses the Java-object-basedJCas
interface instead of the generalCAS
interface.This version of the
process
method takes aResultSpecification
as an argument. TheResultSpecification
is a list of output types and features that the application wants this AnalysisEngine to produce. If you are going to use the sameResultSpecification
for multiple calls toprocess
, it is not recommended to use this method. Instead callAnalysisEngine.setResultSpecification(ResultSpecification)
once and then callAnalysisEngine.process(JCas)
for each CAS that you want to process.This version of this method also takes a
ProcessTrace
object as a parameter. This allows trace events to be written to an existingProcessTrace
rather than a new one.- Specified by:
process
in interfaceAnalysisEngine
- Overrides:
process
in classAnalysisEngineImplBase
- Parameters:
aJCas
- the JCas containing the inputs to the processing. Analysis results will also be written to this JCas.aResultSpec
- a list of outputs that this AnalysisEngine should produce.aTrace
- the object to which trace events will be recorded- Throws:
ResultNotSupportedException
- if this AnalysisEngine is not capable of producing the results requested inaResultSpec
.AnalysisEngineProcessException
- if a failure occurs during processing.- See Also:
-
processAndOutputNewCASes
Description copied from class:AnalysisEngineImplBase
Default implementation of processAndOutputNewCASes(JCas) method. Calls the version of this method that takes a CAS, then wraps the resulting CasIterator in a JCasIterator.- Specified by:
processAndOutputNewCASes
in interfaceAnalysisEngine
- Overrides:
processAndOutputNewCASes
in classAnalysisEngineImplBase
- Parameters:
aJCas
- the JCAS to be processed- Returns:
- an object for iterating through any output JCASes
- Throws:
AnalysisEngineProcessException
- if a failure occurs during processing
-
setResultSpecification
Description copied from interface:AnalysisEngine
Sets the list of output types and features that the application wants this AnalysisEngine to produce. This is only a guideline. Annotators may use this information to avoid doing unnecessary work, but they are not required to do so.- Specified by:
setResultSpecification
in interfaceAnalysisEngine
- Overrides:
setResultSpecification
in classAnalysisEngineImplBase
- Parameters:
aResultSpec
- specifies the list of output types and features that the application is interested in.
-
reconfigure
Description copied from interface:ConfigurableResource
Instructs this Resource to re-read its configuration parameter settings.- Specified by:
reconfigure
in interfaceAnalysisEngine
- Specified by:
reconfigure
in interfaceConfigurableResource
- Overrides:
reconfigure
in classConfigurableResource_ImplBase
- Throws:
ResourceConfigurationException
- if the configuration is not valid- See Also:
-
destroy
public void destroy()Description copied from interface:Resource
Releases all resources held by thisResource
.- Specified by:
destroy
in interfaceResource
- Overrides:
destroy
in classResource_ImplBase
- See Also:
-
setLogger
Description copied from class:Resource_ImplBase
Set the logger in the current UimaContext for use by user annotators.- Specified by:
setLogger
in interfaceAnalysisEngine
- Specified by:
setLogger
in interfaceResource
- Overrides:
setLogger
in classResource_ImplBase
- Parameters:
aLogger
- the logger for this Resource to use- See Also:
-
batchProcessComplete
Description copied from interface:AnalysisEngine
Notifies this AnalysisEngine that processing of a batch has completed. It is up to the caller to determine the size of a batch. Components (particularly CAS Consumers) inside this Analysis Engine may respond to this event, for example by writing data to the disk.- Specified by:
batchProcessComplete
in interfaceAnalysisEngine
- Overrides:
batchProcessComplete
in classAnalysisEngineImplBase
- Throws:
AnalysisEngineProcessException
- if an exception occurs during processing
-
collectionProcessComplete
Description copied from interface:AnalysisEngine
Notifies this AnalysisEngine that processing of an entire collection has completed. It is up to the caller to determine when this has occurred. Components (particularly CAS Consumers) inside this Analysis Engine may respond to this event, for example by writing data to the disk.If this AnalysisEngine is an aggregate, this method will call the collectionProcessComplete method of all components of that aggregate. If the aggregate descriptor declares a
fixedFlow
orcapabilityLanguageFlow
, then the components' collectionProcessComplete methods will be called in the order specified by that flow element. Once all components in the flow have been called, any components not declared in the flow will be called, in arbitrary order. If there is nofixedFlow
orcapabilityLanguageFlow
, then all components in the aggregate will be called in arbitrary order.- Specified by:
collectionProcessComplete
in interfaceAnalysisEngine
- Overrides:
collectionProcessComplete
in classAnalysisEngineImplBase
- Throws:
AnalysisEngineProcessException
- if an exception occurs during processing
-
getPool
protected org.apache.uima.internal.util.AnalysisEnginePool getPool()Gets the AnalysisEngine pool used to serve process requests.- Returns:
- the AnalysisEngine pool
-
getTimeout
protected int getTimeout()Gets the timeout period, after which an exception will be thrown if no AnalysisEngine is available in the pool.- Returns:
- the timeout period in milliseconds
-