<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Aws on TUTYSARA'S SPACE</title><link>https://www.tutysara.net/tags/aws/</link><description>Recent content in Aws on TUTYSARA'S SPACE</description><generator>Hugo</generator><language>en-EN</language><copyright>(c) 2026 tutysara</copyright><lastBuildDate>Tue, 07 Sep 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://www.tutysara.net/tags/aws/index.xml" rel="self" type="application/rss+xml"/><item><title>SQS vs SNS vs Kinesis</title><link>https://www.tutysara.net/posts/2021/09/07/sqs-vs-sns-vs-kinesis/</link><pubDate>Tue, 07 Sep 2021 00:00:00 +0000</pubDate><guid>https://www.tutysara.net/posts/2021/09/07/sqs-vs-sns-vs-kinesis/</guid><description>&lt;table&gt;
 &lt;thead&gt;
 &lt;tr&gt;
 &lt;th&gt;Service&lt;/th&gt;
 &lt;th&gt;Think of it as&lt;/th&gt;
 &lt;/tr&gt;
 &lt;/thead&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;td&gt;&lt;strong&gt;SQS&lt;/strong&gt;&lt;/td&gt;
 &lt;td&gt;A &lt;strong&gt;durable queue&lt;/strong&gt; between producers and consumers&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;&lt;strong&gt;SNS&lt;/strong&gt;&lt;/td&gt;
 &lt;td&gt;A &lt;strong&gt;fan-out notification system&lt;/strong&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;&lt;strong&gt;Kinesis&lt;/strong&gt;&lt;/td&gt;
 &lt;td&gt;A &lt;strong&gt;high-throughput event stream&lt;/strong&gt;&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="sqs"&gt;SQS:&lt;/h2&gt;
&lt;p&gt;Is ideal when&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Producers and consumers run at different speeds&lt;/li&gt;
&lt;li&gt;You want retry, durability, and backpressure&lt;/li&gt;
&lt;li&gt;Each message should be processed at least once&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="sns"&gt;SNS&lt;/h2&gt;
&lt;p&gt;SNS is about fan-out, not durability for processing.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Push-based&lt;/li&gt;
&lt;li&gt;One message → many subscribers&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Subscribers can be: SQS queues or HTTP endpoints or Lambda&lt;/p&gt;</description></item></channel></rss>