You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@oozie.apache.org by "Purshotam Shah (JIRA)" <ji...@apache.org> on 2014/10/02 23:21:34 UTC

[jira] [Updated] (OOZIE-2019) SLA miss processed on server2 not send email

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

Purshotam Shah updated OOZIE-2019:
----------------------------------
    Description: 
It's because of below function. When we try to load config string from DB and recreate
event action map, it doesn't create event map properly.
 "StringTokenizer(slaConfig, "},");" has issue. It tries to tokenized on "," 
and "},".


a.slaConfig="{alert_contact=hadoopqa@oozie.com},{alert_events=START_MET,DURATION_MISS,END_MET},";

Will become
alert_events=START_MET
alert_contact=hadoopqa@oozie.com.


Fix is used to use String.split().

{code}
    private void slaConfigStringToMap() {
        if (slaConfig != null) {
            StringTokenizer st = new StringTokenizer(slaConfig, "},");
            while (st.hasMoreTokens()) {
                String token = st.nextToken();
                String[] pair = token.split("=");
                if (pair.length == 2) {
                    slaConfigMap.put(pair[0].substring(1), pair[1]);
                }
            }
        }
    }
{code}

> SLA miss processed on server2 not send email
> --------------------------------------------
>
>                 Key: OOZIE-2019
>                 URL: https://issues.apache.org/jira/browse/OOZIE-2019
>             Project: Oozie
>          Issue Type: Bug
>            Reporter: Purshotam Shah
>
> It's because of below function. When we try to load config string from DB and recreate
> event action map, it doesn't create event map properly.
>  "StringTokenizer(slaConfig, "},");" has issue. It tries to tokenized on "," 
> and "},".
> a.slaConfig="{alert_contact=hadoopqa@oozie.com},{alert_events=START_MET,DURATION_MISS,END_MET},";
> Will become
> alert_events=START_MET
> alert_contact=hadoopqa@oozie.com.
> Fix is used to use String.split().
> {code}
>     private void slaConfigStringToMap() {
>         if (slaConfig != null) {
>             StringTokenizer st = new StringTokenizer(slaConfig, "},");
>             while (st.hasMoreTokens()) {
>                 String token = st.nextToken();
>                 String[] pair = token.split("=");
>                 if (pair.length == 2) {
>                     slaConfigMap.put(pair[0].substring(1), pair[1]);
>                 }
>             }
>         }
>     }
> {code}



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