Remove the "author" tag (#1829)
This commit is contained in:
@ -48,9 +48,6 @@ import java.lang.management.ManagementFactory;
|
||||
import java.nio.channels.FileLock;
|
||||
import java.nio.channels.OverlappingFileLockException;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 14-9-22.
|
||||
*/
|
||||
public class PaloFe {
|
||||
private static final Logger LOG = LogManager.getLogger(PaloFe.class);
|
||||
|
||||
|
||||
@ -62,11 +62,6 @@ import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jul 8, 2019
|
||||
*/
|
||||
|
||||
/*
|
||||
* Version 2 of RollupJob.
|
||||
* This is for replacing the old RollupJob
|
||||
|
||||
@ -67,11 +67,6 @@ import java.util.Map.Entry;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jul 8, 2019
|
||||
*/
|
||||
|
||||
/*
|
||||
* Version 2 of SchemaChangeJob.
|
||||
* This is for replacing the old SchemaChangeJob
|
||||
|
||||
@ -30,11 +30,6 @@ import com.google.common.collect.Maps;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jan 15, 2019
|
||||
*/
|
||||
|
||||
// admin set frontend config ("key" = "value");
|
||||
public class AdminSetConfigStmt extends DdlStmt {
|
||||
|
||||
|
||||
@ -31,11 +31,6 @@ import org.apache.doris.qe.ShowResultSetMetaData;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jan 15, 2019
|
||||
*/
|
||||
|
||||
// admin show frontend config;
|
||||
public class AdminShowConfigStmt extends ShowStmt {
|
||||
public static final ImmutableList<String> TITLE_NAMES = new ImmutableList.Builder<String>().add("Key").add(
|
||||
|
||||
@ -24,9 +24,6 @@ import org.apache.doris.common.UserException;
|
||||
|
||||
import com.google.common.base.Strings;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 14-7-30.
|
||||
*/
|
||||
public class CancelLoadStmt extends DdlStmt {
|
||||
|
||||
private String dbName;
|
||||
|
||||
@ -32,11 +32,6 @@ import com.google.common.base.Strings;
|
||||
import java.util.Map;
|
||||
import java.util.Optional;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: May 29, 2019
|
||||
*/
|
||||
|
||||
public class DropFileStmt extends DdlStmt {
|
||||
public static final String PROP_CATALOG = "catalog";
|
||||
|
||||
|
||||
@ -17,9 +17,6 @@
|
||||
|
||||
package org.apache.doris.analysis;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 2018/4/23.
|
||||
*/
|
||||
public class ImportColumnDesc {
|
||||
private String columnName;
|
||||
private Expr expr;
|
||||
|
||||
@ -19,9 +19,6 @@ package org.apache.doris.analysis;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 2018/4/23.
|
||||
*/
|
||||
public class ImportColumnsStmt extends StatementBase {
|
||||
private List<ImportColumnDesc> columns;
|
||||
|
||||
|
||||
@ -17,9 +17,6 @@
|
||||
|
||||
package org.apache.doris.analysis;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 2018/4/24.
|
||||
*/
|
||||
public class ImportWhereStmt extends StatementBase {
|
||||
private Expr expr;
|
||||
|
||||
|
||||
@ -25,9 +25,6 @@ import java.util.EnumMap;
|
||||
import java.util.EnumSet;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 14-7-30.
|
||||
*/
|
||||
public enum AggregateType {
|
||||
SUM("SUM"),
|
||||
MIN("MIN"),
|
||||
|
||||
@ -31,11 +31,6 @@ import java.io.IOException;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jun 10, 2019
|
||||
*/
|
||||
|
||||
/*
|
||||
* This class saves the schema of a colocation group
|
||||
*/
|
||||
|
||||
@ -36,9 +36,6 @@ import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 15/10/28.
|
||||
*/
|
||||
public class FunctionSet {
|
||||
private static final Logger LOG = LogManager.getLogger(FunctionSet.class);
|
||||
|
||||
|
||||
@ -19,9 +19,6 @@ package org.apache.doris.catalog;
|
||||
|
||||
import org.apache.doris.thrift.TPartitionType;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 14-8-26.
|
||||
*/
|
||||
public enum PartitionType {
|
||||
UNPARTITIONED("UNPARTITIONED"),
|
||||
RANGE("RANGE");
|
||||
|
||||
@ -42,8 +42,6 @@ import java.util.concurrent.locks.ReentrantLock;
|
||||
/**
|
||||
* cluster only save db and user's id and name
|
||||
*
|
||||
* @author chenhao
|
||||
*
|
||||
*/
|
||||
public class Cluster implements Writable {
|
||||
private static final Logger LOG = LogManager.getLogger(Cluster.class);
|
||||
|
||||
@ -27,7 +27,6 @@ import com.google.common.base.Strings;
|
||||
* method to makeup full name or get real name, full name is made up generally
|
||||
* in stmt's analyze.
|
||||
*
|
||||
* @author chenhao
|
||||
*/
|
||||
|
||||
public class ClusterNamespace {
|
||||
|
||||
@ -21,11 +21,6 @@ import org.apache.doris.transaction.TransactionStatus;
|
||||
|
||||
import com.google.common.base.Preconditions;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jan 16, 2019
|
||||
*/
|
||||
|
||||
public class LabelAlreadyUsedException extends DdlException {
|
||||
|
||||
private static final long serialVersionUID = -6798925248765094813L;
|
||||
|
||||
@ -23,9 +23,6 @@ import com.google.common.collect.Lists;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 14/12/2.
|
||||
*/
|
||||
public class BaseProcNode implements ProcNodeInterface {
|
||||
private ProcResult result;
|
||||
|
||||
|
||||
@ -21,9 +21,6 @@ import java.util.List;
|
||||
|
||||
import com.google.common.collect.Lists;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 14/11/6.
|
||||
*/
|
||||
public class BaseProcResult implements ProcResult {
|
||||
protected List<String> names;
|
||||
protected List<List<String>> rows;
|
||||
|
||||
@ -23,11 +23,6 @@ import org.apache.doris.thrift.TStorageMedium;
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import com.google.common.collect.Lists;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Mar 7, 2019
|
||||
*/
|
||||
|
||||
public class ClusterLoadStatByMedium implements ProcDirInterface {
|
||||
public static final ImmutableList<String> TITLE_NAMES = new ImmutableList.Builder<String>().add(
|
||||
"StorageMedium").build();
|
||||
|
||||
@ -25,11 +25,6 @@ import com.google.common.collect.Lists;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jun 11, 2019
|
||||
*/
|
||||
|
||||
/*
|
||||
* show proc "/colocation_group/group_name";
|
||||
*/
|
||||
|
||||
@ -22,9 +22,6 @@ import org.apache.doris.load.LoadErrorHub;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
||||
/**
|
||||
* Created by lingbin on 17/4/14.
|
||||
*/
|
||||
public class LoadErrorHubProcNode implements ProcNodeInterface {
|
||||
public static final ImmutableList<String> TITLE_NAMES = new ImmutableList.Builder<String>()
|
||||
.add("Type").add("Properties")
|
||||
|
||||
@ -19,9 +19,6 @@ package org.apache.doris.common.proc;
|
||||
|
||||
import org.apache.doris.common.AnalysisException;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 14/11/6.
|
||||
*/
|
||||
public interface ProcDirInterface extends ProcNodeInterface {
|
||||
public boolean register(String name, ProcNodeInterface node);
|
||||
|
||||
|
||||
@ -19,9 +19,6 @@ package org.apache.doris.common.proc;
|
||||
|
||||
import org.apache.doris.common.AnalysisException;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 14/11/6.
|
||||
*/
|
||||
public interface ProcNodeInterface {
|
||||
public ProcResult fetchResult() throws AnalysisException;
|
||||
}
|
||||
|
||||
@ -29,11 +29,6 @@ import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* author: wuyunfeng
|
||||
* date: 18/1/5 10:43
|
||||
* project: palo2
|
||||
*/
|
||||
public class TransDbProcDir implements ProcDirInterface {
|
||||
public static final ImmutableList<String> TITLE_NAMES = new ImmutableList.Builder<String>()
|
||||
.add("DbId")
|
||||
|
||||
@ -26,11 +26,6 @@ import com.google.common.collect.ImmutableList;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* author: wuyunfeng
|
||||
* date: 18/1/5 10:58
|
||||
* project: palo2
|
||||
*/
|
||||
public class TransPartitionProcNode implements ProcNodeInterface {
|
||||
public static final ImmutableList<String> TITLE_NAMES = new ImmutableList.Builder<String>()
|
||||
.add("PartitionId")
|
||||
|
||||
@ -29,11 +29,6 @@ import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* author: wuyunfeng
|
||||
* date: 18/1/5 10:43
|
||||
* project: palo2
|
||||
*/
|
||||
public class TransProcDir implements ProcDirInterface {
|
||||
public static final ImmutableList<String> TITLE_NAMES = new ImmutableList.Builder<String>()
|
||||
.add("TransactionId")
|
||||
|
||||
@ -24,11 +24,6 @@ import org.apache.doris.transaction.GlobalTransactionMgr;
|
||||
import com.google.common.base.Strings;
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
||||
/**
|
||||
* author: chenmingyu
|
||||
* date: 19/4/25 10:43
|
||||
* project: doris
|
||||
*/
|
||||
public class TransStateProcDir implements ProcDirInterface {
|
||||
public static final ImmutableList<String> TITLE_NAMES = new ImmutableList.Builder<String>()
|
||||
.add("State").add("Number")
|
||||
|
||||
@ -29,11 +29,6 @@ import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* author: wuyunfeng
|
||||
* date: 18/1/5 19:15
|
||||
* project: palo2
|
||||
*/
|
||||
public class TransTablesProcDir implements ProcDirInterface {
|
||||
public static final ImmutableList<String> TITLE_NAMES = new ImmutableList.Builder<String>()
|
||||
.add("TableId")
|
||||
|
||||
@ -26,9 +26,6 @@ import java.sql.Connection;
|
||||
import java.sql.DriverManager;
|
||||
import java.sql.SQLException;
|
||||
|
||||
/**
|
||||
* Created by lingbin on 17/4/14.
|
||||
*/
|
||||
public class MysqlUtil {
|
||||
private static final Logger LOG = LogManager.getLogger(MysqlUtil.class);
|
||||
|
||||
|
||||
@ -55,11 +55,6 @@ import java.util.Base64;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: May 29, 2019
|
||||
*/
|
||||
|
||||
/*
|
||||
* Manage some small files, such as certification file, public/private key used for some operations
|
||||
*/
|
||||
|
||||
@ -56,7 +56,6 @@ import okhttp3.Route;
|
||||
|
||||
/**
|
||||
* it is used to call es api to get shard allocation state
|
||||
* @author yiguolei
|
||||
*
|
||||
*/
|
||||
public class EsStateStore extends Daemon {
|
||||
|
||||
@ -17,11 +17,6 @@
|
||||
|
||||
package org.apache.doris.metric;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jan 30, 2019
|
||||
*/
|
||||
|
||||
public class GaugeMetricImpl<T> extends GaugeMetric<T> {
|
||||
|
||||
public GaugeMetricImpl(String name, String description) {
|
||||
@ -38,4 +33,4 @@ public class GaugeMetricImpl<T> extends GaugeMetric<T> {
|
||||
public T getValue() {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -19,11 +19,6 @@ package org.apache.doris.metric;
|
||||
|
||||
import java.util.TimerTask;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jan 30, 2019
|
||||
*/
|
||||
|
||||
/*
|
||||
* MetricCalculator will collect and calculate some certain metrics at a fix rate,
|
||||
* such QPS, and save the result for users to get.
|
||||
@ -71,4 +66,4 @@ public class MetricCalculator extends TimerTask {
|
||||
|
||||
lastTs = currentTs;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -29,11 +29,6 @@ import com.google.common.collect.Maps;
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jan 28, 2019
|
||||
*/
|
||||
|
||||
/*
|
||||
* SimpleCoreMetricVisitor only show some core metrics of FE, with format:
|
||||
* name type value
|
||||
|
||||
@ -27,11 +27,6 @@ import java.io.DataOutput;
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Feb 14, 2019
|
||||
*/
|
||||
|
||||
public class BackendTabletsInfo implements Writable {
|
||||
|
||||
private long backendId;
|
||||
|
||||
@ -25,11 +25,6 @@ import java.io.DataInput;
|
||||
import java.io.DataOutput;
|
||||
import java.io.IOException;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Mar 14, 2019
|
||||
*/
|
||||
|
||||
public class RoutineLoadOperation implements Writable {
|
||||
private long id;
|
||||
private JobState jobState;
|
||||
|
||||
@ -71,9 +71,6 @@ import org.apache.doris.common.DdlException;
|
||||
import org.apache.doris.load.EtlJobType;
|
||||
import org.apache.doris.load.Load;
|
||||
|
||||
/**
|
||||
* Created by zhaochun on 14/11/10.
|
||||
*/
|
||||
public class DdlExecutor {
|
||||
public static void execute(Catalog catalog, DdlStmt ddlStmt, String origStmt) throws DdlException, Exception {
|
||||
if (ddlStmt instanceof CreateClusterStmt) {
|
||||
|
||||
@ -24,11 +24,6 @@ import org.apache.logging.log4j.Logger;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Mar 14, 2019
|
||||
*/
|
||||
|
||||
// saves all TxnStateChangeListeners
|
||||
public class TxnStateCallbackFactory {
|
||||
private static final Logger LOG = LogManager.getLogger(TxnStateCallbackFactory.class);
|
||||
|
||||
@ -56,11 +56,6 @@ import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Aug 21, 2019
|
||||
*/
|
||||
|
||||
public class RollupJobV2Test {
|
||||
|
||||
private static FakeEditLog fakeEditLog;
|
||||
|
||||
@ -65,11 +65,6 @@ import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Aug 21, 2019
|
||||
*/
|
||||
|
||||
public class SchemaChangeJobV2Test {
|
||||
|
||||
private static FakeEditLog fakeEditLog;
|
||||
|
||||
@ -28,11 +28,6 @@ import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.CopyOnWriteArraySet;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jun 12, 2019
|
||||
*/
|
||||
|
||||
public class ColocateTableIndexTest {
|
||||
|
||||
@Test
|
||||
|
||||
@ -22,11 +22,6 @@ import org.junit.Test;
|
||||
|
||||
import javax.activation.MimetypesFileTypeMap;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Jun 14, 2019
|
||||
*/
|
||||
|
||||
public class MimeTypeTest {
|
||||
|
||||
@Test
|
||||
|
||||
@ -22,11 +22,6 @@ import org.apache.doris.mysql.privilege.PaloAuth;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Mar 24, 2019
|
||||
*/
|
||||
|
||||
public class WrappedAuth extends PaloAuth {
|
||||
@Override
|
||||
public boolean checkPassword(String remoteUser, String remoteHost, byte[] remotePasswd, byte[] randomString,
|
||||
|
||||
@ -39,11 +39,6 @@ import mockit.Mocked;
|
||||
import mockit.NonStrictExpectations;
|
||||
import mockit.internal.startup.Startup;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Mar 24, 2019
|
||||
*/
|
||||
|
||||
public class SetPasswordTest {
|
||||
|
||||
private PaloAuth auth;
|
||||
|
||||
@ -37,11 +37,6 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Aug 27, 2019
|
||||
*/
|
||||
|
||||
public class HashDistributionPrunerTest {
|
||||
|
||||
@Test
|
||||
|
||||
@ -35,11 +35,6 @@ import org.junit.rules.ExpectedException;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
/*
|
||||
* Author: Chenmingyu
|
||||
* Date: Mar 13, 2019
|
||||
*/
|
||||
|
||||
public class FEFunctionsTest {
|
||||
|
||||
@Rule
|
||||
|
||||
Reference in New Issue
Block a user