Regarding Topic Publish 1 file that will send to all subscriptions

0

I need to Publish 1 file in Topic messaging service , that will be send to all subscriptions. Can you suggest what AWS service help me achieve this usecase? Approx file size 1MB to 5MB. I am not interest to use S3 then move to AWS Messaging service. Can you provide solution for cost efficient and good performance way also?

  • Can you share more about the use case? Which kind of subscribers are you dealing with? server side applications/microservices, devices, user applications/mobile?

  • we have Java Webapplication in AWS through that UI we will upload file to SNS topic, another http subscription rest API java code we will read SNS topic uploaded file. I need reference java code for Publish SNS file through Java code and Read the SNS published file.

1回答
0
承認された回答

We do not have any native service that can do that. The services that you can use as a topic are EventBridge and SNS, and both of them have a payload size limit of 256KB. What customers usually do is save the object to S3 and send on the topic the details of the object so they can retrieve it themselves.

You can also use MSK (Managed Streaming for Kafka) which allows payload size of up to 8 MB.

profile pictureAWS
エキスパート
Uri
回答済み 2年前
profile picture
エキスパート
レビュー済み 22日前
  • Can you share me reference link how to publish file in SNS and EventBridge through java code?

  • Sorry, but I do not have any such code, but the code should very loosely look something like:

    bucket_name = "bucket";
    object_name = "my_object";
    s3.upload_file(bucket_name, object_name, local_file);
    
    message = { "bucket_name": bucket_name, "object_name": object_name };
    sns.public_message(topic_name, message);
    

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ