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

com.antgroup.geaflow.dsl.connector.hive.HiveConfigKeys Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2023 AntGroup CO., Ltd.
 *
 * 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.
 */

package com.antgroup.geaflow.dsl.connector.hive;

import com.antgroup.geaflow.common.config.ConfigKey;
import com.antgroup.geaflow.common.config.ConfigKeys;

public class HiveConfigKeys {
    public static final ConfigKey GEAFLOW_DSL_HIVE_DATABASE_NAME = ConfigKeys
        .key("geaflow.dsl.hive.database.name")
        .noDefaultValue()
        .description("The database name for hive table.");

    public static final ConfigKey GEAFLOW_DSL_HIVE_TABLE_NAME = ConfigKeys
        .key("geaflow.dsl.hive.table.name")
        .noDefaultValue()
        .description("The hive table name to read.");

    public static final ConfigKey GEAFLOW_DSL_HIVE_METASTORE_URIS = ConfigKeys
        .key("geaflow.dsl.hive.metastore.uris")
        .noDefaultValue()
        .description("The hive meta store uri.");

    public static final ConfigKey GEAFLOW_DSL_HIVE_PARTITION_MIN_SPLITS = ConfigKeys
        .key("geaflow.dsl.hive.splits.per.partition")
        .defaultValue(1)
        .description("The split number of each hive partition.");
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy