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 réponse
0
Réponse acceptée

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
EXPERT
Uri
répondu il y a 2 ans
profile picture
EXPERT
vérifié il y a 22 jours
  • 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);
    

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions