kafka ConnectClusterState 源码

  • 2022-10-20
  • 浏览 (319)

kafka ConnectClusterState 代码

文件路径:/connect/api/src/main/java/org/apache/kafka/connect/health/ConnectClusterState.java

/*
 * 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.kafka.connect.health;

import java.util.Collection;
import java.util.Map;

/**
 * Provides the ability to lookup connector metadata, including status and configurations, as well
 * as immutable cluster information such as Kafka cluster ID. This is made available to
 * {@link org.apache.kafka.connect.rest.ConnectRestExtension} implementations. The Connect framework
 * provides the implementation for this interface.
 */
public interface ConnectClusterState {

    /**
     * Get the names of the connectors currently deployed in this cluster. This is a full list of connectors in the cluster gathered from
     * the current configuration, which may change over time.
     *
     * @return collection of connector names, never {@code null}
     */
    Collection<String> connectors();

    /**
     * Lookup the current health of a connector and its tasks. This provides the current snapshot of health by querying the underlying
     * herder. A connector returned by previous invocation of {@link #connectors()} may no longer be available and could result in {@link
     * org.apache.kafka.connect.errors.NotFoundException}.
     *
     * @param connName name of the connector
     * @return the health of the connector for the connector name
     * @throws org.apache.kafka.connect.errors.NotFoundException if the requested connector can't be found
     */
    ConnectorHealth connectorHealth(String connName);

    /**
     * Lookup the current configuration of a connector. This provides the current snapshot of configuration by querying the underlying
     * herder. A connector returned by previous invocation of {@link #connectors()} may no longer be available and could result in {@link
     * org.apache.kafka.connect.errors.NotFoundException}.
     *
     * @param connName name of the connector
     * @return the configuration of the connector for the connector name
     * @throws org.apache.kafka.connect.errors.NotFoundException if the requested connector can't be found
     * @throws java.lang.UnsupportedOperationException if the default implementation has not been overridden
     */
    default Map<String, String> connectorConfig(String connName) {
        throw new UnsupportedOperationException();
    }

    /**
     * Get details about the setup of the Connect cluster.
     * @return a {@link ConnectClusterDetails} object containing information about the cluster
     * @throws java.lang.UnsupportedOperationException if the default implementation has not been overridden
     **/
    default ConnectClusterDetails clusterDetails() {
        throw new UnsupportedOperationException();
    }
}

相关信息

kafka 源码目录

相关文章

kafka AbstractState 源码

kafka ConnectClusterDetails 源码

kafka ConnectorHealth 源码

kafka ConnectorState 源码

kafka ConnectorType 源码

kafka TaskState 源码

0  赞