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

org.apache.accumulo.manager.tableOps.TableInfo Maven / Gradle / Ivy

Go to download

The manager server for Apache Accumulo for load balancing and other system-wide operations.

There is a newer version: 3.0.0
Show newest version
/*
 * 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
 *
 *   https://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.accumulo.manager.tableOps;

import java.io.Serializable;
import java.util.Map;

import org.apache.accumulo.core.client.admin.InitialTableState;
import org.apache.accumulo.core.client.admin.TimeType;
import org.apache.accumulo.core.data.NamespaceId;
import org.apache.accumulo.core.data.TableId;
import org.apache.hadoop.fs.Path;

public class TableInfo implements Serializable {

  private static final long serialVersionUID = 1L;

  private String tableName;
  private TableId tableId;
  private NamespaceId namespaceId;

  private TimeType timeType;
  private String user;

  // Record requested initial state at creation
  private InitialTableState initialTableState;

  // Track information related to initial split creation
  private int initialSplitSize;
  private String splitFile;
  private String splitDirsFile;

  public Map props;

  public String getTableName() {
    return tableName;
  }

  public void setTableName(String tableName) {
    this.tableName = tableName;
  }

  public TableId getTableId() {
    return tableId;
  }

  public void setTableId(TableId tableId) {
    this.tableId = tableId;
  }

  public NamespaceId getNamespaceId() {
    return namespaceId;
  }

  public void setNamespaceId(NamespaceId namespaceId) {
    this.namespaceId = namespaceId;
  }

  public TimeType getTimeType() {
    return timeType;
  }

  public void setTimeType(TimeType timeType) {
    this.timeType = timeType;
  }

  public String getUser() {
    return user;
  }

  public void setUser(String user) {
    this.user = user;
  }

  public Path getSplitPath() {
    return new Path(splitFile);
  }

  // stored as string for Java serialization
  public void setSplitPath(Path splitPath) {
    this.splitFile = splitPath == null ? null : splitPath.toString();
  }

  public Path getSplitDirsPath() {
    return new Path(splitDirsFile);
  }

  // stored as string for Java serialization
  public void setSplitDirsPath(Path splitDirsPath) {
    this.splitDirsFile = splitDirsPath == null ? null : splitDirsPath.toString();
  }

  public InitialTableState getInitialTableState() {
    return initialTableState;
  }

  public void setInitialTableState(InitialTableState initialTableState) {
    this.initialTableState = initialTableState;
  }

  public int getInitialSplitSize() {
    return initialSplitSize;
  }

  public void setInitialSplitSize(int initialSplitSize) {
    this.initialSplitSize = initialSplitSize;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy