[HUDI-3978] Fix use of partition path field as hive partition field in flink (#5434)
* Fix partition path fields as hive sync partition fields error
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
/*
|
||||
* 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.sink.utils;
|
||||
|
||||
import org.apache.flink.configuration.Configuration;
|
||||
|
||||
import org.apache.hudi.configuration.FlinkOptions;
|
||||
import org.apache.hudi.hive.HiveSyncConfig;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
/**
|
||||
* Test cases for {@link HiveSyncContext}.
|
||||
*/
|
||||
public class TestHiveSyncContext {
|
||||
/**
|
||||
* Test that the file ids generated by the task can finally shuffled to itself.
|
||||
*/
|
||||
@Test
|
||||
public void testBuildSyncConfig() throws Exception {
|
||||
Configuration configuration1 = new Configuration();
|
||||
Configuration configuration2 = new Configuration();
|
||||
String hiveSyncPartitionField = "hiveSyncPartitionField";
|
||||
String partitionPathField = "partitionPathField";
|
||||
|
||||
configuration1.setString(FlinkOptions.HIVE_SYNC_PARTITION_FIELDS, hiveSyncPartitionField);
|
||||
configuration1.setString(FlinkOptions.PARTITION_PATH_FIELD, partitionPathField);
|
||||
|
||||
configuration2.setString(FlinkOptions.PARTITION_PATH_FIELD, partitionPathField);
|
||||
|
||||
Class<?> threadClazz = Class.forName("org.apache.hudi.sink.utils.HiveSyncContext");
|
||||
Method buildSyncConfigMethod = threadClazz.getDeclaredMethod("buildSyncConfig", Configuration.class);
|
||||
buildSyncConfigMethod.setAccessible(true);
|
||||
|
||||
HiveSyncConfig hiveSyncConfig1 = HiveSyncContext.buildSyncConfig(configuration1);
|
||||
HiveSyncConfig hiveSyncConfig2 = HiveSyncContext.buildSyncConfig(configuration2);
|
||||
|
||||
assertTrue(hiveSyncConfig1.partitionFields.get(0).equals(hiveSyncPartitionField));
|
||||
assertTrue(hiveSyncConfig2.partitionFields.get(0).equals(partitionPathField));
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user