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

io.kyligence.kap.clickhouse.metadata.ClickHouseFlowManager 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 io.kyligence.kap.clickhouse.metadata;


import io.kyligence.kap.secondstorage.metadata.Manager;
import io.kyligence.kap.secondstorage.metadata.TableFlow;
import org.apache.kylin.common.KylinConfig;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Locale;

import static io.kyligence.kap.clickhouse.ClickHouseConstants.RES_PATH_FMT;
import static io.kyligence.kap.clickhouse.ClickHouseConstants.STORAGE_NAME;
import static io.kyligence.kap.clickhouse.ClickHouseConstants.DATA;

public class ClickHouseFlowManager extends Manager {

    private static final Logger logger = LoggerFactory.getLogger(ClickHouseFlowManager.class);

    // called by reflection
    static ClickHouseFlowManager newInstance(KylinConfig config, String project) {
        return new ClickHouseFlowManager(config, project);
    }
    private ClickHouseFlowManager(KylinConfig cfg, String project) {
        super(cfg, project);
    }

    @Override
    public Logger logger() {
        return logger;
    }

    @Override
    public String name() {
        return "ClickHouseFlowManager";
    }

    @Override
    public String rootPath() {
        return String.format(Locale.ROOT, RES_PATH_FMT, project, STORAGE_NAME, DATA);
    }

    @Override
    public Class entityType() {
        return TableFlow.class;
    }

    @Override
    protected TableFlow newRootEntity(String cubeName) {
        final String description = "create by newRootEntity";
        return TableFlow.builder()
                .setModel(cubeName)
                .setDescription(description)
                .build();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy