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

Examples of com.netflix.bdp.s3mper.alert.impl.AlertJanitor


        CommandLine cmdline = parser.parse(options, args);
       
        SQS_CMD cmd = SQS_CMD.valueOf(cmdline.getArgs()[0].toUpperCase());
       
       
        AlertJanitor janitor = new AlertJanitor();
        janitor.initalize(PathUtil.S3N, new Configuration());
        String queue = janitor.resolveQueueUrl(cmdline.getArgs()[1]);
       
        switch(cmd) {
            case LOG:
                janitor.writeLogs(queue, new Path(cmdline.getArgs()[2]));
                break;
            case PURGE:
                janitor.clearAll(queue);
                break;
            default:
                usage();
        }
    }
View Full Code Here

TOP

Related Classes of com.netflix.bdp.s3mper.alert.impl.AlertJanitor

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.