Bandwidth Qurey

0

I have high bandwidth issue. My EC2 is running a file server to S3 is there anyway I can solve this issue?

asked a year ago254 views
4 Answers
1
Accepted Answer

ensure is it setup correctly

There are 2 methos exists

1.Check with CloudTrail

Execute the API and check it via CloudTrail. Check CloudTrail logs, vpcEndpointId field exists.

$ aws s3 ls s3://YOUR-BUCKET/
Check the CloudTrail log and if the vpcEndpointId field exists, success.

{
    ...
    "eventSource": "s3.amazonaws.com",.
    "eventName": "ListBuckets",.
    ...
    "sourceIPAddress": "10.30.0.160", ...
    ...
    "vpcEndpointId": "vpce-0554e2f536c2ae78c", ...
    ...
}

2.Executing command from private subnet

As a way to check for private subnet limitation, it is successful if the API can be executed even though it cannot communicate with the Internet.

profile picture
EXPERT
answered a year ago
profile picture
EXPERT
reviewed a year ago
1

Hi. This document will help you.

[How can I improve the transfer speeds for copying data between my S3 bucket and EC2 instance?]

https://repost.aws/knowledge-center/s3-transfer-data-bucket-instance

In this case, especially these instructions will work.

  • Use enhanced networking on the EC2 instance
  • Use a VPC endpoint for Amazon S3
  • Upgrade your EC2 instance type
profile picture
EXPERT
answered a year ago
profile picture
EXPERT
reviewed a year ago
  • I have setup VPC endpoint but ensure is it setup correctly any expert can help to see please?

1
profile picture
EXPERT
answered a year ago
profile picture
EXPERT
reviewed a year ago
  • Thank You exeprt Sedat_Salman

0

Maybe based on the below image:

Enter image description here

Do you think I have setup my VPC Endpoint correctly?

answered a year ago
  • Yes.It seems well.

  • Thanks You Expert :D

  • Your welcome.If you don't mind, I would like you to "Accept Answer" to my first answer for the sake of the community and those who are troubled by the same event.

  • Yes Exeprt. I have accept the answer on this post. Once again thanks.

  • Thanks! :D

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions