io.streamthoughts.kafka.specs.command.broker.subcommands.Describe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kafka-specs Show documentation
Show all versions of kafka-specs Show documentation
Tool to ease and automate Apache Kafka cluster configuration management
The newest version!
/*
* Copyright 2021 StreamThoughts.
*
* 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.streamthoughts.kafka.specs.command.broker.subcommands;
import io.streamthoughts.kafka.specs.YAMLClusterSpecWriter;
import io.streamthoughts.kafka.specs.command.BaseCommand;
import io.streamthoughts.kafka.specs.command.broker.subcommands.internal.DescribeBrokers;
import io.streamthoughts.kafka.specs.model.MetaObject;
import io.streamthoughts.kafka.specs.model.V1SpecFile;
import io.streamthoughts.kafka.specs.model.V1SpecsObject;
import io.streamthoughts.kafka.specs.internal.AdminClientUtils;
import io.streamthoughts.kafka.specs.operation.DescribeOperationOptions;
import io.streamthoughts.kafka.specs.model.V1BrokerObject;
import org.apache.kafka.clients.admin.AdminClient;
import org.apache.kafka.clients.admin.ConfigEntry;
import org.apache.kafka.common.Node;
import picocli.CommandLine;
import picocli.CommandLine.Command;
import picocli.CommandLine.Option;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import static org.apache.kafka.clients.admin.ConfigEntry.ConfigSource.DYNAMIC_BROKER_CONFIG;
import static org.apache.kafka.clients.admin.ConfigEntry.ConfigSource.DYNAMIC_DEFAULT_BROKER_CONFIG;
import static org.apache.kafka.clients.admin.ConfigEntry.ConfigSource.STATIC_BROKER_CONFIG;
@Command(name = "describe",
description = "Describe all the Broker's configuration on remote cluster."
)
public class Describe extends BaseCommand {
@Option(names = {"--default-configs"},
description = "Export built-in default configuration for configs that have a default value."
)
boolean describeDefaultConfigs;
@Option(names = {"--static-broker-configs"},
defaultValue = "true",
description = "Export static configs provided as broker properties at start up (e.g. server.properties file)."
)
boolean describeStaticBrokerConfigs;
@Option(names = {"--dynamic-broker-configs"},
defaultValue = "true",
description = "Export dynamic configs that is configured as default for all brokers or for specific broker in the cluster."
)
boolean describeDynamicBrokerConfigs;
@Option(names = "--file-path",
description = "The file path to write the description of Topics."
)
File filePath;
/**
* {@inheritDoc}
*/
@Override
public Integer call(final AdminClient client) {
var brokerIds = loadClusterBrokerIds(client);
DescribeBrokers describeBrokers = new DescribeBrokers(
client,
DescribeOperationOptions.withDescribeDefaultConfigs(describeDefaultConfigs)
);
if (!describeStaticBrokerConfigs) {
describeBrokers.addConfigEntryPredicate(config -> config.source() != STATIC_BROKER_CONFIG);
}
if (!describeDynamicBrokerConfigs) {
List excludeSources = Arrays.asList(
DYNAMIC_BROKER_CONFIG,
DYNAMIC_DEFAULT_BROKER_CONFIG
);
describeBrokers.addConfigEntryPredicate(Predicate.not(config -> excludeSources.contains(config.source())));
}
Collection resources = describeBrokers.describe(brokerIds);
try {
OutputStream os = (filePath != null) ? new FileOutputStream(filePath) : System.out;
final V1SpecsObject specsObject = V1SpecsObject.withBrokers(resources);
YAMLClusterSpecWriter.instance().write(new V1SpecFile(MetaObject.defaults(), specsObject), os);
return CommandLine.ExitCode.OK;
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
}
}
private Collection loadClusterBrokerIds(final AdminClient client) {
CompletableFuture> topics = AdminClientUtils.listBrokers(client);
return topics
.thenApply(t -> t.stream().map(Node::idString).collect(Collectors.toList()))
.join();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy