| /* |
| * 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.keygen.factory; |
| |
| import org.apache.hudi.common.config.TypedProperties; |
| import org.apache.hudi.common.util.StringUtils; |
| import org.apache.hudi.config.HoodieWriteConfig; |
| import org.apache.hudi.exception.HoodieKeyGeneratorException; |
| import org.apache.hudi.keygen.BaseKeyGenerator; |
| import org.apache.hudi.keygen.ComplexAvroKeyGenerator; |
| import org.apache.hudi.keygen.CustomAvroKeyGenerator; |
| import org.apache.hudi.keygen.GlobalAvroDeleteKeyGenerator; |
| import org.apache.hudi.keygen.AutoRecordGenWrapperAvroKeyGenerator; |
| import org.apache.hudi.keygen.KeyGenUtils; |
| import org.apache.hudi.keygen.KeyGenerator; |
| import org.apache.hudi.keygen.NonpartitionedAvroKeyGenerator; |
| import org.apache.hudi.keygen.SimpleAvroKeyGenerator; |
| import org.apache.hudi.keygen.TimestampBasedAvroKeyGenerator; |
| import org.apache.hudi.keygen.constant.KeyGeneratorType; |
| |
| import org.slf4j.Logger; |
| import org.slf4j.LoggerFactory; |
| |
| import java.io.IOException; |
| import java.util.Locale; |
| import java.util.Objects; |
| |
| /** |
| * Factory help to create {@link org.apache.hudi.keygen.KeyGenerator}. |
| * <p> |
| * This factory will try {@link HoodieWriteConfig#KEYGENERATOR_CLASS_NAME} firstly, this ensures the class prop |
| * will not be overwritten by {@link KeyGeneratorType} |
| */ |
| public class HoodieAvroKeyGeneratorFactory { |
| |
| private static final Logger LOG = LoggerFactory.getLogger(HoodieAvroKeyGeneratorFactory.class); |
| |
| public static KeyGenerator createKeyGenerator(TypedProperties props) throws IOException { |
| // keyGenerator class name has higher priority |
| KeyGenerator keyGenerator = KeyGenUtils.createKeyGeneratorByClassName(props); |
| return Objects.isNull(keyGenerator) ? createAvroKeyGeneratorByType(props) : keyGenerator; |
| } |
| |
| public static KeyGenerator createAvroKeyGeneratorByType(TypedProperties props) throws IOException { |
| // Use KeyGeneratorType.SIMPLE as default keyGeneratorType |
| String keyGeneratorType = |
| props.getString(HoodieWriteConfig.KEYGENERATOR_TYPE.key(), null); |
| |
| if (StringUtils.isNullOrEmpty(keyGeneratorType)) { |
| LOG.info("The value of {} is empty, using SIMPLE", HoodieWriteConfig.KEYGENERATOR_TYPE.key()); |
| keyGeneratorType = KeyGeneratorType.SIMPLE.name(); |
| } |
| |
| KeyGeneratorType keyGeneratorTypeEnum; |
| try { |
| keyGeneratorTypeEnum = KeyGeneratorType.valueOf(keyGeneratorType.toUpperCase(Locale.ROOT)); |
| } catch (IllegalArgumentException e) { |
| throw new HoodieKeyGeneratorException("Unsupported keyGenerator Type " + keyGeneratorType); |
| } |
| |
| BaseKeyGenerator keyGenerator = null; |
| |
| switch (keyGeneratorTypeEnum) { |
| case SIMPLE: |
| keyGenerator = new SimpleAvroKeyGenerator(props); |
| break; |
| case COMPLEX: |
| keyGenerator = new ComplexAvroKeyGenerator(props); |
| break; |
| case TIMESTAMP: |
| keyGenerator = new TimestampBasedAvroKeyGenerator(props); |
| break; |
| case CUSTOM: |
| keyGenerator = new CustomAvroKeyGenerator(props); |
| break; |
| case NON_PARTITION: |
| keyGenerator = new NonpartitionedAvroKeyGenerator(props); |
| break; |
| case GLOBAL_DELETE: |
| keyGenerator = new GlobalAvroDeleteKeyGenerator(props); |
| break; |
| default: |
| throw new HoodieKeyGeneratorException("Unsupported keyGenerator Type " + keyGeneratorType); |
| } |
| |
| if (KeyGenUtils.enableAutoGenerateRecordKeys(props)) { |
| return new AutoRecordGenWrapperAvroKeyGenerator(props, keyGenerator); |
| } else { |
| return keyGenerator; |
| } |
| } |
| |
| } |