kafka RootResource 源码

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

kafka RootResource 代码

文件路径:/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/rest/resources/RootResource.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.runtime.rest.resources;

import io.swagger.v3.oas.annotations.Operation;
import org.apache.kafka.connect.runtime.Herder;
import org.apache.kafka.connect.runtime.rest.entities.ServerInfo;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

@Path("/")
@Produces(MediaType.APPLICATION_JSON)
public class RootResource implements ConnectResource {

    private final Herder herder;

    public RootResource(Herder herder) {
        this.herder = herder;
    }

    @Override
    public void requestTimeout(long requestTimeoutMs) {
        // No-op
    }

    @GET
    @Path("/")
    @Operation(summary = "Get details about this Connect worker and the id of the Kafka cluster it is connected to")
    public ServerInfo serverInfo() {
        return new ServerInfo(herder.kafkaClusterId());
    }
}

相关信息

kafka 源码目录

相关文章

kafka ConnectResource 源码

kafka ConnectorPluginsResource 源码

kafka ConnectorsResource 源码

kafka LoggingResource 源码

0  赞