FirstName
FirstName

Reputation: 417

Fastest way to download/access files in Amazon S3

I'm trying to access files in my amazon S3 and do some operations on it. Currently evaluating the options.

Since I will be doing some operations on the S3 files, I would prefer using some language to access the files in S3 (I have already tried copy command).

My S3 contains JSON files which range between 2MB to 4 MB and I would need to parse these JSON and load them into a database (thinking about using JQuery here, but any other suggestions are welcome)

Given these requirements which is most efficient language/platform to be used here.

Upvotes: 0

Views: 100

Answers (1)

George Whitaker
George Whitaker

Reputation: 1668

You options are pretty broad here. AWS has a list of SDKs for you to choose from. https://aws.amazon.com/tools/#sdk

So your comfort level with a particular language should be your largest influencer. Given that you mentioned JSON and JQuery perhaps you should look at Node.js SDK and AWS Lambda.

Upvotes: 1

Related Questions