Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jgit-dev] push to S3 uses SSL?

On Sun, Jun 12, 2011 at 09:11, pablo platt <pablo.platt@xxxxxxxxx> wrote:
> I've found several blog posts on using jgit to push to a repo on s3.
> Does it use SSL (https) ?

No. It uses plain text HTTP. The code predates Amazon supporting SSL
for S3 and hasn't really been updated since.

> Is it possible that the s3 git repo will get corrupted due to partial
> upload?

No. A partial upload may leave some objects laying around in the
bucket that aren't necessary, but it won't be corrupted.

> It will probably can't happen with "real" git server probably but I wonder
> if the fact that s3 is just an http server make it unsafe.

Nope. The S3 client in JGit does ordered writes in an order that are
safe if interrupted, but might leave some unused objects laying around
if interrupted. These aren't harmful, they just waste space (and thus
cost money...).

-- 
Shawn.


Back to the top