1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
/*
* librdkafka - Apache Kafka C library
*
* Copyright (c) 2016-2022, Magnus Edenhill
* 2025, Confluent Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <iostream>
#include <cstring>
#include <cstdlib>
#include "testcpp.h"
/**
* Verify consumer_lag
*/
static std::string topic;
class StatsCb : public RdKafka::EventCb {
public:
int64_t calc_lag; // calculated lag
int lag_valid; // number of times lag has been valid
bool partitions_assigned; // partitions were assigned
bool skip_first; // skip first event after assignment
StatsCb() {
calc_lag = -1;
lag_valid = 0;
partitions_assigned = false;
skip_first = true;
}
/**
* @brief Event callback
*/
void event_cb(RdKafka::Event &event) {
if (!partitions_assigned) {
/* It means we won't find the topic in the stats JSON. */
return;
}
if (skip_first) {
skip_first = false;
/* First JSON after assignment could be created before the assignment. */
return;
}
if (event.type() == RdKafka::Event::EVENT_LOG) {
Test::Say(tostr() << "LOG-" << event.severity() << "-" << event.fac()
<< ": " << event.str() << "\n");
return;
} else if (event.type() != RdKafka::Event::EVENT_STATS) {
Test::Say(tostr() << "Dropping event " << event.type() << "\n");
return;
}
int64_t consumer_lag = parse_json(event.str().c_str());
Test::Say(3, tostr() << "Stats: consumer_lag is " << consumer_lag << "\n");
if (consumer_lag == -1) {
Test::Say(2, "Skipping old stats with invalid consumer_lag\n");
return; /* Old stats generated before first message consumed */
} else if (consumer_lag != calc_lag)
Test::Fail(tostr() << "Stats consumer_lag " << consumer_lag
<< ", expected " << calc_lag << "\n");
else
lag_valid++;
}
/**
* @brief Naiive JSON parsing, find the consumer_lag for partition 0
* and return it.
*/
static int64_t parse_json(const char *json_doc) {
const std::string match_topic(std::string("\"") + topic + "\":");
const char *search[] = {
"\"topics\":", match_topic.c_str(), "\"partitions\":",
"\"0\":", "\"consumer_lag_stored\":", NULL};
const char *remain = json_doc;
for (const char **sp = search; *sp; sp++) {
const char *t = strstr(remain, *sp);
if (!t)
Test::Fail(tostr() << "Couldnt find " << *sp
<< " in remaining stats output:\n"
<< remain << "\n====================\n"
<< json_doc << "\n");
remain = t + strlen(*sp);
}
while (*remain == ' ')
remain++;
if (!*remain)
Test::Fail("Nothing following consumer_lag");
int64_t lag = strtoull(remain, NULL, 0);
if (lag == -1) {
Test::Say(tostr() << "Consumer lag " << lag << " is invalid, stats:\n");
Test::Say(3, tostr() << json_doc << "\n");
}
return lag;
}
};
/**
* @brief Produce \p msgcnt in a transaction that is aborted.
*/
static void produce_aborted_txns(const std::string &topic,
int32_t partition,
int msgcnt) {
RdKafka::Producer *p;
RdKafka::Conf *conf;
RdKafka::Error *error;
Test::Say(tostr() << "Producing " << msgcnt << " transactional messages "
<< "which will be aborted\n");
Test::conf_init(&conf, NULL, 0);
Test::conf_set(conf, "transactional.id", "txn_id_" + topic);
std::string errstr;
p = RdKafka::Producer::create(conf, errstr);
if (!p)
Test::Fail("Failed to create Producer: " + errstr);
delete conf;
error = p->init_transactions(-1);
if (error)
Test::Fail("init_transactions() failed: " + error->str());
error = p->begin_transaction();
if (error)
Test::Fail("begin_transaction() failed: " + error->str());
for (int i = 0; i < msgcnt; i++) {
RdKafka::ErrorCode err;
err = p->produce(topic, partition, RdKafka::Producer::RK_MSG_COPY, &i,
sizeof(i), NULL, 0, 0, NULL);
if (err)
Test::Fail("produce() failed: " + RdKafka::err2str(err));
}
/* Flush is typically not needed for transactions since
* commit_transaction() will do it automatically, but in the case of
* abort_transaction() nothing might have been sent to the broker yet,
* so call flush() here so we know the messages are sent and the
* partitions are added to the transaction, so that a control(abort)
* message is written to the partition. */
p->flush(-1);
error = p->abort_transaction(-1);
if (error)
Test::Fail("abort_transaction() failed: " + error->str());
delete p;
}
static void do_test_consumer_lag(bool with_txns) {
int msgcnt = test_quick ? 5 : 10;
int txn_msgcnt = 3;
int addcnt = 0;
std::string errstr;
RdKafka::ErrorCode err;
SUB_TEST("Test consumer lag %s transactions", with_txns ? "with" : "without");
topic = Test::mk_topic_name("0061-consumer_lag", 1);
test_produce_msgs_easy(topic.c_str(), 0, 0, msgcnt);
if (with_txns) {
/* After the standard messages have been produced,
* produce some transactional messages that are aborted to advance
* the end offset with control messages. */
produce_aborted_txns(topic, 0, txn_msgcnt);
addcnt = txn_msgcnt + 1 /* ctrl msg */;
}
/*
* Create consumer
*/
/* Create consumer */
RdKafka::Conf *conf;
Test::conf_init(&conf, NULL, 40);
StatsCb stats;
if (conf->set("event_cb", &stats, errstr) != RdKafka::Conf::CONF_OK)
Test::Fail("set event_cb failed: " + errstr);
Test::conf_set(conf, "group.id", topic);
Test::conf_set(conf, "enable.auto.commit", "false");
Test::conf_set(conf, "auto.offset.reset", "earliest");
Test::conf_set(conf, "statistics.interval.ms", "500");
RdKafka::KafkaConsumer *c = RdKafka::KafkaConsumer::create(conf, errstr);
if (!c)
Test::Fail("Failed to create KafkaConsumer: " + errstr);
delete conf;
/* Execute callbacks for statistics enqueued before assignment. */
c->poll(0);
/* Assign partitions */
std::vector<RdKafka::TopicPartition *> parts;
parts.push_back(RdKafka::TopicPartition::create(topic, 0));
if ((err = c->assign(parts)))
Test::Fail("assign failed: " + RdKafka::err2str(err));
RdKafka::TopicPartition::destroy(parts);
stats.partitions_assigned = true;
/* Start consuming */
Test::Say("Consuming topic " + topic + "\n");
int cnt = 0;
while (cnt < msgcnt + addcnt) {
RdKafka::Message *msg = c->consume(1000);
switch (msg->err()) {
case RdKafka::ERR__TIMED_OUT:
if (with_txns && cnt >= msgcnt && stats.calc_lag == 0)
addcnt = 0; /* done */
break;
case RdKafka::ERR__PARTITION_EOF:
Test::Fail(tostr() << "Unexpected PARTITION_EOF (not enbaled) after "
<< cnt << "/" << msgcnt
<< " messages: " << msg->errstr());
break;
case RdKafka::ERR_NO_ERROR:
/* Proper message. Update calculated lag for later
* checking in stats callback */
if (msg->offset() + 1 >= msgcnt && with_txns)
stats.calc_lag = 0;
else
stats.calc_lag = (msgcnt + addcnt) - (msg->offset() + 1);
cnt++;
Test::Say(2, tostr() << "Received message #" << cnt << "/" << msgcnt
<< " at offset " << msg->offset() << " (calc lag "
<< stats.calc_lag << ")\n");
/* Slow down message "processing" to make sure we get
* at least one stats callback per message. */
if (cnt < msgcnt)
rd_sleep(1);
break;
default:
Test::Fail("Consume error: " + msg->errstr());
break;
}
delete msg;
}
Test::Say(tostr() << "Done, lag was valid " << stats.lag_valid << " times\n");
if (stats.lag_valid == 0)
Test::Fail("No valid consumer_lag in statistics seen");
c->close();
delete c;
SUB_TEST_PASS();
}
extern "C" {
int main_0061_consumer_lag(int argc, char **argv) {
do_test_consumer_lag(false /*no txns*/);
if (test_broker_version >= TEST_BRKVER(0, 11, 0, 0))
do_test_consumer_lag(true /*txns*/);
return 0;
}
}
|