You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@uima.apache.org by "Richard Eckart de Castilho (JIRA)" <de...@uima.apache.org> on 2016/09/09 17:49:21 UTC

[jira] [Updated] (UIMA-2143) CPE can't reconnect to restarted instances of a Vinci service

     [ https://issues.apache.org/jira/browse/UIMA-2143?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Richard Eckart de Castilho updated UIMA-2143:
---------------------------------------------
    Labels: Stale  (was: )

This issue is marked as "stale" due to inactivity for 5 years or longer. If no further activity is detected on this issue, it is scheduled be closed as 'unresolved' in 3 months time from now (Dec 2016).

> CPE can't reconnect to restarted instances of a Vinci service 
> --------------------------------------------------------------
>
>                 Key: UIMA-2143
>                 URL: https://issues.apache.org/jira/browse/UIMA-2143
>             Project: UIMA
>          Issue Type: Bug
>          Components: Collection Processing
>    Affects Versions: 2.3.1SDK
>         Environment: Window XP
>            Reporter: Bruno Freudensprung
>              Labels: Stale
>         Attachments: UIMA-2143.diff
>
>
> If you have this remote Vinci cas processor (configured to continue in case of error) in a CPE (that has 4 processing pipelines):
> {noformat} 
>     <casProcessors casPoolSize="5" processingUnitThreadCount="4">
>         <casProcessor deployment="remote" name="Analytics2">
>             <descriptor>
>                 <include href="Default_Analytics2.xml"/>
>             </descriptor>
>             <deploymentParameters>
>                 <parameter name="vnsHost" type="string" value="localhost"/>
>                 <parameter name="vnsPort" type="string" value="9000"/>
>                 <parameter name="service-access" type="string" value="exclusive"/>
>             </deploymentParameters>
>             <errorHandling>
>                 <errorRateThreshold action="continue" value="3/1000"/>
>                 <maxConsecutiveRestarts action="continue" value="5" waitTimeBetweenRetries="30000"/>
>                 <timeout max="2700000" default="-1"/>
>             </errorHandling>
>             <checkpoint batch="1" time="1000ms"/>
>         </casProcessor>
> {noformat} 
> When the corresponding Vinci service is restarted during the CPE execution, the CPE cannot correctly reconnect the 4 pipelines to the 4 instances of the Vinci service. This happens only in a multiple processing units environment.
> This is due to the fact that, in case of error, the failed CasProcessors are put in a list of failed processors and that processors are never removed from this list. The consequence is the CPE always try to fix the first processor.
> The problem seems to be located in: 
> uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/vinci/VinciCasProcessorDeployer.java
> Patch proposal attached.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)