<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: kafka logs file -  what type of details this topic __consumer_offsets holds ? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/kafka-logs-file-what-type-of-details-this-topic-consumer/m-p/190575#M70926</link>
    <description>&lt;P&gt;you can set the values for the follwoing attributes.&lt;/P&gt;&lt;P&gt;offsets.topic.num.partitions=50&lt;/P&gt;&lt;P&gt;offsets.topic.replication.factor=3&lt;/P&gt;&lt;P&gt;losing this topic may cause issue for kafka broker to startup of service consumer request(metadata fetch failure)&lt;/P&gt;</description>
    <pubDate>Tue, 14 Nov 2017 01:46:11 GMT</pubDate>
    <dc:creator>NikhilSilsarma</dc:creator>
    <dc:date>2017-11-14T01:46:11Z</dc:date>
    <item>
      <title>kafka logs file -  what type of details this topic __consumer_offsets holds ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/kafka-logs-file-what-type-of-details-this-topic-consumer/m-p/190572#M70923</link>
      <description>&lt;P&gt;Do we know for what purpose these files which will be created after starting Kafka server and all contains  &lt;STRONG&gt;__consumer_offsets  information in log .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;files are : state-change.log ,kafka-request.log,kafka-authorizer.log,controller.log,server.log,log-cleaner.log &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have read that "&lt;/STRONG&gt;&lt;B&gt;__consumer_offsets&lt;/B&gt;&lt;B&gt;" is the topic what type of details it holds ? &lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2017 23:15:33 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/kafka-logs-file-what-type-of-details-this-topic-consumer/m-p/190572#M70923</guid>
      <dc:creator>amit_dass</dc:creator>
      <dc:date>2017-11-07T23:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: kafka logs file -  what type of details this topic __consumer_offsets holds ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/kafka-logs-file-what-type-of-details-this-topic-consumer/m-p/190573#M70924</link>
      <description>&lt;P&gt;Starting from version 0.8.2.0, the offsets committed by the consumers aren’t saved in Zookeeper but on a partitioned and replicated topic named &lt;STRONG&gt;__consumer_offsets (internal topic)&lt;/STRONG&gt;, which is hosted on the Kafka brokers in the cluster. &lt;/P&gt;&lt;P&gt;When a consumer commits some offsets, it sends a message to the broker to the __consumer_offsets topic. The message has the following structure : &lt;/P&gt;&lt;P&gt;key = [group, topic, partition] &lt;/P&gt;&lt;P&gt;value = offset &lt;/P&gt;&lt;P&gt;If consumer process dies, it will be able to start up and start reading where it left off based on offset stored in "__consumer_offset" or as discussed another consumer in the consumer group can take over.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2017 23:17:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/kafka-logs-file-what-type-of-details-this-topic-consumer/m-p/190573#M70924</guid>
      <dc:creator>NikhilSilsarma</dc:creator>
      <dc:date>2017-11-13T23:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: kafka logs file -  what type of details this topic __consumer_offsets holds ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/kafka-logs-file-what-type-of-details-this-topic-consumer/m-p/190574#M70925</link>
      <description>&lt;P&gt;Do we know default partitions and replications for this topic  &lt;STRONG&gt;__consumer_offsets (internal topic) ?  &lt;/STRONG&gt;By any chance if we loses this topic then do we have anything other then this to recover ? &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;As you explained above , what I understand is now there is no current offset and commit offset concepts . &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please add your valuable knowledge if it is not&lt;/STRONG&gt;&lt;B&gt; ?&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2017 23:35:14 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/kafka-logs-file-what-type-of-details-this-topic-consumer/m-p/190574#M70925</guid>
      <dc:creator>amit_dass</dc:creator>
      <dc:date>2017-11-13T23:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: kafka logs file -  what type of details this topic __consumer_offsets holds ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/kafka-logs-file-what-type-of-details-this-topic-consumer/m-p/190575#M70926</link>
      <description>&lt;P&gt;you can set the values for the follwoing attributes.&lt;/P&gt;&lt;P&gt;offsets.topic.num.partitions=50&lt;/P&gt;&lt;P&gt;offsets.topic.replication.factor=3&lt;/P&gt;&lt;P&gt;losing this topic may cause issue for kafka broker to startup of service consumer request(metadata fetch failure)&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2017 01:46:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/kafka-logs-file-what-type-of-details-this-topic-consumer/m-p/190575#M70926</guid>
      <dc:creator>NikhilSilsarma</dc:creator>
      <dc:date>2017-11-14T01:46:11Z</dc:date>
    </item>
  </channel>
</rss>

