Package org.apache.oozie.command.coord

Examples of org.apache.oozie.command.coord.CoordActionInputCheckCommand


                                                                                INSTR_RECOVERED_COORD_ACTIONS_COUNTER, 1);
                    if (caction.getStatus() == CoordinatorActionBean.Status.WAITING) {
                        if (useXCommand) {
                            queueCallable(new CoordActionInputCheckXCommand(caction.getId()));
                        } else {
                            queueCallable(new CoordActionInputCheckCommand(caction.getId()));
                        }

                        log.info("Recover a WAITTING coord action and resubmit CoordActionInputCheckXCommand :" + caction.getId());
                    }
                    else if (caction.getStatus() == CoordinatorActionBean.Status.SUBMITTED) {
View Full Code Here


                msg.append(", COORD_ACTIONS : " + cactions.size());
                for (CoordinatorActionBean caction : cactions) {
                    Services.get().get(InstrumentationService.class).get().incr(INSTRUMENTATION_GROUP,
                                                                                INSTR_RECOVERED_COORD_ACTIONS_COUNTER, 1);
                    if (caction.getStatus() == CoordinatorActionBean.Status.WAITING) {
                        CoordActionInputCheckCommand.queue(new CoordActionInputCheckCommand(caction.getId()), 0);
                        log.info("Recover a WAITTING coord action :" + caction.getId());
                    }
                    else {
                        if (caction.getStatus() == CoordinatorActionBean.Status.SUBMITTED) {
                            CoordinatorJobBean coordJob = store.getCoordinatorJob(caction.getJobId(), false);
View Full Code Here

                                                                                INSTR_RECOVERED_COORD_ACTIONS_COUNTER, 1);
                    if (caction.getStatus() == CoordinatorActionBean.Status.WAITING) {
                        if (useXCommand) {
                            queueCallable(new CoordActionInputCheckXCommand(caction.getId()));
                        } else {
                            queueCallable(new CoordActionInputCheckCommand(caction.getId()));
                        }

                        log.info("Recover a WAITTING coord action and resubmit CoordActionInputCheckXCommand :" + caction.getId());
                    }
                    else if (caction.getStatus() == CoordinatorActionBean.Status.SUBMITTED) {
View Full Code Here

TOP

Related Classes of org.apache.oozie.command.coord.CoordActionInputCheckCommand

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.