All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bakdata.kafka.DeadLetterTransformer Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
/*
 * MIT License
 *
 * Copyright (c) 2022 bakdata
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package com.bakdata.kafka;

import java.util.Optional;
import lombok.Getter;
import lombok.NonNull;
import lombok.RequiredArgsConstructor;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.apache.kafka.streams.kstream.ValueTransformer;
import org.apache.kafka.streams.kstream.ValueTransformerSupplier;
import org.apache.kafka.streams.processor.ProcessorContext;

/**
 * {@link ValueTransformer} that creates a {@code DeadLetter} from a processing error.
 *
 * @param  type of value
 * @param  the DeadLetter type
 * @deprecated Use {@link DeadLetterProcessor}
 */
@Getter
@RequiredArgsConstructor
@Deprecated(since = "1.4.0")
public class DeadLetterTransformer implements ValueTransformer, T> {
    private final @NonNull String description;
    private final @NonNull DeadLetterConverter deadLetterConverter;
    private ProcessorContext context;

    /**
     * Transforms captured errors for serialization
     *
     * 
{@code
     * // Example, this works for all error capturing topologies
     * final KeyValueMapper> mapper = ...;
     * final KStream input = ...;
     * final KStream> processed = input.map(captureErrors(mapper));
     * final KStream output = processed.flatMapValues(ProcessedKeyValue::getValues);
     * final KStream> errors = processed.flatMap(ProcessedKeyValue::getErrors);
     * final DeadLetterConverter deadLetterConverter = ...
     * final KStream deadLetters = errors.transformValues(
     *                      DeadLetterTransformer.create("Description", deadLetterConverter));
     * deadLetters.to(ERROR_TOPIC);
     * }
     * 
* * @param description shared description for all errors * @param deadLetterConverter converter from DeadLetterDescriptions to VR * @param type of the input value * @param type of the output value * @return a transformer supplier */ public static ValueTransformerSupplier, VR> create(final String description, final DeadLetterConverter deadLetterConverter) { return () -> new DeadLetterTransformer<>(description, deadLetterConverter); } @Override public void init(final ProcessorContext context) { this.context = context; } @Override public T transform(final ProcessingError error) { final Throwable throwable = error.getThrowable(); final DeadLetterDescription deadLetterDescription = DeadLetterDescription.builder() .inputValue(Optional.ofNullable(error.getValue()).map(ErrorUtil::toString).orElse(null)) .cause(DeadLetterDescription.Cause.builder() .message(throwable.getMessage()) .stackTrace(ExceptionUtils.getStackTrace(throwable)) .errorClass(throwable.getClass().getName()) .build()) .description(this.description) .topic(this.context.topic()) .partition(this.context.partition()) .offset(this.context.offset()) .build(); return this.deadLetterConverter.convert(deadLetterDescription); } @Override public void close() { // do nothing } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy