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

org.apache.hudi.io.hfile.HFileInfo 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.hudi.io.hfile;

import org.apache.hudi.common.util.Option;
import org.apache.hudi.io.util.IOUtils;

import java.util.Map;

/**
 * Represents the HFile info read from {@link HFileBlockType#FILE_INFO} block.
 */
public class HFileInfo {
  private static final String RESERVED_PREFIX = "hfile.";
  private static final UTF8StringKey LAST_KEY =
      new UTF8StringKey(RESERVED_PREFIX + "LASTKEY");
  private static final UTF8StringKey FILE_CREATION_TIME_TS =
      new UTF8StringKey(RESERVED_PREFIX + "CREATE_TIME_TS");
  private static final UTF8StringKey KEY_VALUE_VERSION =
      new UTF8StringKey("KEY_VALUE_VERSION");
  private static final UTF8StringKey MAX_MVCC_TS_KEY =
      new UTF8StringKey("MAX_MEMSTORE_TS_KEY");

  private static final int KEY_VALUE_VERSION_WITH_MVCC_TS = 1;

  private final Map infoMap;
  private final long fileCreationTime;
  private final Option lastKey;
  private final long maxMvccTs;
  private final boolean containsMvccTs;

  public HFileInfo(Map infoMap) {
    this.infoMap = infoMap;
    this.fileCreationTime = parseFileCreationTime();
    this.lastKey = parseLastKey();
    this.maxMvccTs = parseMaxMvccTs();
    this.containsMvccTs = maxMvccTs > 0;
    if (containsMvccTs) {
      // The HFile written by Hudi does not contain MVCC timestamps.
      // Parsing MVCC timestamps is not supported.
      throw new UnsupportedOperationException("HFiles with MVCC timestamps are not supported");
    }
  }

  public long getFileCreationTime() {
    return fileCreationTime;
  }

  public Option getLastKey() {
    return lastKey;
  }

  public byte[] get(UTF8StringKey key) {
    return infoMap.get(key);
  }

  private long parseFileCreationTime() {
    byte[] bytes = infoMap.get(FILE_CREATION_TIME_TS);
    return bytes != null ? IOUtils.readLong(bytes, 0) : 0;
  }

  private Option parseLastKey() {
    byte[] bytes = infoMap.get(LAST_KEY);
    return bytes != null ? Option.of(new Key(bytes)) : Option.empty();
  }

  private long parseMaxMvccTs() {
    byte[] bytes = infoMap.get(KEY_VALUE_VERSION);
    boolean supportsMvccTs = bytes != null
        && IOUtils.readInt(bytes, 0) == KEY_VALUE_VERSION_WITH_MVCC_TS;
    return supportsMvccTs ? IOUtils.readLong(infoMap.get(MAX_MVCC_TS_KEY), 0) : 0;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy