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

com.uber.hoodie.common.table.view.SpillableMapBasedFileSystemView Maven / Gradle / Ivy

/*
 * Copyright (c) 2019 Uber Technologies, Inc. ([email protected])
 *
 * Licensed 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 com.uber.hoodie.common.table.view;

import com.uber.hoodie.common.model.CompactionOperation;
import com.uber.hoodie.common.model.HoodieFileGroup;
import com.uber.hoodie.common.model.HoodieFileGroupId;
import com.uber.hoodie.common.table.HoodieTableMetaClient;
import com.uber.hoodie.common.table.HoodieTimeline;
import com.uber.hoodie.common.util.DefaultSizeEstimator;
import com.uber.hoodie.common.util.collection.ExternalSpillableMap;
import com.uber.hoodie.common.util.collection.Pair;
import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.stream.Stream;
import org.apache.hadoop.fs.FileStatus;
import org.apache.log4j.LogManager;
import org.apache.log4j.Logger;

/**
 * Table FileSystemView implementation where view is stored in spillable disk using fixed memory
 */
public class SpillableMapBasedFileSystemView extends HoodieTableFileSystemView {

  private static Logger log = LogManager.getLogger(SpillableMapBasedFileSystemView.class);

  private final long maxMemoryForFileGroupMap;
  private final long maxMemoryForPendingCompaction;
  private final String baseStoreDir;

  public SpillableMapBasedFileSystemView(HoodieTableMetaClient metaClient,
      HoodieTimeline visibleActiveTimeline, FileSystemViewStorageConfig config) {
    super(config.isIncrementalTimelineSyncEnabled());
    this.maxMemoryForFileGroupMap = config.getMaxMemoryForFileGroupMap();
    this.maxMemoryForPendingCompaction = config.getMaxMemoryForPendingCompaction();
    this.baseStoreDir = config.getBaseStoreDir();
    init(metaClient, visibleActiveTimeline);
  }

  public SpillableMapBasedFileSystemView(HoodieTableMetaClient metaClient,
      HoodieTimeline visibleActiveTimeline, FileStatus[] fileStatuses, FileSystemViewStorageConfig config) {
    this(metaClient, visibleActiveTimeline, config);
    addFilesToView(fileStatuses);
  }

  @Override
  protected Map> createPartitionToFileGroups() {
    try {
      log.info("Creating Partition To File groups map using external spillable Map. Max Mem="
          + maxMemoryForFileGroupMap + ", BaseDir=" + baseStoreDir);
      new File(baseStoreDir).mkdirs();
      return (Map>)
          (new ExternalSpillableMap<>(maxMemoryForFileGroupMap, baseStoreDir, new DefaultSizeEstimator(),
              new DefaultSizeEstimator<>()));
    } catch (IOException e) {
      throw new RuntimeException(e);
    }
  }

  protected Map> createFileIdToPendingCompactionMap(
      Map> fgIdToPendingCompaction) {
    try {
      log.info("Creating Pending Compaction map using external spillable Map. Max Mem="
          + maxMemoryForPendingCompaction + ", BaseDir=" + baseStoreDir);
      new File(baseStoreDir).mkdirs();
      Map> pendingMap =
          new ExternalSpillableMap<>(maxMemoryForPendingCompaction, baseStoreDir, new DefaultSizeEstimator(),
              new DefaultSizeEstimator<>());
      pendingMap.putAll(fgIdToPendingCompaction);
      return pendingMap;
    } catch (IOException e) {
      throw new RuntimeException(e);
    }
  }

  public Stream getAllFileGroups() {
    return ((ExternalSpillableMap)partitionToFileGroupsMap).valueStream()
        .flatMap(fg -> ((List)fg).stream());
  }

  @Override
  Stream> fetchPendingCompactionOperations() {
    return ((ExternalSpillableMap)fgIdToPendingCompaction).valueStream();

  }

  @Override
  public Stream fetchAllStoredFileGroups() {
    return ((ExternalSpillableMap)partitionToFileGroupsMap).valueStream().flatMap(fg -> {
      return ((List)fg).stream();
    });
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy