2 * ============LICENSE_START=======================================================
3 * dcaegen2-collectors-veshv
4 * ================================================================================
5 * Copyright (C) 2018-2019 NOKIA
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
20 package org.onap.dcae.collectors.veshv.impl.adapters.kafka
22 import arrow.effects.IO
23 import org.onap.dcae.collectors.veshv.boundary.Sink
24 import org.onap.dcae.collectors.veshv.impl.adapters.ClientContextLogging.withDebug
25 import org.onap.dcae.collectors.veshv.model.ClientContext
26 import org.onap.dcae.collectors.veshv.model.ConsumedMessage
27 import org.onap.dcae.collectors.veshv.model.FailedToConsumeMessage
28 import org.onap.dcae.collectors.veshv.model.MessageDropCause
29 import org.onap.dcae.collectors.veshv.domain.RoutedMessage
30 import org.onap.dcae.collectors.veshv.model.SuccessfullyConsumedMessage
31 import org.onap.dcae.collectors.veshv.domain.VesMessage
32 import org.onap.dcae.collectors.veshv.utils.logging.Logger
33 import org.onap.dcae.collectors.veshv.utils.logging.Marker
34 import org.onap.ves.VesEventOuterClass.CommonEventHeader
35 import reactor.core.publisher.Flux
36 import reactor.kafka.sender.KafkaSender
37 import reactor.kafka.sender.SenderRecord
40 * @author Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
43 internal class KafkaPublisher(private val sender: KafkaSender<CommonEventHeader, VesMessage>,
44 private val ctx: ClientContext) : Sink {
46 override fun send(messages: Flux<RoutedMessage>): Flux<ConsumedMessage> =
47 messages.map(::vesToKafkaRecord)
48 .compose { sender.send(it) }
50 val msg = it.correlationMetadata()
51 if (it.exception() == null) {
52 logger.trace(ctx::fullMdc, Marker.Invoke()) {
53 "Message sent to Kafka with metadata: ${it.recordMetadata()}"
55 SuccessfullyConsumedMessage(msg)
57 logger.warn(ctx::fullMdc, Marker.Invoke()) {
58 "Failed to send message to Kafka. Reason: ${it.exception().message}"
60 logger.withDebug(ctx) { log("Kafka send failure details", it.exception()) }
61 FailedToConsumeMessage(msg, it.exception(), MessageDropCause.KAFKA_FAILURE)
65 private fun vesToKafkaRecord(routed: RoutedMessage): SenderRecord<CommonEventHeader, VesMessage, RoutedMessage> =
68 routed.partition.orNull(),
70 routed.message.header,
75 private val FILL_TIMESTAMP_LATER: Long? = null
76 private val logger = Logger(KafkaPublisher::class)