All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hadoop.hive.ql.plan.ReplTxnWork Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.hadoop.hive.ql.plan;

import java.io.Serializable;

import org.apache.hadoop.hive.metastore.api.TxnToWriteId;
import org.apache.hadoop.hive.ql.parse.ReplicationSpec;
import org.apache.hadoop.hive.ql.plan.Explain.Level;
import java.util.Collections;
import java.util.List;

/**
 * ReplTxnTask.
 * Used for replaying the transaction related events.
 */
@Explain(displayName = "Replication Transaction", explainLevels = { Level.USER, Level.DEFAULT, Level.EXTENDED })
public class ReplTxnWork implements Serializable {
  private static final long serialVersionUID = 1L;
  private String replPolicy;
  private String dbName;
  private String tableName;
  private List partNames;
  private String validWriteIdList;
  private List txnIds;
  private List txnToWriteIdList;
  private ReplicationSpec replicationSpec;

  /**
   * OperationType.
   * Different kind of events supported for replaying.
   */
  public enum OperationType {
    REPL_OPEN_TXN, REPL_ABORT_TXN, REPL_COMMIT_TXN, REPL_ALLOC_WRITE_ID, REPL_WRITEID_STATE
  }

  OperationType operation;

  public ReplTxnWork(String replPolicy, String dbName, String tableName, List txnIds, OperationType type,
                     List txnToWriteIdList, ReplicationSpec replicationSpec) {
    this.txnIds = txnIds;
    this.dbName = dbName;
    this.tableName = tableName;
    this.operation = type;
    this.replPolicy = replPolicy;
    this.txnToWriteIdList = txnToWriteIdList;
    this.replicationSpec = replicationSpec;
  }

  public ReplTxnWork(String replPolicy, String dbName, String tableName, List txnIds, OperationType type,
                     ReplicationSpec replicationSpec) {
    this(replPolicy, dbName, tableName, txnIds, type, null, replicationSpec);
  }

  public ReplTxnWork(String replPolicy, String dbName, String tableName, Long txnId,
                     OperationType type, ReplicationSpec replicationSpec) {
    this(replPolicy, dbName, tableName, Collections.singletonList(txnId), type, null, replicationSpec);
  }

  public ReplTxnWork(String replPolicy, String dbName, String tableName, OperationType type,
                     List txnToWriteIdList, ReplicationSpec replicationSpec) {
    this(replPolicy, dbName, tableName, null, type, txnToWriteIdList, replicationSpec);
  }

  public ReplTxnWork(String dbName, String tableName, List partNames,
                     String validWriteIdList, OperationType type) {
    this.dbName = dbName;
    this.tableName = tableName;
    this.partNames = partNames;
    this.validWriteIdList = validWriteIdList;
    this.operation = type;
  }

  public List getTxnIds() {
    return txnIds;
  }

  public String getDbName() {
    return dbName;
  }

  public String getTableName()  {
    return ((tableName == null) || tableName.isEmpty()) ? null : tableName;
  }

  public String getReplPolicy() {
    return replPolicy;
  }

  public List getPartNames() {
    return partNames;
  }

  public String getValidWriteIdList() {
    return validWriteIdList;
  }

  public OperationType getOperationType() {
    return operation;
  }

  public List getTxnToWriteIdList() {
    return txnToWriteIdList;
  }

  public ReplicationSpec getReplicationSpec() {
    return replicationSpec;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy