org.apache.hudi.adapter.Utils 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.adapter;
import org.apache.hudi.internal.schema.InternalSchema;
import org.apache.hudi.internal.schema.Type;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.configuration.ReadableConfig;
import org.apache.flink.runtime.io.disk.iomanager.IOManager;
import org.apache.flink.runtime.memory.MemoryManager;
import org.apache.flink.table.catalog.ObjectIdentifier;
import org.apache.flink.table.catalog.ResolvedCatalogTable;
import org.apache.flink.table.data.RowData;
import org.apache.flink.table.factories.FactoryUtil;
import org.apache.flink.table.runtime.generated.NormalizedKeyComputer;
import org.apache.flink.table.runtime.generated.RecordComparator;
import org.apache.flink.table.runtime.operators.sort.BinaryExternalSorter;
import org.apache.flink.table.runtime.typeutils.AbstractRowDataSerializer;
import org.apache.flink.table.runtime.typeutils.BinaryRowDataSerializer;
import org.apache.flink.table.types.logical.LogicalType;
import java.util.Collections;
import java.util.List;
import java.util.function.Function;
/**
* Adapter utils.
*/
public class Utils {
public static FactoryUtil.DefaultDynamicTableContext getTableContext(
ObjectIdentifier tablePath,
ResolvedCatalogTable catalogTable,
ReadableConfig conf) {
return new FactoryUtil.DefaultDynamicTableContext(tablePath, catalogTable,
Collections.emptyMap(), conf, Thread.currentThread().getContextClassLoader(), false);
}
public static BinaryExternalSorter getBinaryExternalSorter(
final Object owner,
MemoryManager memoryManager,
long reservedMemorySize,
IOManager ioManager,
AbstractRowDataSerializer inputSerializer,
BinaryRowDataSerializer serializer,
NormalizedKeyComputer normalizedKeyComputer,
RecordComparator comparator,
Configuration conf) {
return new BinaryExternalSorter(owner, memoryManager, reservedMemorySize,
ioManager, inputSerializer, serializer, normalizedKeyComputer, comparator, conf);
}
public static InternalSchema applyTableChange(InternalSchema oldSchema, List changes, Function convertFunc) {
throw new AssertionError("Unexpected");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy