You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ambari.apache.org by "Hadoop QA (JIRA)" <ji...@apache.org> on 2017/11/01 12:36:00 UTC

[jira] [Commented] (AMBARI-22337) each service should be able to implement server actions, package them add a jar to be loaded during EU

    [ https://issues.apache.org/jira/browse/AMBARI-22337?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16234015#comment-16234015 ] 

Hadoop QA commented on AMBARI-22337:
------------------------------------

{color:red}-1 overall{color}.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12895043/AMBARI-22337-v2.patch
  against trunk revision .

    {color:green}+1 @author{color}.  The patch does not contain any @author tags.

    {color:green}+1 tests included{color}.  The patch appears to include 2 new or modified test files.

    {color:green}+1 release audit{color}.  The applied patch does not increase the total number of release audit warnings.

    {color:green}+1 javac{color}.  The applied patch does not increase the total number of javac compiler warnings.

    {color:red}-1 core tests{color}.  The patch failed these unit tests in ambari-server:

                  org.apache.ambari.server.actionmanager.TestActionScheduler

Console output: https://builds.apache.org/job/Ambari-trunk-test-patch/12591//console

This message is automatically generated.

> each service should be able to implement server actions, package them add a jar to be loaded during EU
> ------------------------------------------------------------------------------------------------------
>
>                 Key: AMBARI-22337
>                 URL: https://issues.apache.org/jira/browse/AMBARI-22337
>             Project: Ambari
>          Issue Type: Improvement
>          Components: ambari-server
>    Affects Versions: trunk
>            Reporter: Di Li
>            Assignee: Di Li
>            Priority: Major
>             Fix For: trunk
>
>         Attachments: AMBARI-22337-v2.patch, AMBARI-22337.patch
>
>
> xsi:type="server_action" tasks defined in EU/RU upgrade pack xml files currently can only classes from Ambari source code. This limites the server action that custom services / services from mpacks can perform. This JIRA proposes a way to allow each service to implement server action classes, package them in a jar to be loaded during EU
> 1. Each service can have a server_actions (support stack inheritance) such as /var/lib/ambari-server/resources/stacks/HDP/2.5/services/ZOOKEEPER/server_actions. 
>    a) The dir  contains jar for the server action classes.
>         /var/lib/ambari-server/resources/stacks/HDP/2.5/services/ZOOKEEPER/server_actions
>         [root@~ server_actions]# ll
>         total 8
>         -rw-r--r-- 1 root root 7510 Oct 30 10:49 test_full.jar
> 2. upgrade pack can then invoke the server action as shown below    
>      <!-- server action test without specifying a service in the execution stage-->
>     <group xsi:type="cluster" name="TEST_A" title="Test abc">
>       <execute-stage title="aaaa">
>         <task xsi:type="server_action" class="org.apache.ambari.server.serveraction.upgrades.SATestWithoutService"/>
>       </execute-stage>
>     </group>
>      <!-- server action test with a service specified in the execution stage-->
>     <execute-stage service="ZOOKEEPER" component="ZOOKEEPER_SERVER" title="Parame
> terizing Zookeeper Log4J Properties">
>         <task xsi:type="server_action" class="org.apache.ambari.server.serveraction.upgrades.SATestWithService">
>           <summary>zkpr test</summary>
>         </task>
>       </execute-stage>



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)