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

org.apache.hudi.index.HoodieInternalProxyIndex Maven / Gradle / Ivy

The 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
 *
 *   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.index;

import org.apache.hudi.client.WriteStatus;
import org.apache.hudi.common.data.HoodieData;
import org.apache.hudi.common.engine.HoodieEngineContext;
import org.apache.hudi.common.model.HoodieRecord;
import org.apache.hudi.config.HoodieWriteConfig;
import org.apache.hudi.exception.HoodieIndexException;
import org.apache.hudi.table.HoodieTable;

/**
 * Index that does not do tagging. Its purpose is to be used for Spark sql Merge into command
 * Merge into does not need to use index lookup because we get the location from the meta columns
 * from the join. The reason why we can't use the prepped path is because we sometimes need to do
 * a mix of updates and inserts and prepped only handles existing records
 */
public class HoodieInternalProxyIndex extends HoodieIndex {
  public HoodieInternalProxyIndex(HoodieWriteConfig config) {
    super(config);
  }

  @Override
  public  HoodieData> tagLocation(HoodieData> records, HoodieEngineContext context, HoodieTable hoodieTable) throws HoodieIndexException {
    return records;
  }

  @Override
  public HoodieData updateLocation(HoodieData writeStatuses, HoodieEngineContext context, HoodieTable hoodieTable) throws HoodieIndexException {
    return writeStatuses;
  }

  @Override
  public boolean rollbackCommit(String instantTime) {
    return true;
  }

  @Override
  public boolean isGlobal() {
    return false;
  }

  @Override
  public boolean canIndexLogFiles() {
    return false;
  }

  @Override
  public boolean isImplicitWithStorage() {
    return false;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy