Skip to content

Commit bb5bb31

Browse files
authored
Merge pull request #464 from confluentinc/import_v1.4.2
librdkafka static bundle v1.4.2
2 parents ddb1c5c + 621b710 commit bb5bb31

7 files changed

+63
-63
lines changed

kafka/build_darwin.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ package kafka
1010
import "C"
1111

1212
// LibrdkafkaLinkInfo explains how librdkafka was linked to the Go client
13-
const LibrdkafkaLinkInfo = "static darwin from librdkafka-static-bundle-v1.4.0.tgz"
13+
const LibrdkafkaLinkInfo = "static darwin from librdkafka-static-bundle-v1.4.2.tgz"

kafka/build_glibc_linux.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ package kafka
1010
import "C"
1111

1212
// LibrdkafkaLinkInfo explains how librdkafka was linked to the Go client
13-
const LibrdkafkaLinkInfo = "static glibc_linux from librdkafka-static-bundle-v1.4.0.tgz"
13+
const LibrdkafkaLinkInfo = "static glibc_linux from librdkafka-static-bundle-v1.4.2.tgz"

kafka/build_musl_linux.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ package kafka
1010
import "C"
1111

1212
// LibrdkafkaLinkInfo explains how librdkafka was linked to the Go client
13-
const LibrdkafkaLinkInfo = "static musl_linux from librdkafka-static-bundle-v1.4.0.tgz"
13+
const LibrdkafkaLinkInfo = "static musl_linux from librdkafka-static-bundle-v1.4.2.tgz"

kafka/librdkafka/librdkafka_darwin.a

6.11 KB
Binary file not shown.
6.63 KB
Binary file not shown.
6.29 KB
Binary file not shown.

kafka/librdkafka/rdkafka.h

+60-60
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ typedef SSIZE_T ssize_t;
148148
* @remark This value should only be used during compile time,
149149
* for runtime checks of version use rd_kafka_version()
150150
*/
151-
#define RD_KAFKA_VERSION 0x010400ff
151+
#define RD_KAFKA_VERSION 0x010402ff
152152

153153
/**
154154
* @brief Returns the librdkafka version as integer.
@@ -1332,7 +1332,7 @@ void rd_kafka_message_destroy(rd_kafka_message_t *rkmessage);
13321332
* @remark This function MUST NOT be used with the producer.
13331333
*/
13341334
static RD_INLINE const char *
1335-
RD_UNUSED
1335+
RD_UNUSED
13361336
rd_kafka_message_errstr(const rd_kafka_message_t *rkmessage) {
13371337
if (!rkmessage->err)
13381338
return NULL;
@@ -1439,17 +1439,19 @@ RD_EXPORT size_t rd_kafka_header_cnt (const rd_kafka_headers_t *hdrs);
14391439
* find out if a produced message was persisted in the topic log.
14401440
*/
14411441
typedef enum {
1442-
/**< Message was never transmitted to the broker, or failed with
1443-
* an error indicating it was not written to the log.
1444-
* Application retry risks ordering, but not duplication. */
1442+
/** Message was never transmitted to the broker, or failed with
1443+
* an error indicating it was not written to the log.
1444+
* Application retry risks ordering, but not duplication. */
14451445
RD_KAFKA_MSG_STATUS_NOT_PERSISTED = 0,
14461446

1447-
/**< Message was transmitted to broker, but no acknowledgement was
1448-
* received.
1449-
* Application retry risks ordering and duplication. */
1447+
/** Message was transmitted to broker, but no acknowledgement was
1448+
* received.
1449+
* Application retry risks ordering and duplication. */
14501450
RD_KAFKA_MSG_STATUS_POSSIBLY_PERSISTED = 1,
14511451

1452-
/**< Message was written to the log and acknowledged by the broker. */
1452+
/** Message was written to the log and acknowledged by the broker.
1453+
* No reason for application to retry.
1454+
* Note: this value should only be trusted with \c acks=all. */
14531455
RD_KAFKA_MSG_STATUS_PERSISTED = 2
14541456
} rd_kafka_msg_status_t;
14551457

@@ -1501,7 +1503,7 @@ typedef enum {
15011503
* errstr, sizeof(errstr));
15021504
* if (res != RD_KAFKA_CONF_OK)
15031505
* die("%s\n", errstr);
1504-
*
1506+
*
15051507
* rk = rd_kafka_new(..., myconf);
15061508
* @endcode
15071509
*
@@ -1740,7 +1742,7 @@ void rd_kafka_conf_set_consume_cb (rd_kafka_conf_t *conf,
17401742
* of the list (see `rd_kafka_topic_partition_list_copy()`).
17411743
* The result of `rd_kafka_position()` is typically outdated in
17421744
* RD_KAFKA_RESP_ERR__ASSIGN_PARTITIONS.
1743-
*
1745+
*
17441746
* The following example shows the application's responsibilities:
17451747
* @code
17461748
* static void rebalance_cb (rd_kafka_t *rk, rd_kafka_resp_err_t err,
@@ -1924,15 +1926,15 @@ void rd_kafka_conf_set_stats_cb(rd_kafka_conf_t *conf,
19241926
* sasl.oauthbearer.config.
19251927
* \p opaque - Application-provided opaque set via
19261928
* rd_kafka_conf_set_opaque()
1927-
*
1929+
*
19281930
* The SASL/OAUTHBEARER token refresh callback is triggered via rd_kafka_poll()
19291931
* whenever OAUTHBEARER is the SASL mechanism and a token needs to be retrieved,
19301932
* typically based on the configuration defined in \c sasl.oauthbearer.config.
1931-
*
1933+
*
19321934
* The callback should invoke rd_kafka_oauthbearer_set_token()
19331935
* or rd_kafka_oauthbearer_set_token_failure() to indicate success
19341936
* or failure, respectively.
1935-
*
1937+
*
19361938
* The refresh operation is eventable and may be received via
19371939
* rd_kafka_queue_poll() with an event type of
19381940
* \c RD_KAFKA_EVENT_OAUTHBEARER_TOKEN_REFRESH.
@@ -2675,7 +2677,7 @@ rd_kafka_type_t rd_kafka_type(const rd_kafka_t *rk);
26752677

26762678

26772679
/**
2678-
* @brief Returns this client's broker-assigned group member id
2680+
* @brief Returns this client's broker-assigned group member id.
26792681
*
26802682
* @remark This currently requires the high-level KafkaConsumer
26812683
*
@@ -3015,7 +3017,7 @@ rd_kafka_queue_t *rd_kafka_queue_get_consumer (rd_kafka_t *rk);
30153017
* Use rd_kafka_queue_destroy() to loose the reference.
30163018
*
30173019
* @remark rd_kafka_queue_destroy() MUST be called on this queue
3018-
*
3020+
*
30193021
* @remark This function only works on consumers.
30203022
*/
30213023
RD_EXPORT
@@ -3054,7 +3056,7 @@ rd_kafka_queue_t *rd_kafka_queue_get_background (rd_kafka_t *rk);
30543056
* If \p dst is \c NULL the forwarding is removed.
30553057
*
30563058
* The internal refcounts for both queues are increased.
3057-
*
3059+
*
30583060
* @remark Regardless of whether \p dst is NULL or not, after calling this
30593061
* function, \p src will not forward it's fetch queue to the consumer
30603062
* queue.
@@ -3864,7 +3866,7 @@ rd_kafka_consumer_group_metadata_read (
38643866
* See `rd_kafka_conf_set_dr_msg_cb` on how to setup a callback to be called
38653867
* once the delivery status (success or failure) is known. The delivery report
38663868
* is trigged by the application calling `rd_kafka_poll()` (at regular
3867-
* intervals) or `rd_kafka_flush()` (at termination).
3869+
* intervals) or `rd_kafka_flush()` (at termination).
38683870
*
38693871
* Since producing is asynchronous, you should call `rd_kafka_flush()` before
38703872
* you destroy the producer. Otherwise, any outstanding messages will be
@@ -3894,14 +3896,14 @@ rd_kafka_consumer_group_metadata_read (
38943896
* Messages are considered in-queue from the point they
38953897
* are accepted by produce() until their corresponding
38963898
* delivery report callback/event returns.
3897-
* It is thus a requirement to call
3899+
* It is thus a requirement to call
38983900
* rd_kafka_poll() (or equiv.) from a separate
38993901
* thread when F_BLOCK is used.
39003902
* See WARNING on \c RD_KAFKA_MSG_F_BLOCK above.
39013903
*
39023904
* RD_KAFKA_MSG_F_FREE - rdkafka will free(3) \p payload when it is done
39033905
* with it.
3904-
* RD_KAFKA_MSG_F_COPY - the \p payload data will be copied and the
3906+
* RD_KAFKA_MSG_F_COPY - the \p payload data will be copied and the
39053907
* \p payload pointer will not be used by rdkafka
39063908
* after the call returns.
39073909
* RD_KAFKA_MSG_F_PARTITION - produce_batch() will honour per-message
@@ -5482,7 +5484,7 @@ rd_kafka_topic_result_error_string (const rd_kafka_topic_result_t *topicres);
54825484
/**
54835485
* @returns the name of the topic for the given topic result.
54845486
* @remark lifetime of the returned string is the same as the \p topicres.
5485-
*
5487+
*
54865488
*/
54875489
RD_EXPORT const char *
54885490
rd_kafka_topic_result_name (const rd_kafka_topic_result_t *topicres);
@@ -5493,7 +5495,6 @@ rd_kafka_topic_result_name (const rd_kafka_topic_result_t *topicres);
54935495

54945496
/**
54955497
* @name Admin API
5496-
*
54975498
* @{
54985499
*
54995500
* @brief The Admin API enables applications to perform administrative
@@ -5635,7 +5636,7 @@ rd_kafka_AdminOptions_set_request_timeout (rd_kafka_AdminOptions_t *options,
56355636
* RD_KAFKA_RESP_ERR__INVALID_ARG if timeout was out of range in which
56365637
* case an error string will be written \p errstr.
56375638
*
5638-
* @remark This option is valid for CreateTopics, DeleteTopics and
5639+
* @remark This option is valid for CreateTopics, DeleteTopics and
56395640
* CreatePartitions.
56405641
*/
56415642
RD_EXPORT rd_kafka_resp_err_t
@@ -5713,13 +5714,13 @@ rd_kafka_AdminOptions_set_opaque (rd_kafka_AdminOptions_t *options,
57135714

57145715

57155716

5716-
/**
5717-
* @section CreateTopics - create topics in cluster
5718-
*
5717+
/*
5718+
* CreateTopics - create topics in cluster.
57195719
*
57205720
*/
57215721

57225722

5723+
/*! Defines a new topic to be created. */
57235724
typedef struct rd_kafka_NewTopic_s rd_kafka_NewTopic_t;
57245725

57255726
/**
@@ -5844,7 +5845,7 @@ rd_kafka_CreateTopics (rd_kafka_t *rk,
58445845
*
58455846
* The returned \p topics life-time is the same as the \p result object.
58465847
*
5847-
* @param result Result to get topics from.
5848+
* @param result Result to get topics from.
58485849
* @param cntp Updated to the number of elements in the array.
58495850
*/
58505851
RD_EXPORT const rd_kafka_topic_result_t **
@@ -5856,12 +5857,12 @@ rd_kafka_CreateTopics_result_topics (
58565857

58575858

58585859

5859-
/**
5860-
* @section DeleteTopics - delete topics from cluster
5861-
*
5860+
/*
5861+
* DeleteTopics - delete topics from cluster
58625862
*
58635863
*/
58645864

5865+
/*! Represents a topic to be deleted. */
58655866
typedef struct rd_kafka_DeleteTopic_s rd_kafka_DeleteTopic_t;
58665867

58675868
/**
@@ -5937,12 +5938,11 @@ rd_kafka_DeleteTopics_result_topics (
59375938

59385939

59395940
/**
5940-
* @section CreatePartitions - add partitions to topic.
5941-
*
5941+
* CreatePartitions - add partitions to topic.
59425942
*
59435943
*/
59445944

5945-
/*! NewPartitions */
5945+
/*! Defines a new partition to be created. */
59465946
typedef struct rd_kafka_NewPartitions_s rd_kafka_NewPartitions_t;
59475947

59485948
/**
@@ -6061,36 +6061,38 @@ rd_kafka_CreatePartitions_result_topics (
60616061

60626062

60636063
/**
6064-
* @section Cluster, broker, topic configuration entries, sources, etc.
6065-
*
6066-
* These entities relate to the cluster, not the local client.
6067-
*
6068-
* @sa rd_kafka_conf_set(), et.al. for local client configuration.
6064+
* Cluster, broker, topic configuration entries, sources, etc.
60696065
*
60706066
*/
60716067

6072-
/*!
6073-
* Apache Kafka config sources
6068+
/**
6069+
* @enum rd_kafka_ConfigSource_t
6070+
*
6071+
* @brief Apache Kafka config sources.
6072+
*
6073+
* @remark These entities relate to the cluster, not the local client.
6074+
*
6075+
* @sa rd_kafka_conf_set(), et.al. for local client configuration.
60746076
*/
60756077
typedef enum rd_kafka_ConfigSource_t {
6076-
/**< Source unknown, e.g., in the ConfigEntry used for alter requests
6077-
* where source is not set */
6078+
/** Source unknown, e.g., in the ConfigEntry used for alter requests
6079+
* where source is not set */
60786080
RD_KAFKA_CONFIG_SOURCE_UNKNOWN_CONFIG = 0,
6079-
/**< Dynamic topic config that is configured for a specific topic */
6081+
/** Dynamic topic config that is configured for a specific topic */
60806082
RD_KAFKA_CONFIG_SOURCE_DYNAMIC_TOPIC_CONFIG = 1,
6081-
/**< Dynamic broker config that is configured for a specific broker */
6083+
/** Dynamic broker config that is configured for a specific broker */
60826084
RD_KAFKA_CONFIG_SOURCE_DYNAMIC_BROKER_CONFIG = 2,
6083-
/**< Dynamic broker config that is configured as default for all
6084-
* brokers in the cluster */
6085+
/** Dynamic broker config that is configured as default for all
6086+
* brokers in the cluster */
60856087
RD_KAFKA_CONFIG_SOURCE_DYNAMIC_DEFAULT_BROKER_CONFIG = 3,
6086-
/**< Static broker config provided as broker properties at startup
6087-
* (e.g. from server.properties file) */
6088+
/** Static broker config provided as broker properties at startup
6089+
* (e.g. from server.properties file) */
60886090
RD_KAFKA_CONFIG_SOURCE_STATIC_BROKER_CONFIG = 4,
6089-
/**< Built-in default configuration for configs that have a
6090-
* default value */
6091+
/** Built-in default configuration for configs that have a
6092+
* default value */
60916093
RD_KAFKA_CONFIG_SOURCE_DEFAULT_CONFIG = 5,
60926094

6093-
/**< Number of source types defined */
6095+
/** Number of source types defined */
60946096
RD_KAFKA_CONFIG_SOURCE__CNT,
60956097
} rd_kafka_ConfigSource_t;
60966098

@@ -6102,7 +6104,7 @@ RD_EXPORT const char *
61026104
rd_kafka_ConfigSource_name (rd_kafka_ConfigSource_t confsource);
61036105

61046106

6105-
/*! ConfigEntry */
6107+
/*! Apache Kafka configuration entry. */
61066108
typedef struct rd_kafka_ConfigEntry_s rd_kafka_ConfigEntry_t;
61076109

61086110
/**
@@ -6189,7 +6191,7 @@ typedef enum rd_kafka_ResourceType_t {
61896191
RD_EXPORT const char *
61906192
rd_kafka_ResourceType_name (rd_kafka_ResourceType_t restype);
61916193

6192-
/*! ConfigResource */
6194+
/*! Apache Kafka configuration resource. */
61936195
typedef struct rd_kafka_ConfigResource_s rd_kafka_ConfigResource_t;
61946196

61956197

@@ -6282,8 +6284,7 @@ rd_kafka_ConfigResource_error_string (const rd_kafka_ConfigResource_t *config);
62826284

62836285

62846286
/**
6285-
* @section AlterConfigs - alter cluster configuration.
6286-
*
6287+
* AlterConfigs - alter cluster configuration.
62876288
*
62886289
*/
62896290

@@ -6345,8 +6346,7 @@ rd_kafka_AlterConfigs_result_resources (
63456346

63466347

63476348
/**
6348-
* @section DescribeConfigs - retrieve cluster configuration.
6349-
*
6349+
* DescribeConfigs - retrieve cluster configuration.
63506350
*
63516351
*/
63526352

@@ -6357,14 +6357,14 @@ rd_kafka_AlterConfigs_result_resources (
63576357
* The returned configuration includes default values and the
63586358
* rd_kafka_ConfigEntry_is_default() or rd_kafka_ConfigEntry_source()
63596359
* methods may be used to distinguish them from user supplied values.
6360-
*
6360+
*
63616361
* The value of config entries where rd_kafka_ConfigEntry_is_sensitive()
63626362
* is true will always be NULL to avoid disclosing sensitive
63636363
* information, such as security settings.
6364-
*
6364+
*
63656365
* Configuration entries where rd_kafka_ConfigEntry_is_read_only()
63666366
* is true can't be updated (with rd_kafka_AlterConfigs()).
6367-
*
6367+
*
63686368
* Synonym configuration entries are returned if the broker supports
63696369
* it (broker version >= 1.1.0). See rd_kafka_ConfigEntry_synonyms().
63706370
*

0 commit comments

Comments
 (0)