Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
What's the correct syntax when deploying an aggregate CM?
When running testClientWithAggregateMultiplier we get the warning:
-
-
- WARN: line-number: 36 deployment descriptor for analysisEngine: TopLevelTaeQueue is for a top-level CAS Multiplier (or Collection Reader wrapped as a CAS Multiplier).
However, the <casMultiplier> element is missing.
Defaulting to a poolSize of 1, initialFsHeapSize of 2,000,000
- WARN: line-number: 36 deployment descriptor for analysisEngine: TopLevelTaeQueue is for a top-level CAS Multiplier (or Collection Reader wrapped as a CAS Multiplier).
-
but when I add the casMultiplier element it decides to ignore it!
-
-
- WARNING: line-number: 36 casMultiplier settings for poolSize ( poolSize="55") and initialFsHeapSize ( )
will be ignored for the analysisEngine with key= TopLevelTaeQueue
because the pool specs are set using the contained delegate cas multiplier specification.
- WARNING: line-number: 36 casMultiplier settings for poolSize ( poolSize="55") and initialFsHeapSize ( )
-
The change I made was:
Index: uimaj-as-activemq/src/test/resources/deployment/Deploy_AggregateMultiplier.xml
===================================================================
— uimaj-as-activemq/src/test/resources/deployment/Deploy_AggregateMultiplier.xml (revision 779293)
+++ uimaj-as-activemq/src/test/resources/deployment/Deploy_AggregateMultiplier.xml (working copy)
@@ -34,6 +34,7 @@
<import location="../descriptors/analysis_engine/SimpleTestAggregateCasMultiplier.xml"/>
</topDescriptor>
<analysisEngine>
+ <casMultiplier poolSize="55"/>
<delegates>
<remoteAnalysisEngine key="TestMultiplier">
Attachments
Issue Links
- incorporates
-
UIMA-1040 Modify dd2spring to handle UIMA-AS Aggregate Cas Multipliers
- Closed