mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-02 04:08:31 +08:00
fix code style
This commit is contained in:
parent
2dd5279388
commit
ac8fafa343
@ -17,12 +17,10 @@
|
||||
|
||||
package org.apache.dolphinscheduler.server.worker;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import org.apache.dolphinscheduler.common.Constants;
|
||||
import org.apache.dolphinscheduler.common.IStoppable;
|
||||
import org.apache.dolphinscheduler.common.enums.NodeType;
|
||||
import org.apache.dolphinscheduler.common.thread.Stopper;
|
||||
import org.apache.dolphinscheduler.common.utils.PropertyUtils;
|
||||
import org.apache.dolphinscheduler.remote.NettyRemotingServer;
|
||||
import org.apache.dolphinscheduler.remote.command.CommandType;
|
||||
import org.apache.dolphinscheduler.remote.config.NettyServerConfig;
|
||||
@ -37,14 +35,14 @@ import org.apache.dolphinscheduler.server.worker.runner.RetryReportTaskStatusThr
|
||||
import org.apache.dolphinscheduler.server.worker.runner.WorkerManagerThread;
|
||||
import org.apache.dolphinscheduler.service.alert.AlertClientService;
|
||||
import org.apache.dolphinscheduler.service.bean.SpringApplicationContext;
|
||||
import org.apache.dolphinscheduler.spi.plugin.DolphinPluginLoader;
|
||||
import org.apache.dolphinscheduler.spi.plugin.DolphinPluginManagerConfig;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
import javax.annotation.PostConstruct;
|
||||
|
||||
import org.apache.dolphinscheduler.spi.plugin.DolphinPluginLoader;
|
||||
import org.apache.dolphinscheduler.spi.plugin.DolphinPluginManagerConfig;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@ -54,6 +52,8 @@ import org.springframework.context.annotation.ComponentScan;
|
||||
import org.springframework.context.annotation.FilterType;
|
||||
import org.springframework.transaction.annotation.EnableTransactionManagement;
|
||||
|
||||
import com.facebook.presto.jdbc.internal.guava.collect.ImmutableList;
|
||||
|
||||
/**
|
||||
* worker server
|
||||
*/
|
||||
|
@ -109,7 +109,7 @@ public class TaskKillProcessor implements NettyRequestProcessor {
|
||||
List<String> appIds = Collections.emptyList();
|
||||
int taskInstanceId = killCommand.getTaskInstanceId();
|
||||
TaskRequest taskRequest = TaskExecutionContextCacheManager.getByTaskInstanceId(taskInstanceId);
|
||||
TaskExecutionContext taskExecutionContext =JSONUtils.parseObject(JSONUtils.toJsonString(taskRequest), TaskExecutionContext.class);
|
||||
TaskExecutionContext taskExecutionContext = JSONUtils.parseObject(JSONUtils.toJsonString(taskRequest), TaskExecutionContext.class);
|
||||
|
||||
try {
|
||||
Integer processId = taskExecutionContext.getProcessId();
|
||||
@ -156,7 +156,7 @@ public class TaskKillProcessor implements NettyRequestProcessor {
|
||||
if (taskRequest == null) {
|
||||
return taskKillResponseCommand;
|
||||
}
|
||||
TaskExecutionContext taskExecutionContext =JSONUtils.parseObject(JSONUtils.toJsonString(taskRequest), TaskExecutionContext.class);
|
||||
TaskExecutionContext taskExecutionContext = JSONUtils.parseObject(JSONUtils.toJsonString(taskRequest), TaskExecutionContext.class);
|
||||
if (taskExecutionContext != null) {
|
||||
taskKillResponseCommand.setTaskInstanceId(taskExecutionContext.getTaskInstanceId());
|
||||
taskKillResponseCommand.setHost(taskExecutionContext.getHost());
|
||||
|
@ -100,8 +100,8 @@ public class WorkerManagerThread implements Runnable {
|
||||
if (taskRequest == null) {
|
||||
return;
|
||||
}
|
||||
TaskExecutionContext taskExecutionContext =JSONUtils.parseObject(JSONUtils.toJsonString(taskRequest), TaskExecutionContext.class);
|
||||
TaskExecuteResponseCommand responseCommand = new TaskExecuteResponseCommand(taskExecutionContext.getTaskInstanceId(),taskExecutionContext.getProcessInstanceId());
|
||||
TaskExecutionContext taskExecutionContext = JSONUtils.parseObject(JSONUtils.toJsonString(taskRequest), TaskExecutionContext.class);
|
||||
TaskExecuteResponseCommand responseCommand = new TaskExecuteResponseCommand(taskExecutionContext.getTaskInstanceId(), taskExecutionContext.getProcessInstanceId());
|
||||
responseCommand.setStatus(ExecutionStatus.KILL.getCode());
|
||||
ResponceCache.get().cache(taskExecutionContext.getTaskInstanceId(), responseCommand.convert2Command(), Event.RESULT);
|
||||
taskCallbackService.sendResult(taskExecutionContext.getTaskInstanceId(), responseCommand.convert2Command());
|
||||
|
@ -15,7 +15,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.dolphinscheduler.spi.params.inputNumber;
|
||||
package org.apache.dolphinscheduler.spi.params.input.number;
|
||||
|
||||
import static org.apache.dolphinscheduler.spi.params.base.FormType.INPUTNUMBER;
|
||||
|
@ -15,7 +15,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.dolphinscheduler.spi.params.inputNumber;
|
||||
package org.apache.dolphinscheduler.spi.params.input.number;
|
||||
|
||||
import org.apache.dolphinscheduler.spi.params.base.ParamsProps;
|
||||
|
@ -100,8 +100,6 @@ public abstract class AbstractTask {
|
||||
this.cancel = status;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setVarPool(String varPool) {
|
||||
this.varPool = varPool;
|
||||
}
|
||||
|
@ -19,7 +19,14 @@ package org.apache.dolphinscheduler.spi.utils;
|
||||
|
||||
import org.apache.commons.beanutils.BeanMap;
|
||||
|
||||
import java.util.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.function.Function;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
|
@ -17,7 +17,6 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.datasource;
|
||||
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.clickhouse.ClickHouseDatasourceParamDTO;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.db2.Db2DatasourceParamDTO;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.hive.HiveDataSourceParamDTO;
|
||||
@ -27,6 +26,7 @@ import org.apache.dolphinscheduler.plugin.task.datasource.postgresql.PostgreSqlD
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.presto.PrestoDatasourceParamDTO;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.spark.SparkDatasourceParamDTO;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.sqlserver.SqlServerDatasourceParamDTO;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Map;
|
||||
|
@ -17,18 +17,18 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.datasource.clickhouse;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.encodePassword;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.COLON;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.COMMA;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.COM_CLICKHOUSE_JDBC_DRIVER;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.DOUBLE_SLASH;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.JDBC_CLICKHOUSE;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.encodePassword;
|
||||
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.AbstractDatasourceProcessor;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseDataSourceParamDTO;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.ConnectionParam;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.datasource.db2;
|
||||
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseDataSourceParamDTO;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
|
||||
public class Db2DatasourceParamDTO extends BaseDataSourceParamDTO {
|
||||
|
||||
|
@ -17,19 +17,19 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.datasource.db2;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.encodePassword;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.COLON;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.COMMA;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.COM_DB2_JDBC_DRIVER;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.DOUBLE_SLASH;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.JDBC_DB2;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.encodePassword;
|
||||
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.AbstractDatasourceProcessor;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseDataSourceParamDTO;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.ConnectionParam;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.datasource.hive;
|
||||
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseHdfsDatasourceParamDTO;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
|
||||
public class HiveDataSourceParamDTO extends BaseHdfsDatasourceParamDTO {
|
||||
|
||||
|
@ -17,21 +17,21 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.datasource.hive;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.encodePassword;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.COLON;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.COMMA;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.DOUBLE_SLASH;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.JDBC_HIVE_2;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.ORG_APACHE_HIVE_JDBC_HIVE_DRIVER;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.encodePassword;
|
||||
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.AbstractDatasourceProcessor;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseDataSourceParamDTO;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.ConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.HiveConfUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.util.CommonUtils;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.datasource.presto;
|
||||
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseDataSourceParamDTO;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
|
||||
public class PrestoDatasourceParamDTO extends BaseDataSourceParamDTO {
|
||||
|
||||
|
@ -17,19 +17,19 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.datasource.presto;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.encodePassword;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.COLON;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.COMMA;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.COM_PRESTO_JDBC_DRIVER;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.DOUBLE_SLASH;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.JDBC_PRESTO;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.encodePassword;
|
||||
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.AbstractDatasourceProcessor;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseDataSourceParamDTO;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.ConnectionParam;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
||||
|
@ -17,21 +17,21 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.datax;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.EXIT_CODE_FAILURE;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.RWXR_XR_X;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.ShellCommandExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.api.TaskResponse;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.DatasourceUtil;
|
||||
import org.apache.dolphinscheduler.plugin.task.util.MapUtils;
|
||||
import org.apache.dolphinscheduler.plugin.task.util.OSUtils;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.spi.enums.Flag;
|
||||
import org.apache.dolphinscheduler.spi.task.AbstractParameters;
|
||||
import org.apache.dolphinscheduler.spi.task.Property;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.DatasourceUtil;
|
||||
import org.apache.dolphinscheduler.spi.task.paramparser.ParamUtils;
|
||||
import org.apache.dolphinscheduler.spi.task.paramparser.ParameterUtils;
|
||||
import org.apache.dolphinscheduler.spi.task.request.DataxTaskRequest;
|
||||
@ -148,7 +148,7 @@ public class DataxTask extends AbstractTaskExecutor {
|
||||
Thread.currentThread().setName(threadLoggerInfoName);
|
||||
|
||||
// replace placeholder,and combine local and global parameters
|
||||
Map<String, Property> paramsMap = ParamUtils.convert(taskExecutionContext,getParameters());
|
||||
Map<String, Property> paramsMap = ParamUtils.convert(taskExecutionContext, getParameters());
|
||||
if (MapUtils.isEmpty(paramsMap)) {
|
||||
paramsMap = new HashMap<>();
|
||||
}
|
||||
|
@ -22,14 +22,14 @@ import static org.apache.dolphinscheduler.spi.task.TaskConstants.EXIT_CODE_SUCCE
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.TASK_LOG_INFO_FORMAT;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.api.AbstractTaskExecutor;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.ConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.DatasourceUtil;
|
||||
import org.apache.dolphinscheduler.spi.enums.DataType;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.spi.enums.TaskTimeoutStrategy;
|
||||
import org.apache.dolphinscheduler.spi.task.AbstractParameters;
|
||||
import org.apache.dolphinscheduler.spi.task.Direct;
|
||||
import org.apache.dolphinscheduler.spi.task.Property;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.ConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.DatasourceUtil;
|
||||
import org.apache.dolphinscheduler.spi.task.paramparser.ParamUtils;
|
||||
import org.apache.dolphinscheduler.spi.task.paramparser.ParameterUtils;
|
||||
import org.apache.dolphinscheduler.spi.task.request.ProcedureTaskRequest;
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.sqoop.generator.sources;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
import static org.apache.dolphinscheduler.plugin.task.sqoop.SqoopConstants.COLUMNS;
|
||||
import static org.apache.dolphinscheduler.plugin.task.sqoop.SqoopConstants.DB_CONNECT;
|
||||
import static org.apache.dolphinscheduler.plugin.task.sqoop.SqoopConstants.DB_PWD;
|
||||
@ -32,16 +33,15 @@ import static org.apache.dolphinscheduler.spi.task.TaskConstants.COMMA;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.DOUBLE_QUOTES;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.EQUAL_SIGN;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.SPACE;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.DatasourceUtil;
|
||||
import org.apache.dolphinscheduler.plugin.task.sqoop.SqoopQueryType;
|
||||
import org.apache.dolphinscheduler.plugin.task.sqoop.generator.ISourceGenerator;
|
||||
import org.apache.dolphinscheduler.plugin.task.sqoop.parameter.SqoopParameters;
|
||||
import org.apache.dolphinscheduler.plugin.task.sqoop.parameter.sources.SourceMysqlParameter;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.spi.task.Property;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.DatasourceUtil;
|
||||
import org.apache.dolphinscheduler.spi.task.request.SqoopTaskRequest;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
package org.apache.dolphinscheduler.plugin.task.sqoop.generator.targets;
|
||||
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
import static org.apache.dolphinscheduler.plugin.task.sqoop.SqoopConstants.COLUMNS;
|
||||
import static org.apache.dolphinscheduler.plugin.task.sqoop.SqoopConstants.DB_CONNECT;
|
||||
import static org.apache.dolphinscheduler.plugin.task.sqoop.SqoopConstants.DB_PWD;
|
||||
@ -29,14 +30,13 @@ import static org.apache.dolphinscheduler.plugin.task.sqoop.SqoopConstants.UPDAT
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.DOUBLE_QUOTES;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.SINGLE_QUOTES;
|
||||
import static org.apache.dolphinscheduler.spi.task.TaskConstants.SPACE;
|
||||
import static org.apache.dolphinscheduler.plugin.task.datasource.PasswordUtils.decodePassword;
|
||||
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.DatasourceUtil;
|
||||
import org.apache.dolphinscheduler.plugin.task.sqoop.generator.ITargetGenerator;
|
||||
import org.apache.dolphinscheduler.plugin.task.sqoop.parameter.SqoopParameters;
|
||||
import org.apache.dolphinscheduler.plugin.task.sqoop.parameter.targets.TargetMysqlParameter;
|
||||
import org.apache.dolphinscheduler.spi.enums.DbType;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.BaseConnectionParam;
|
||||
import org.apache.dolphinscheduler.plugin.task.datasource.DatasourceUtil;
|
||||
import org.apache.dolphinscheduler.spi.task.request.SqoopTaskRequest;
|
||||
import org.apache.dolphinscheduler.spi.utils.JSONUtils;
|
||||
import org.apache.dolphinscheduler.spi.utils.StringUtils;
|
||||
|
Loading…
Reference in New Issue
Block a user