org.apache.kafka.common.requests.AddPartitionsToTxnResponse 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 org.apache.kafka.common.requests;
import org.apache.kafka.common.TopicPartition;
import org.apache.kafka.common.protocol.ApiKeys;
import org.apache.kafka.common.protocol.Errors;
import org.apache.kafka.common.protocol.types.ArrayOf;
import org.apache.kafka.common.protocol.types.Field;
import org.apache.kafka.common.protocol.types.Schema;
import org.apache.kafka.common.protocol.types.Struct;
import org.apache.kafka.common.utils.CollectionUtils;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static org.apache.kafka.common.protocol.CommonFields.ERROR_CODE;
import static org.apache.kafka.common.protocol.CommonFields.PARTITION_ID;
import static org.apache.kafka.common.protocol.CommonFields.THROTTLE_TIME_MS;
import static org.apache.kafka.common.protocol.CommonFields.TOPIC_NAME;
public class AddPartitionsToTxnResponse extends AbstractResponse {
private static final String ERRORS_KEY_NAME = "errors";
private static final String PARTITION_ERRORS = "partition_errors";
private static final Schema ADD_PARTITIONS_TO_TXN_RESPONSE_V0 = new Schema(
THROTTLE_TIME_MS,
new Field(ERRORS_KEY_NAME, new ArrayOf(new Schema(
TOPIC_NAME,
new Field(PARTITION_ERRORS, new ArrayOf(new Schema(
PARTITION_ID,
ERROR_CODE)))))));
/**
* The version number is bumped to indicate that on quota violation brokers send out responses before throttling.
*/
private static final Schema ADD_PARTITIONS_TO_TXN_RESPONSE_V1 = ADD_PARTITIONS_TO_TXN_RESPONSE_V0;
public static Schema[] schemaVersions() {
return new Schema[]{ADD_PARTITIONS_TO_TXN_RESPONSE_V0, ADD_PARTITIONS_TO_TXN_RESPONSE_V1};
}
private final int throttleTimeMs;
// Possible error codes:
// NotCoordinator
// CoordinatorNotAvailable
// CoordinatorLoadInProgress
// InvalidTxnState
// InvalidProducerIdMapping
// TopicAuthorizationFailed
// InvalidProducerEpoch
// UnknownTopicOrPartition
// TopicAuthorizationFailed
// TransactionalIdAuthorizationFailed
private final Map errors;
public AddPartitionsToTxnResponse(int throttleTimeMs, Map errors) {
this.throttleTimeMs = throttleTimeMs;
this.errors = errors;
}
public AddPartitionsToTxnResponse(Struct struct) {
this.throttleTimeMs = struct.get(THROTTLE_TIME_MS);
errors = new HashMap<>();
for (Object topic : struct.getArray(ERRORS_KEY_NAME)) {
Struct topicStruct = (Struct) topic;
final String topicName = topicStruct.get(TOPIC_NAME);
for (Object partition : topicStruct.getArray(PARTITION_ERRORS)) {
Struct partitionStruct = (Struct) partition;
TopicPartition topicPartition = new TopicPartition(topicName, partitionStruct.get(PARTITION_ID));
errors.put(topicPartition, Errors.forCode(partitionStruct.get(ERROR_CODE)));
}
}
}
@Override
public int throttleTimeMs() {
return throttleTimeMs;
}
public Map errors() {
return errors;
}
@Override
public Map errorCounts() {
return errorCounts(errors.values());
}
@Override
protected Struct toStruct(short version) {
Struct struct = new Struct(ApiKeys.ADD_PARTITIONS_TO_TXN.responseSchema(version));
struct.set(THROTTLE_TIME_MS, throttleTimeMs);
Map> errorsByTopic = CollectionUtils.groupPartitionDataByTopic(errors);
List topics = new ArrayList<>(errorsByTopic.size());
for (Map.Entry> entry : errorsByTopic.entrySet()) {
Struct topicErrorCodes = struct.instance(ERRORS_KEY_NAME);
topicErrorCodes.set(TOPIC_NAME, entry.getKey());
List partitionArray = new ArrayList<>();
for (Map.Entry partitionErrors : entry.getValue().entrySet()) {
final Struct partitionData = topicErrorCodes.instance(PARTITION_ERRORS)
.set(PARTITION_ID, partitionErrors.getKey())
.set(ERROR_CODE, partitionErrors.getValue().code());
partitionArray.add(partitionData);
}
topicErrorCodes.set(PARTITION_ERRORS, partitionArray.toArray());
topics.add(topicErrorCodes);
}
struct.set(ERRORS_KEY_NAME, topics.toArray());
return struct;
}
public static AddPartitionsToTxnResponse parse(ByteBuffer buffer, short version) {
return new AddPartitionsToTxnResponse(ApiKeys.ADD_PARTITIONS_TO_TXN.parseResponse(version, buffer));
}
@Override
public String toString() {
return "AddPartitionsToTxnResponse(" +
"errors=" + errors +
", throttleTimeMs=" + throttleTimeMs +
')';
}
@Override
public boolean shouldClientThrottle(short version) {
return version >= 1;
}
}