Strange warning message when deploying an Aggregate CM
------------------------------------------------------
Key: UIMA-1359
URL: https://issues.apache.org/jira/browse/UIMA-1359
Project: UIMA
Issue Type: Bug
Components: Async Scaleout
Reporter: Burn Lewis
Priority: Minor
Fix For: 2.3S
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
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.
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">
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.