odps-console-basic/src/main/java/com/aliyun/openservices/odps/console/commands/CompactCommand.java [95:124]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        addSetting(taskConfig, settings);

        for (Entry<String, String> property : taskConfig.entrySet()) {
          task.setProperty(property.getKey(), property.getValue());
        }

        runJob(task);
        // success
        break;
      } catch (UserInterruptException e) {
        throw e;
      } catch (Exception e) {
        retryTime--;
        if (retryTime == 0) {
          throw new ODPSConsoleException(e.getMessage());
        }
        writer.writeError("retry " + retryTime);
        writer.writeDebug(StringUtils.stringifyException(e));
      }
    }
    // no exception ,print success
    writer.writeError("OK");
  }

  public String getTaskName() {
    return taskName;
  }

  public String getInstanceId() {
    return instanceId;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



odps-console-basic/src/main/java/com/aliyun/openservices/odps/console/commands/MergeCommand.java [75:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          addSetting(taskConfig, settings);
        }

        for (Entry<String, String> property : taskConfig.entrySet()) {
          task.setProperty(property.getKey(), property.getValue());
        }

        runJob(task);
        // success
        break;
      } catch (UserInterruptException e) {
        throw e;
      } catch (Exception e) {
        retryTime--;
        if (retryTime == 0) {
          throw new ODPSConsoleException(e.getMessage());
        }
        writer.writeError("retry " + retryTime);
        writer.writeDebug(StringUtils.stringifyException(e));
      }
    }
    // no exception ,print success
    writer.writeError("OK");
  }

  public String getTaskName() {
    return taskName;
  }

  public String getInstanceId() {
    return instanceId;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



