Skip to content

jdbbackup/jdbbackup-s3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maven Central License Quality Gate Status javadoc

jdbbackup-s3

An Amazon S3 JDBBackup destination manager

Destination format

s3://[accessKey:secretKey@][region:]bucket/path

If accessKey:secretKey are not provided, the manager uses the default AWS credentials provider chain.

If region is not provided, the manager uses the default AWS region provider chain.

All the patterns detailed here are supported.

Loggging

As other JDBBackup components, this library uses the slf4J framework.
As the Java Amazon S3 library uses the Apache Commons Logging, this library uses the jcl-over-slf4j. If you plan to bind SLF4J to JCL, you should remove the jcl-over-slf4j dependency and add the commons-logging.

Here is an example using Maven:

<dependency>
	<groupId>com.fathzer</groupId>
	<artifactId>jdbbackup-s3</artifactId>
	<version>...</version>
	<exclusions>
		<exclusion>
			<groupId>org.slf4j</groupId>
			<artifactId>jcl-over-slf4j</artifactId>
		</exclusion>
	</exclusions>
</dependency>
<dependency>
	<groupId>commons-logging</groupId>
	<artifactId>commons-logging</artifactId>
	<version>...</version>
</dependency>

About

An Amazon S3 JDBBackup destination manager

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages