Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JetS3t vs AWS Java SDK

I need to figure out between AWS SDK Java APIs and Jets3t APIs ? which is better in terms of throughput and performance?

I am assuming connection is not reliable so i may need to upload/download data in chunks.

There is API for multipart upload in JetS3t. But i am also looking for multipart download.

like image 434
vbh Avatar asked Sep 30 '12 13:09

vbh


1 Answers

In my opinion, I would go with AWS SDK.

I did the switch 6 months ago and so far I have a good experience. I can't answer you precisely in terms of throughput and performance but one thing that I can tell you is that it is less error prone. Sometimes, I experienced weird behaviours/bugs with Jets3t before switching to the AWS SDK.

One thing you should also consider is the support offered by both libraries. Jets3t are now rarely releasing new versions. Jets3t releases a new version about every 6 months or more, comparing to Amazon that releases a new version of their SDK about every 2 weeks. So if Amazon changes something or fix something in their services you are likely to profit more of it be using the Amazon API instead of the Jets3t API.

If you would have asked the same question 2 or 3 years ago my answer would have been different but now in my opinion the SDK from Amazon is mature enough and offers better support/stability than Jets3t.

like image 164
YABADABADOU Avatar answered Sep 28 '22 04:09

YABADABADOU