1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

AWSのFan-out / Fan-inについて調べてみた

Posted at

デベロッパーアソシエイトの勉強をしていたところ、試験ガイドに「ファンアウト」と記載されていました。

image.png

ファンアウトってなんぞ...?と思ったので、詳しく調べてみました。
(AWS公式の資料にも説明がなく、日本語のドキュメントがほとんどなかったので、主に英語ドキュメントからの引用です)

ファンアウト(Fan-out)とは

ファンアウトは、大きなタスクを小さなサブタスクに分割することです。
image.png
複数のタスクに分割することで並行処理できるようになり、プロセス全体を迅速かつパフォーマンスの高い方法で処理できるようになります。

ファンイン(Fan-in)とは

ファンインは、ファンアウトされたサブタスクから結果を収集する場合に利用されます。
image.png
例えば、アプリケーションがすべてのサブタスクが完了するのを待ってから、プロセス全体を進める場合にも役立ちます。

AWSサービスとの関係

ファンアウトは、例えばSNSから複数のLambdaを起動させるようなアーキテクチャに用いられます。
image.png

一方、ファンインは分散処理した結果を一か所のデータレイクやデータウェアハウスへ格納する場合に用いられるアーキテクチャです。格納先にはDynamoDBやS3などが挙げられます。
image.png

(参考)
https://dev.to/byrro/crash-course-on-fan-out-fan-in-with-aws-lambda-47g0
https://theburningmonk.com/2018/04/how-to-do-fan-out-and-fan-in-with-aws-lambda/

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?