Package com.netflix.bdp.s3mper.alert.impl.AbstractMessage

Examples of com.netflix.bdp.s3mper.alert.impl.AbstractMessage.QueryType


       
        message.setGenieId(conf.get("genie.job.id"));
        message.setDataovenId(conf.get("dataoven.job.id"));
        String queryId = conf.get("hive.query.id");
       
        QueryType queryType = QueryType.Unknown;
       
        if(queryId != null) {
            queryType = QueryType.Hive;
            message.setLogFile(conf.get("hive.log.file"));
        } else {
View Full Code Here

TOP

Related Classes of com.netflix.bdp.s3mper.alert.impl.AbstractMessage.QueryType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.