I use a Django and boto3 sdk
This is the current treatment methods.
1. The client sends the file to Django(EC2)
2. Save the file to Django(EC2)
3. Send a file stored on Django(EC2) to S3.
However, This is inefficient. So, I would like to do this
1. The client sends the file to Django(EC2)
2. The real-time transmission in the receiving file S3
I want not to store the EC2.... However, To transfer files to S3 , I need to check the file information in the previous EC2. I do not want to transfer files to S3 from the client.
It is to dynamically transferred to S3 in EC2.
How can I do this?