Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,12 @@ public KafkaClientRequestFactory(
{
final KafkaClientCreateTopicsFactory clientCreateTopicsFactory = new KafkaClientCreateTopicsFactory(
config, context, supplyBinding, supplyDebitor, signaler, streamFactory, resolveSasl);
final KafkaClientDescribeClusterFactory clientDescribeClusterFactory = new KafkaClientDescribeClusterFactory(
config, context, supplyBinding, supplyDebitor, signaler, streamFactory, resolveSasl);

final Int2ObjectHashMap<BindingHandler> factories = new Int2ObjectHashMap<>();
factories.put(KafkaApi.CREATE_TOPICS.value(), clientCreateTopicsFactory);
factories.put(KafkaApi.DESCRIBE_CLUSTER.value(), clientDescribeClusterFactory);

this.kafkaTypeId = context.supplyTypeId(KafkaBinding.NAME);
this.factories = factories;
Expand Down
32 changes: 32 additions & 0 deletions runtime/binding-kafka/src/main/zilla/protocol.idl
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,38 @@ scope protocol
}
}

scope describe_cluster
{
struct DescribeClusterRequest // v0
{
uint8 includeAuthorizedOperations;
}

struct DescribeClusterResponse
{
int32 correlationId;
int32 throttle;
int16 error;
string16 message;
string16 clusterId = null;
int32 controllerId;
int32 brokerCount;
}

struct ClusterBroker
{
int32 brokerId;
string16 host;
int32 port;
string16 rack = null;
}

struct DescribeClusterResponsePart2
{
int32 authorizedOperations;
}
}

scope create_topics
{
struct CreateTopicsRequest // v3
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
/*
* Copyright 2021-2023 Aklivity Inc.
*
* Aklivity 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.aklivity.zilla.runtime.binding.kafka.internal.stream;

import static java.util.concurrent.TimeUnit.SECONDS;
import static org.junit.rules.RuleChain.outerRule;

import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.DisableOnDebug;
import org.junit.rules.TestRule;
import org.junit.rules.Timeout;

import io.aklivity.k3po.runtime.junit.annotation.Specification;
import io.aklivity.k3po.runtime.junit.rules.K3poRule;
import io.aklivity.zilla.runtime.engine.test.EngineRule;
import io.aklivity.zilla.runtime.engine.test.annotation.Configuration;

public class DescribeClusterIT
{
private final K3poRule k3po = new K3poRule()
.addScriptRoot("app", "io/aklivity/zilla/specs/binding/kafka/streams/application/describe.cluster")
.addScriptRoot("net", "io/aklivity/zilla/specs/binding/kafka/streams/network/describe.cluster.v0");

private final TestRule timeout = new DisableOnDebug(new Timeout(5, SECONDS));

private final EngineRule engine = new EngineRule()
.directory("target/zilla-itests")
.countersBufferCapacity(8192)
.configurationRoot("io/aklivity/zilla/specs/binding/kafka/config")
.external("net0")
.clean();

@Rule
public final TestRule chain = outerRule(engine).around(k3po).around(timeout);

@Test
@Configuration("client.yaml")
@Specification({
"${app}/cluster.brokers.info/client",
"${net}/cluster.brokers.info/server"})
public void shouldDescribeClusterBrokerInfo() throws Exception
{
k3po.finish();
}
}
Loading