TabletMeta.java
// 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.doris.catalog;
import org.apache.doris.thrift.TStorageMedium;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
public class TabletMeta {
private static final Logger LOG = LogManager.getLogger(TabletMeta.class);
private final long dbId;
private final long tableId;
private final long partitionId;
private final long indexId;
private int oldSchemaHash;
private int newSchemaHash;
private TStorageMedium storageMedium;
public TabletMeta(long dbId, long tableId, long partitionId, long indexId, int schemaHash,
TStorageMedium storageMedium) {
this.dbId = dbId;
this.tableId = tableId;
this.partitionId = partitionId;
this.indexId = indexId;
this.oldSchemaHash = schemaHash;
this.newSchemaHash = -1;
this.storageMedium = storageMedium;
}
public long getDbId() {
return dbId;
}
public long getTableId() {
return tableId;
}
public long getPartitionId() {
return partitionId;
}
public long getIndexId() {
return indexId;
}
public TStorageMedium getStorageMedium() {
return storageMedium;
}
public void setStorageMedium(TStorageMedium storageMedium) {
this.storageMedium = storageMedium;
}
public int getOldSchemaHash() {
return this.oldSchemaHash;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("dbId=").append(dbId);
sb.append(" tableId=").append(tableId);
sb.append(" partitionId=").append(partitionId);
sb.append(" indexId=").append(indexId);
sb.append(" oldSchemaHash=").append(oldSchemaHash);
sb.append(" newSchemaHash=").append(newSchemaHash);
return sb.toString();
}
}