<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>《Flink 使用 Broadcast State 实现流处理配置实时更新》的评论</title>
	<atom:link href="http://shiyanjun.cn/archives/1857.html/feed" rel="self" type="application/rss+xml" />
	<link>http://shiyanjun.cn/archives/1857.html</link>
	<description>简单之美，难得简单，享受简单的唯美。</description>
	<lastBuildDate>Wed, 19 Feb 2025 08:08:30 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.2</generator>
	<item>
		<title>作者：丘比特</title>
		<link>http://shiyanjun.cn/archives/1857.html#comment-177119</link>
		<dc:creator><![CDATA[丘比特]]></dc:creator>
		<pubDate>Wed, 22 Nov 2023 10:38:16 +0000</pubDate>
		<guid isPermaLink="false">http://shiyanjun.cn/?p=1857#comment-177119</guid>
		<description><![CDATA[请问博主，如果在窗口中用到广播状态，现在您有什么实现方案吗？]]></description>
		<content:encoded><![CDATA[<p>请问博主，如果在窗口中用到广播状态，现在您有什么实现方案吗？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：郑威</title>
		<link>http://shiyanjun.cn/archives/1857.html#comment-142177</link>
		<dc:creator><![CDATA[郑威]]></dc:creator>
		<pubDate>Mon, 24 Aug 2020 13:28:42 +0000</pubDate>
		<guid isPermaLink="false">http://shiyanjun.cn/?p=1857#comment-142177</guid>
		<description><![CDATA[顺便咨询一下博主，我考虑在processfunction中注册定时器，来替代timewindow；connect上broadcaststream从而实现类动态timewindow。在你看来，这个思路是否可行呢？]]></description>
		<content:encoded><![CDATA[<p>顺便咨询一下博主，我考虑在processfunction中注册定时器，来替代timewindow；connect上broadcaststream从而实现类动态timewindow。在你看来，这个思路是否可行呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：郑威</title>
		<link>http://shiyanjun.cn/archives/1857.html#comment-142176</link>
		<dc:creator><![CDATA[郑威]]></dc:creator>
		<pubDate>Mon, 24 Aug 2020 13:25:22 +0000</pubDate>
		<guid isPermaLink="false">http://shiyanjun.cn/?p=1857#comment-142176</guid>
		<description><![CDATA[非常感谢，百度了好久，只有您的文章，可以完全帮助我。特意评论感谢]]></description>
		<content:encoded><![CDATA[<p>非常感谢，百度了好久，只有您的文章，可以完全帮助我。特意评论感谢</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Yanjun</title>
		<link>http://shiyanjun.cn/archives/1857.html#comment-141335</link>
		<dc:creator><![CDATA[Yanjun]]></dc:creator>
		<pubDate>Wed, 10 Jun 2020 02:27:28 +0000</pubDate>
		<guid isPermaLink="false">http://shiyanjun.cn/?p=1857#comment-141335</guid>
		<description><![CDATA[你可以使用 Flink 的 Window 功能来实现，不过在 ProcessWindowFunction 可能拿不到一些你想要的其他配置信息。]]></description>
		<content:encoded><![CDATA[<p>你可以使用 Flink 的 Window 功能来实现，不过在 ProcessWindowFunction 可能拿不到一些你想要的其他配置信息。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：小新</title>
		<link>http://shiyanjun.cn/archives/1857.html#comment-141163</link>
		<dc:creator><![CDATA[小新]]></dc:creator>
		<pubDate>Tue, 26 May 2020 03:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://shiyanjun.cn/?p=1857#comment-141163</guid>
		<description><![CDATA[我需要统计一分钟内的数据做监控报警 想通过broadcast来广播报警规则，这个规则我是想在ProcessWindowFunction 中使用这个规则 找了一圈没有找打相关方法，想问问大神这个方案是否可行，如果可行大致的实现思路麻烦指点下]]></description>
		<content:encoded><![CDATA[<p>我需要统计一分钟内的数据做监控报警 想通过broadcast来广播报警规则，这个规则我是想在ProcessWindowFunction 中使用这个规则 找了一圈没有找打相关方法，想问问大神这个方案是否可行，如果可行大致的实现思路麻烦指点下</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Yanjun</title>
		<link>http://shiyanjun.cn/archives/1857.html#comment-139802</link>
		<dc:creator><![CDATA[Yanjun]]></dc:creator>
		<pubDate>Mon, 16 Mar 2020 09:50:07 +0000</pubDate>
		<guid isPermaLink="false">http://shiyanjun.cn/?p=1857#comment-139802</guid>
		<description><![CDATA[你说的动态规则，和我这里说的动态配置是一样的呀，规则在外Flink程序外部系统维护，一旦发生变更，就通过BroadcastStream去更新Flink Streaming Job实例内存中hold的规则数据结构，从而是规则生效。]]></description>
		<content:encoded><![CDATA[<p>你说的动态规则，和我这里说的动态配置是一样的呀，规则在外Flink程序外部系统维护，一旦发生变更，就通过BroadcastStream去更新Flink Streaming Job实例内存中hold的规则数据结构，从而是规则生效。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：九思</title>
		<link>http://shiyanjun.cn/archives/1857.html#comment-122676</link>
		<dc:creator><![CDATA[九思]]></dc:creator>
		<pubDate>Tue, 21 Jan 2020 05:32:52 +0000</pubDate>
		<guid isPermaLink="false">http://shiyanjun.cn/?p=1857#comment-122676</guid>
		<description><![CDATA[我查阅了一些网站，说可以用 自定义 window 或者 自定义 state，但是我一点头绪都没有]]></description>
		<content:encoded><![CDATA[<p>我查阅了一些网站，说可以用 自定义 window 或者 自定义 state，但是我一点头绪都没有</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：九思</title>
		<link>http://shiyanjun.cn/archives/1857.html#comment-122675</link>
		<dc:creator><![CDATA[九思]]></dc:creator>
		<pubDate>Tue, 21 Jan 2020 05:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://shiyanjun.cn/?p=1857#comment-122675</guid>
		<description><![CDATA[博主你好，比如有个动态监控规则：统计每1分钟，用户支付的订单金额超过 100 元 的用户要告警。但是规则是动态的，有可能需要动态增加类似的规则，或者 1分钟，100元 的数值是可以根据需要动态变化的。用 broadcast 要怎么实现呢？]]></description>
		<content:encoded><![CDATA[<p>博主你好，比如有个动态监控规则：统计每1分钟，用户支付的订单金额超过 100 元 的用户要告警。但是规则是动态的，有可能需要动态增加类似的规则，或者 1分钟，100元 的数值是可以根据需要动态变化的。用 broadcast 要怎么实现呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Yanjun</title>
		<link>http://shiyanjun.cn/archives/1857.html#comment-103581</link>
		<dc:creator><![CDATA[Yanjun]]></dc:creator>
		<pubDate>Sat, 03 Aug 2019 14:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://shiyanjun.cn/?p=1857#comment-103581</guid>
		<description><![CDATA[仔细看下，是不是在处理是从 userMapStateDesc 中取出，而没有正确放进去。这个结构有一点点复杂：MapStateDescriptor&lt;String, Map&gt;，不注意可能会放错。]]></description>
		<content:encoded><![CDATA[<p>仔细看下，是不是在处理是从 userMapStateDesc 中取出，而没有正确放进去。这个结构有一点点复杂：MapStateDescriptor&lt;String, Map&gt;，不注意可能会放错。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：~~~~~</title>
		<link>http://shiyanjun.cn/archives/1857.html#comment-103244</link>
		<dc:creator><![CDATA[~~~~~]]></dc:creator>
		<pubDate>Tue, 09 Jul 2019 06:50:03 +0000</pubDate>
		<guid isPermaLink="false">http://shiyanjun.cn/?p=1857#comment-103244</guid>
		<description><![CDATA[多个并行度的时候，状态会有取不到的时候。]]></description>
		<content:encoded><![CDATA[<p>多个并行度的时候，状态会有取不到的时候。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
