<?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: Nifi consume duplicate message problem from Kafka in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382933#M244752</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/107497"&gt;@plapla&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;The consumeKafka processor should not be reading the same message twice.&amp;nbsp; The processor should be maintaining local state (since you are not clustered) in NiFi's local state directory. Make sure that you are not having disk space or permissions issues that may prevent the writing of that local state.&amp;nbsp; You can write click on the ConsumeKafka processor to view the current stored state.&lt;BR /&gt;&lt;BR /&gt;The consumeKafka processor creates a consumer group using the GroupID configured in the processor, so make sure you do not have multiple consumeKafka processor consuming from the same Kafka Topic using the same Group ID.&amp;nbsp; For optimal performance the number of concurrent tasks configured on the consumeKafka processor should match the number fo partitions on target topic.&lt;BR /&gt;&lt;BR /&gt;Do you see any Kafka rebalance going on?&amp;nbsp; &amp;nbsp;Will happen when you have more consumers than partitions in a the consumer group that is consuming from that topic.&amp;nbsp; A rebalance can affect the commit of the offset resulting in possible data duplication.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jan 2024 16:28:35 GMT</pubDate>
    <dc:creator>MattWho</dc:creator>
    <dc:date>2024-01-31T16:28:35Z</dc:date>
    <item>
      <title>Nifi consume duplicate message problem from Kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382592#M244636</link>
      <description>&lt;P&gt;Nifi version is&amp;nbsp;1.23.2 and kafka version 2.6.I use ConsumeKafka_1_0 1.23.2 to read messages from kafka.DetectDuplicate 1.23.2 processor is available, which deduplicates stream files on the same stream.However, stream read the same recording twice&amp;nbsp; and&amp;nbsp;DetectDuplicate processor could not deduplicate the same message.I understand that it reads the same message because the offset&amp;nbsp; id value is same in two message.What could be the reason why the ConsumeKafka_1_0&amp;nbsp; processor reads the same message and&amp;nbsp;DetectDuplicate&amp;nbsp; processor cannot detect same message?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="plapla_0-1705994944172.png" style="width: 400px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/39524i94134BD8EC38AC47/image-size/medium?v=v2&amp;amp;px=400" role="button" title="plapla_0-1705994944172.png" alt="plapla_0-1705994944172.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="plapla_1-1705995855058.png" style="width: 400px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/39525i56837AA389BB89EA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="plapla_1-1705995855058.png" alt="plapla_1-1705995855058.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="plapla_2-1705995906341.png" style="width: 393px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/39526iDABD6F61CD75DB3D/image-dimensions/393x94?v=v2" width="393" height="94" role="button" title="plapla_2-1705995906341.png" alt="plapla_2-1705995906341.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 07:48:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382592#M244636</guid>
      <dc:creator>plapla</dc:creator>
      <dc:date>2024-01-23T07:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Nifi consume duplicate message problem from Kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382630#M244641</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/107497"&gt;@plapla&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Couple things here:&lt;BR /&gt;&lt;BR /&gt;1. You should be using the ConsumeKafka processor that matches your Kafka server version.&amp;nbsp; If your KafKa server is 2.6, you should be using the&amp;nbsp;&lt;A class="component-link" href="https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-kafka-2-6-nar/1.24.0/org.apache.nifi.processors.kafka.pubsub.ConsumeKafka_2_6/index.html" target="component-usage"&gt;ConsumeKafka_2_6&lt;/A&gt;&amp;nbsp;processor.&lt;BR /&gt;&lt;BR /&gt;2. In your detectDuplicate processor you are using ${key}.&amp;nbsp; How is this Attribute beig created on each FlowFile and where is it's value derived from?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Matt&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 16:33:06 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382630#M244641</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2024-01-23T16:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Nifi consume duplicate message problem from Kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382652#M244647</link>
      <description>&lt;P&gt;Thanks for your return &lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.I confirmed the kafka version,kafka version is&amp;nbsp;2.5.In this case, which version of the processor should I use?&lt;/P&gt;&lt;P&gt;2.&lt;SPAN&gt;I&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;transform&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;the content to the key attribute with the&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class="setting-field"&gt;&lt;SPAN&gt;EvaluateJsonPath&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;processor.Then I use the key value in the detectDuplicate processor as I share below.I confirmed that the attribute of the flowfile that cannot be deduplicated is.Could this be related to the flowfile arriving at the same time?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="setting-field"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="setting-field"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="plapla_0-1706080906260.png" style="width: 400px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/39537i5ED0E7AEB9167C86/image-size/medium?v=v2&amp;amp;px=400" role="button" title="plapla_0-1706080906260.png" alt="plapla_0-1706080906260.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="plapla_1-1706080942033.png" style="width: 400px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/39538i1A13D991DDA28CE5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="plapla_1-1706080942033.png" alt="plapla_1-1706080942033.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 Jan 2024 07:25:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382652#M244647</guid>
      <dc:creator>plapla</dc:creator>
      <dc:date>2024-01-24T07:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Nifi consume duplicate message problem from Kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382747#M244678</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Do you have any comments on the subject?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2024 06:25:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382747#M244678</guid>
      <dc:creator>plapla</dc:creator>
      <dc:date>2024-01-26T06:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: Nifi consume duplicate message problem from Kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382756#M244684</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/107497"&gt;@plapla&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Since Apache NiFi does not have a ConsumeKafka processor build with the Kafka 2.6 client, i would recommend going with the client closest to but not newer than the Kafka server version you are using.&amp;nbsp; In this case the ConsumeKafka_2_0 processor.&lt;BR /&gt;&lt;BR /&gt;1. Is your NiFi a standalone NiFi instance install or a multi-node NiFi cluster setup?&lt;BR /&gt;2. How are your distributedMapCacheClient and DistributedMapCacheServer controller services configured?&lt;BR /&gt;3. What is the rate of FlowFiles being produced by your consumeKafka processor?&lt;BR /&gt;&lt;BR /&gt;I see that you configured the DetectDuplicate processor with an age off of 420 days; however, DistributedMapCache server has a configured max cache entries with a default of 10,000.&amp;nbsp; So possibly due to volume cache entries are being removed from the cache server resulting in issues detecting duplicates.&amp;nbsp; The DistributedMapCache also holds all cache entries in NiFi heap memory and is not a good cache server to use in high volume caches (because of heap usage).&amp;nbsp; DistributedMapCache also offers no high availability.&amp;nbsp; &amp;nbsp; This is becomes even more of an issue with a NiFi cluster.&amp;nbsp; You would be better off using an external map cache server.&lt;BR /&gt;&lt;BR /&gt;If you are using a NiFi cluster, make sure your DistributedMapCacheClient is configured to connect to one specific DistirbutedMapCacheServer.&amp;nbsp; I have seen misuse here where individuals configured it to connect to local host or each NiFi node to its own host's map cache server.&amp;nbsp; The Map cache servers running on each node do not share data.&lt;BR /&gt;&lt;BR /&gt;Hope this helps you...&lt;/P&gt;&lt;P&gt;If you found any of the suggestions/solutions provided helped you with your issue, please take a moment to login and click "&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Accept as Solution&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;" on one or more of them that helped.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;BR /&gt;Matt&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2024 14:14:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382756#M244684</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2024-01-26T14:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Nifi consume duplicate message problem from Kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382881#M244730</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I updated the processor to ConsumeKafka_2_0.&lt;/P&gt;&lt;P&gt;1.My Nifi is not clustered.It consists of a single node.&lt;/P&gt;&lt;P&gt;2.distributedMapCacheClient and DistributedMapCacheServer as I share below;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="plapla_0-1706624669008.png" style="width: 400px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/39617iFA03B4CAD0B99EE4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="plapla_0-1706624669008.png" alt="plapla_0-1706624669008.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="plapla_1-1706624707586.png" style="width: 400px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/39618i426DC337B3C9615F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="plapla_1-1706624707586.png" alt="plapla_1-1706624707586.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;3.ConsumeKafka processor reads approximately 200 flowFiles in 5 minutes&lt;/P&gt;&lt;P&gt;I configured the DetectDuplicate processor with an age off of 10 days.It doesn't matter if the processor can't deduplicate messages.It's bad for the ConsumeKafka to read the same message twice.&lt;/P&gt;&lt;P&gt;Finally,I updated 10000 to 200 value on max poll records attributes ConsumeKafka.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 14:39:09 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382881#M244730</guid>
      <dc:creator>plapla</dc:creator>
      <dc:date>2024-01-30T14:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: Nifi consume duplicate message problem from Kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382933#M244752</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/107497"&gt;@plapla&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;The consumeKafka processor should not be reading the same message twice.&amp;nbsp; The processor should be maintaining local state (since you are not clustered) in NiFi's local state directory. Make sure that you are not having disk space or permissions issues that may prevent the writing of that local state.&amp;nbsp; You can write click on the ConsumeKafka processor to view the current stored state.&lt;BR /&gt;&lt;BR /&gt;The consumeKafka processor creates a consumer group using the GroupID configured in the processor, so make sure you do not have multiple consumeKafka processor consuming from the same Kafka Topic using the same Group ID.&amp;nbsp; For optimal performance the number of concurrent tasks configured on the consumeKafka processor should match the number fo partitions on target topic.&lt;BR /&gt;&lt;BR /&gt;Do you see any Kafka rebalance going on?&amp;nbsp; &amp;nbsp;Will happen when you have more consumers than partitions in a the consumer group that is consuming from that topic.&amp;nbsp; A rebalance can affect the commit of the offset resulting in possible data duplication.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 16:28:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/382933#M244752</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2024-01-31T16:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Nifi consume duplicate message problem from Kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/383471#M244917</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The reason for this situation is not because the Consume processor reads the same message twice or because the detect duplicate processor cannot capture the same message.It is caused by the putElasticsearchHttp processor adding data to the elastic cluster&amp;nbsp; twice.The putElasticsearchHttp&amp;nbsp; processor has received a timeout error and the flowFile goes to the failure transition.When the putElasticsearchHttp&amp;nbsp; &amp;nbsp;processor receives a successful response, flowFile is deleted, but it is recorded twice in the elastic. environment.What could be the reason for this?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 09:07:06 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/383471#M244917</guid>
      <dc:creator>plapla</dc:creator>
      <dc:date>2024-02-14T09:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: Nifi consume duplicate message problem from Kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/383491#M244924</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/107497"&gt;@plapla&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This sounds like the putElasticSearchHTTP processor is working as designed.&amp;nbsp; It is putting to ElasticSearch over HTTP and ElasticSearch is successfully processing that request; however your ElasticSearch is not responding to the original http request before the timeout has occurred.&amp;nbsp; As a result, putElasticSearchHTTP has routed to failure. The question here is what are you doing with the failure relationship?&amp;nbsp; If you configured "retry" or looped the failure relationship via a connection back on the putElasticSearchHTTP processor, and the same FlowFile would be processed a second time.&lt;BR /&gt;&lt;BR /&gt;You may be able to solve this by simply increasing the configured "Response Timeout" configuration on the putElasticSearchHTTP processor.&amp;nbsp; &amp;nbsp;But you may also want to look at the particular files that encounter this issue and see if their are any consistencies across them such as larger sizes, time of day, load on ElasticSearch at time, number of concurrent pending request on ElasticSearch side, network load, etc...&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you found any of the suggestions/solutions provided helped you with your issue, please take a moment to login and click "&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Accept as Solution&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;" on one or more of them that helped.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;BR /&gt;Matt&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 14:17:06 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/383491#M244924</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2024-02-14T14:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Nifi consume duplicate message problem from Kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/383524#M244936</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;putElasticsearchHttp processor&amp;nbsp;&amp;nbsp;connection Timeout parameter is 5 secs.Response timeout parameter is 15 secs.Would it be appropriate if I doubled these values?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 11:15:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/383524#M244936</guid>
      <dc:creator>plapla</dc:creator>
      <dc:date>2024-02-15T11:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Nifi consume duplicate message problem from Kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/383526#M244937</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I forgot to answer the question.If flowfile drop on failure and retry transition,I rotates flowFile same&amp;nbsp;&lt;SPAN&gt;putElasticsearchHttp&amp;nbsp; processor.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="plapla_0-1707995978972.png" style="width: 400px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/39708i8C76A8D791AD0AA7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="plapla_0-1707995978972.png" alt="plapla_0-1707995978972.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 11:20:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Nifi-consume-duplicate-message-problem-from-Kafka/m-p/383526#M244937</guid>
      <dc:creator>plapla</dc:creator>
      <dc:date>2024-02-15T11:20:07Z</dc:date>
    </item>
  </channel>
</rss>

