Questions tagged [aws-storage-gateway]

AWS Storage Gateway connects an on-premises software appliance with cloud-based storage to integrate on-premises IT environments with AWS storage infrastructure in the cloud.

Documentation: https://aws.amazon.com/documentation/storage-gateway/

44 questions
16
votes
2 answers

Change S3 Bucket Storage class to S3 Infrequent Access

I want to change the S3 bucket to have default storage class of Infrequent Access. So if I upload file to the bucket, it should directly go to Infrequent Access storage. I don't want to use the Lifecycle
kevin peter
  • 541
  • 1
  • 4
  • 19
14
votes
1 answer

AWS data sync vs storage gateway use case

What is the real world use case difference between AWS data sync and storage gateway, since both allow data transfer from/to on premise data centre and AWS.
14
votes
3 answers

AWS S3 and AWS storage gateway

i am bit confused between AWS S3 and AWS storage gateway as both functions the same of storing data.Can anyone explain me with example of what is the exact difference between two services offered by Amazon
4
votes
1 answer

AWS FSx vs S3 File Gateway

let's suppose I have the need to have a NAS-equivalent share on AWS that will replace my on-prem NAS server. I see that both solutions, FSx and S3 File Gateway, allow to have a SMB protocol interface. So they will present themselves to clients in…
wizard
  • 1,456
  • 1
  • 11
  • 20
3
votes
1 answer

AWS Storage gateway : refresh cache Too many requests have been sent to server

I am calling AWS Storage Gateway refreshCache method quite too frequently I guess, (As the message suggests), but I am not sure how long do I need to wait till I hit it again, any help will be appreciated. AWSStorageGateway gatewayClient =…
Ajeet Maurya
  • 622
  • 5
  • 16
3
votes
1 answer

storagegateway.ListGateways() returning "Invalid resource" with status code: 400

I am having trouble using the go sdk to list all of the storage gateways in a region using the following code: package main import ( "fmt" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/session" …
3
votes
2 answers

Do AWS File Gateway uses S3 endpoint if within VPC?

I am planning to use AWS File Gateway in a hybrid environment where I will mount the File Gateway to an EC2 instance from within a private subnet. As per AWS documentation, all data transfer is done through HTTPS when using File Gateway. But since…
2
votes
1 answer

AWS Storage gateway for caching millions of files in S3

We have a use case where in we need to access almost millions of files from a Java application. Currently we are storing them in EBS volume. This is turning out to be expensive option(as we have reached upto 15TB now) so we are looking for S3 as the…
A.K.Desai
  • 1,274
  • 1
  • 10
  • 16
2
votes
1 answer

AWS File Gateway - Ensure Authentic UID/GID

AWS File Gateway seems to allow setting of UID/GID NFS permissions on shares and files in the gateway. This is great, but since there is no local user base stored on the gateway itself, it seems like, once authenticated (which seems to go against…
Jeff
  • 35,755
  • 15
  • 108
  • 220
1
vote
1 answer

how to filter on list_gateways() aws boto3

got following code and it shows all my storage gateways. I need to get info on only 1 gateway import boto3 sg = boto3.client('storagegateway', 'us-east-1') sg.list(gateways) print (sg.list_gateways) any idea how to filter out and print only a…
wwe34124
  • 11
  • 4
1
vote
0 answers

Storage gateway/File gateway on using EC2 instance - AWS

What is the recommended EC2 instance type for creating storage/file gateway in AWS. Compute/memory/Storage optimized? Also what is the criteria to be considered while allocating the size of ebs for cache? say if i have about 100k files and each of…
MMA
  • 408
  • 3
  • 7
  • 19
1
vote
0 answers

AWS CLI Storage for android backend

I want to store some data in database. I created a NoSQL database using Amplify Storage. But cannot find how to add data to the database. Please help?
1
vote
2 answers

Unable to mount AWS Storage Gateway NFS (or SMB) File Share

I bet this is a permissions issue, but I can't figure it out. Overview So I have an EC2 VM Instance set up according to Amazon instructions. The VM instance is running at IP 18.212.some.thing (not really but you get the point). I have set up a…
gakera
  • 3,589
  • 4
  • 30
  • 36
1
vote
0 answers

Refreshing cache of AWS FileGateWay

I am trying to refresh cache on AWS FileGateway. I have built the AWSStorageGateway using AWSStorageGatewayClientBuilder object like this - AWSStorageGateway awsStorageGateway = AWSStorageGatewayClientBuilder.standard() …
bumi25
  • 125
  • 1
  • 14
1
vote
0 answers

Verify Files Uploaded to S3 Via Storage Gateway

I'm trying to work out the best strategy for comparing checksum values in s3 with my files on local disk. I am uploading these files via AWS Storage Gateway but I cannot find a way to attach metadata in the usual manner using the AWS CLI described…
john
  • 709
  • 3
  • 13
  • 25
1
2 3