4                  !" !# $% b& '( ) *+ ,-.  123 45 *678 9: *; <=>?@AB ,C 1DEF *G HI 1JKL *M NOPQRSTUVWXYZ[\] ^_`a2 bcdefgdhijklm nopqrstuvw xy x# xz{|} *~ `=`  !   CONFIG*Lorg/apache/kafka/common/config/ConfigDef;GROUP_ID_CONFIGLjava/lang/String; ConstantValue GROUP_ID_DOCMAX_POLL_RECORDS_CONFIGMAX_POLL_RECORDS_DOCMAX_POLL_INTERVAL_MS_CONFIGMAX_POLL_INTERVAL_MS_DOCSESSION_TIMEOUT_MS_CONFIGSESSION_TIMEOUT_MS_DOCHEARTBEAT_INTERVAL_MS_CONFIGHEARTBEAT_INTERVAL_MS_DOCBOOTSTRAP_SERVERS_CONFIGENABLE_AUTO_COMMIT_CONFIGENABLE_AUTO_COMMIT_DOCAUTO_COMMIT_INTERVAL_MS_CONFIGAUTO_COMMIT_INTERVAL_MS_DOC$PARTITION_ASSIGNMENT_STRATEGY_CONFIG!PARTITION_ASSIGNMENT_STRATEGY_DOCAUTO_OFFSET_RESET_CONFIGAUTO_OFFSET_RESET_DOCFETCH_MIN_BYTES_CONFIGFETCH_MIN_BYTES_DOCFETCH_MAX_BYTES_CONFIGFETCH_MAX_BYTES_DOCDEFAULT_FETCH_MAX_BYTESIFETCH_MAX_WAIT_MS_CONFIGFETCH_MAX_WAIT_MS_DOCMETADATA_MAX_AGE_CONFIG MAX_PARTITION_FETCH_BYTES_CONFIGMAX_PARTITION_FETCH_BYTES_DOC!DEFAULT_MAX_PARTITION_FETCH_BYTESSEND_BUFFER_CONFIGRECEIVE_BUFFER_CONFIGCLIENT_ID_CONFIGRECONNECT_BACKOFF_MS_CONFIGRECONNECT_BACKOFF_MAX_MS_CONFIGRETRY_BACKOFF_MS_CONFIGMETRICS_SAMPLE_WINDOW_MS_CONFIGMETRICS_NUM_SAMPLES_CONFIGMETRICS_RECORDING_LEVEL_CONFIGMETRIC_REPORTER_CLASSES_CONFIGCHECK_CRCS_CONFIGCHECK_CRCS_DOCKEY_DESERIALIZER_CLASS_CONFIGKEY_DESERIALIZER_CLASS_DOCVALUE_DESERIALIZER_CLASS_CONFIGVALUE_DESERIALIZER_CLASS_DOCCONNECTIONS_MAX_IDLE_MS_CONFIGREQUEST_TIMEOUT_MS_CONFIGREQUEST_TIMEOUT_MS_DOCDEFAULT_API_TIMEOUT_MS_CONFIGDEFAULT_API_TIMEOUT_MS_DOCINTERCEPTOR_CLASSES_CONFIGINTERCEPTOR_CLASSES_DOCEXCLUDE_INTERNAL_TOPICS_CONFIGEXCLUDE_INTERNAL_TOPICS_DOCDEFAULT_EXCLUDE_INTERNAL_TOPICSZLEAVE_GROUP_ON_CLOSE_CONFIGISOLATION_LEVEL_CONFIGISOLATION_LEVEL_DOCDEFAULT_ISOLATION_LEVELpostProcessParsedConfig (Ljava/util/Map;)Ljava/util/Map;CodeLineNumberTableLocalVariableTablethis2Lorg/apache/kafka/clients/consumer/ConsumerConfig; parsedValuesLjava/util/Map;LocalVariableTypeTable5Ljava/util/Map; Signaturel(Ljava/util/Map;)Ljava/util/Map;addDeserializerToConfig(Ljava/util/Map;Lorg/apache/kafka/common/serialization/Deserializer;Lorg/apache/kafka/common/serialization/Deserializer;)Ljava/util/Map;configskeyDeserializer4Lorg/apache/kafka/common/serialization/Deserializer;valueDeserializer newConfigs7Lorg/apache/kafka/common/serialization/Deserializer<*>; StackMapTable(Ljava/util/Map;Lorg/apache/kafka/common/serialization/Deserializer<*>;Lorg/apache/kafka/common/serialization/Deserializer<*>;)Ljava/util/Map;(Ljava/util/Properties;Lorg/apache/kafka/common/serialization/Deserializer;Lorg/apache/kafka/common/serialization/Deserializer;)Ljava/util/Properties; propertiesLjava/util/Properties; newProperties(Ljava/util/Properties;Lorg/apache/kafka/common/serialization/Deserializer<*>;Lorg/apache/kafka/common/serialization/Deserializer<*>;)Ljava/util/Properties;(Ljava/util/Properties;)Vprops(Ljava/util/Map;)V8(Ljava/util/Map;)V(Ljava/util/Map;Z)VdoLogLjava/util/Map<**>;(Ljava/util/Map<**>;Z)V configNames()Ljava/util/Set;%()Ljava/util/Set;main([Ljava/lang/String;)Vargs[Ljava/lang/String;()V SourceFileConsumerConfig.java,org/apache/kafka/clients/CommonClientConfigs0org/apache/kafka/clients/consumer/ConsumerConfig java/util/HashMap key.deserializer  value.deserializerjava/util/Properties              (org/apache/kafka/common/config/ConfigDefbootstrap.servers  9org/apache/kafka/common/config/ConfigDef$NonNullValidatorNonNullValidator InnerClasses dA list of host/port pairs to use for establishing the initial connection to the Kafka cluster. The client will make use of all servers irrespective of which servers are specified here for bootstrapping—this list only impacts the initial hosts used to discover the full set of servers. This list should be in the form host1:port1,host2:port2,.... Since these servers are just used for the initial connection to discover the full cluster membership (which may change dynamically), this list need not contain the full set of servers (you may want more than one, though, in case a server is down). group.id A unique string that identifies the consumer group this consumer belongs to. This property is required if the consumer uses either the group management functionality by using subscribe(topic) or the Kafka-based offset management strategy. session.timeout.ms  The timeout used to detect consumer failures when using Kafka's group management facility. The consumer sends periodic heartbeats to indicate its liveness to the broker. If no heartbeats are received by the broker before the expiration of this session timeout, then the broker will remove this consumer from the group and initiate a rebalance. Note that the value must be in the allowable range as configured in the broker configuration by group.min.session.timeout.ms and group.max.session.timeout.ms.heartbeat.interval.msThe expected time between heartbeats to the consumer coordinator when using Kafka's group management facilities. Heartbeats are used to ensure that the consumer's session stays active and to facilitate rebalancing when new consumers join or leave the group. The value must be set lower than session.timeout.ms, but typically should be set no higher than 1/3 of that value. It can be adjusted even lower to control the expected time for normal rebalances.partition.assignment.strategy/org/apache/kafka/clients/consumer/RangeAssignor  The class name of the partition assignment strategy that the client will use to distribute partition ownership amongst consumer instances when group management is usedmetadata.max.age.ms   The period of time in milliseconds after which we force a refresh of metadata even if we haven't seen any partition leadership changes to proactively discover any new brokers or partitions.enable.auto.commit  OIf true the consumer's offset will be periodically committed in the background.auto.commit.interval.msThe frequency in milliseconds that the consumer offsets are auto-committed to Kafka if enable.auto.commit is set to true. client.idAn id string to pass to the server when making requests. The purpose of this is to be able to track the source of requests beyond just ip/port by allowing a logical application name to be included in server-side request logging.max.partition.fetch.bytesThe maximum amount of data per-partition the server will return. Records are fetched in batches by the consumer. If the first record batch in the first non-empty partition of the fetch is larger than this limit, the batch will still be returned to ensure that the consumer can make progress. The maximum record batch size accepted by the broker is defined via message.max.bytes (broker config) or max.message.bytes (topic config). See fetch.max.bytes for limiting the consumer request size.send.buffer.bytesvThe size of the TCP send buffer (SO_SNDBUF) to use when sending data. If the value is -1, the OS default will be used.receive.buffer.bytesyThe size of the TCP receive buffer (SO_RCVBUF) to use when reading data. If the value is -1, the OS default will be used.fetch.min.bytes/The minimum amount of data the server should return for a fetch request. If insufficient data is available the request will wait for that much data to accumulate before answering the request. The default setting of 1 byte means that fetch requests are answered as soon as a single byte of data is available or the fetch request times out waiting for data to arrive. Setting this to something greater than 1 will cause the server to wait for larger amounts of data to accumulate which can improve server throughput a bit at the cost of some additional latency.fetch.max.bytesBThe maximum amount of data the server should return for a fetch request. Records are fetched in batches by the consumer, and if the first record batch in the first non-empty partition of the fetch is larger than this value, the record batch will still be returned to ensure that the consumer can make progress. As such, this is not a absolute maximum. The maximum record batch size accepted by the broker is defined via message.max.bytes (broker config) or max.message.bytes (topic config). Note that the consumer performs multiple fetches in parallel.fetch.max.wait.msThe maximum amount of time the server will block before answering the fetch request if there isn't sufficient data to immediately satisfy the requirement given by fetch.min.bytes.reconnect.backoff.ms The base amount of time to wait before attempting to reconnect to a given host. This avoids repeatedly connecting to a host in a tight loop. This backoff applies to all connection attempts by the client to a broker.reconnect.backoff.max.msQThe maximum amount of time in milliseconds to wait when reconnecting to a broker that has repeatedly failed to connect. If provided, the backoff per host will increase exponentially for each consecutive connection failure, up to this maximum. After calculating the backoff increase, 20% random jitter is added to avoid connection storms.retry.backoff.msThe amount of time to wait before attempting to retry a failed request to a given topic partition. This avoids repeatedly sending requests in a tight loop under some failure scenarios.auto.offset.resetlatestjava/lang/Stringearliestnone What to do when there is no initial offset in Kafka or if the current offset does not exist any more on the server (e.g. because that data has been deleted):
  • earliest: automatically reset the offset to the earliest offset
  • latest: automatically reset the offset to the latest offset
  • none: throw exception to the consumer if no previous offset is found for the consumer's group
  • anything else: throw exception to the consumer.
 check.crcsAutomatically check the CRC32 of the records consumed. This ensures no on-the-wire or on-disk corruption to the messages occurred. This check adds some overhead, so it may be disabled in cases seeking extreme performance.metrics.sample.window.ms5The window of time a metrics sample is computed over.metrics.num.samples4The number of samples maintained to compute metrics.metrics.recording.level  (The highest recording level for metrics.metric.reportersA list of classes to use as metrics reporters. Implementing the org.apache.kafka.common.metrics.MetricsReporter interface allows plugging in classes that will be notified of new metric creation. The JmxReporter is always included to register JMX statistics. yDeserializer class for key that implements the org.apache.kafka.common.serialization.Deserializer interface. {Deserializer class for value that implements the org.apache.kafka.common.serialization.Deserializer interface.request.timeout.msThe configuration controls the maximum amount of time the client will wait for the response of a request. If the response is not received before the timeout elapses the client will resend the request if necessary or fail the request if retries are exhausted.default.api.timeout.msSpecifies the timeout (in milliseconds) for consumer APIs that could block. This configuration is used as the default timeout for all consumer operations that do not explicitly accept a timeout parameter.connections.max.idle.msQClose idle connections after the number of milliseconds specified by this config.interceptor.classesA list of classes to use as interceptors. Implementing the org.apache.kafka.clients.consumer.ConsumerInterceptor interface allows you to intercept (and possibly mutate) records received by the consumer. By default, there are no interceptors.max.poll.recordsBThe maximum number of records returned in a single call to poll().max.poll.interval.msyThe maximum delay between invocations of poll() when using consumer group management. This places an upper bound on the amount of time that the consumer can be idle before fetching more records. If poll() is not called before expiration of this timeout, then the consumer is considered failed and the group will rebalance in order to reassign the partitions to another member. exclude.internal.topicsWhether records from internal topics (such as offsets) should be exposed to the consumer. If set to true the only way to receive records from an internal topic is subscribing to it.internal.leave.group.on.close isolation.level 

Controls how to read messages written transactionally. If set to read_committed, consumer.poll() will only return transactional messages which have been committed. If set to read_uncommitted' (the default), consumer.poll() will return all messages, even transactional messages which have been aborted. Non-transactional messages will be returned unconditionally in either mode.

Messages will always be returned in offset order. Hence, in read_committed mode, consumer.poll() will only return messages up to the last stable offset (LSO), which is the one less than the offset of the first open transaction. In particular any messages appearing after messages belonging to ongoing transactions will be withheld until the relevant transaction has been completed. As a result, read_committed consumers will not be able to read up to the high watermark when there are in flight transactions.

Further, when in read_committed the seekToEnd method will return the LSOsecurity.protocol PLAINTEXT   -org/apache/kafka/common/config/AbstractConfig java/util/Map"postProcessReconnectBackoffConfigsO(Lorg/apache/kafka/common/config/AbstractConfig;Ljava/util/Map;)Ljava/util/Map;java/lang/ObjectgetClass()Ljava/lang/Class;put8(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;putAlljava/lang/ClassgetName()Ljava/lang/String;<(Lorg/apache/kafka/common/config/ConfigDef;Ljava/util/Map;)V=(Lorg/apache/kafka/common/config/ConfigDef;Ljava/util/Map;Z)Vnamesjava/lang/SystemoutLjava/io/PrintStream; toHtmlTablejava/io/PrintStreamprintln(Ljava/lang/String;)V/org/apache/kafka/common/requests/IsolationLevelREAD_UNCOMMITTED1Lorg/apache/kafka/common/requests/IsolationLevel;toStringjava/util/LocaleROOTLjava/util/Locale; toLowerCase&(Ljava/util/Locale;)Ljava/lang/String;-org/apache/kafka/common/config/ConfigDef$TypeTypeLIST/Lorg/apache/kafka/common/config/ConfigDef$Type;java/util/Collections emptyList()Ljava/util/List;3org/apache/kafka/common/config/ConfigDef$Importance ImportanceHIGH5Lorg/apache/kafka/common/config/ConfigDef$Importance;define Validator(Ljava/lang/String;Lorg/apache/kafka/common/config/ConfigDef$Type;Ljava/lang/Object;Lorg/apache/kafka/common/config/ConfigDef$Validator;Lorg/apache/kafka/common/config/ConfigDef$Importance;Ljava/lang/String;)Lorg/apache/kafka/common/config/ConfigDef;STRING(Ljava/lang/String;Lorg/apache/kafka/common/config/ConfigDef$Type;Ljava/lang/Object;Lorg/apache/kafka/common/config/ConfigDef$Importance;Ljava/lang/String;)Lorg/apache/kafka/common/config/ConfigDef;INTjava/lang/IntegervalueOf(I)Ljava/lang/Integer; singletonList$(Ljava/lang/Object;)Ljava/util/List;MEDIUMLONG.org/apache/kafka/common/config/ConfigDef$RangeRangeatLeastD(Ljava/lang/Number;)Lorg/apache/kafka/common/config/ConfigDef$Range;LOWBOOLEANjava/lang/Boolean(Z)Ljava/lang/Boolean;java/lang/Long(J)Ljava/lang/Long;4org/apache/kafka/common/config/ConfigDef$ValidString ValidStringinK([Ljava/lang/String;)Lorg/apache/kafka/common/config/ConfigDef$ValidString;5org/apache/kafka/common/metrics/Sensor$RecordingLevelRecordingLevelINFO7Lorg/apache/kafka/common/metrics/Sensor$RecordingLevel;DEBUGCLASS(Ljava/lang/String;Lorg/apache/kafka/common/config/ConfigDef$Type;Lorg/apache/kafka/common/config/ConfigDef$Importance;Ljava/lang/String;)Lorg/apache/kafka/common/config/ConfigDef;defineInternal(Ljava/lang/String;Lorg/apache/kafka/common/config/ConfigDef$Type;Ljava/lang/Object;Lorg/apache/kafka/common/config/ConfigDef$Importance;)Lorg/apache/kafka/common/config/ConfigDef;READ_COMMITTEDSECURITY_PROTOCOL_DOCwithClientSslSupport,()Lorg/apache/kafka/common/config/ConfigDef;withClientSaslSupport2org/apache/kafka/common/config/ConfigDef$Validator&org/apache/kafka/common/metrics/Sensor!=%(*-./;>?@04`fLMNPOQR5CEDFIASX\ikmrghu w}xyz| L*+  -Y*N+-+W,- ,W-  +*--- $*--- $  3 Y N-* +-+ W,- , W- #1*333+33 A *+  S *+    ^ *+         ;      uY Y!"#$%&'"()*+',"-).+ ,"/)012 Y!34$567,,89:$;<=3>)?+,,89@$A&'9B)C+D,,8"E$F+G,,83H$I+J,,83K$L+,,8"M$N+O,,83P$Q+,,89R$S6TV V89W$X6YV V89[$\6]V V89_$`&abYaSYcSYdSe3f$g<=9h)i6u0,,89j$k+,,89l$m&nobYnoSYpoSe9q$r Y!9s$t"uv t"wvx+u0,,83y$z+{,,83|$}6~,3) Y!9$+,,83$+7,,83$<=3)<=9&bYSYSe3$&3)jZ*9 DL W_ix %#*+(.563;<9A B?G#H.E8M<NGKRSVTaQlYpZ{W_`]efcliqovwt| }z".CKZgt #7Xhknt0: / *@1@ H n x@