s3fs

S3 filesystem provider for Java 7

License

License

GroupId

GroupId

org.lasersonlab
ArtifactId

ArtifactId

s3fs
Last Version

Last Version

2.2.3
Release Date

Release Date

Type

Type

jar
Description

Description

s3fs
S3 filesystem provider for Java 7
Project URL

Project URL

https://github.com/Upplication/Amazon-S3-FileSystem-NIO2
Source Code Management

Source Code Management

https://github.com/Upplication/Amazon-S3-FileSystem-NIO2

Download s3fs

How to add to project

<!-- https://jarcasting.com/artifacts/org.lasersonlab/s3fs/ -->
<dependency>
    <groupId>org.lasersonlab</groupId>
    <artifactId>s3fs</artifactId>
    <version>2.2.3</version>
</dependency>
// https://jarcasting.com/artifacts/org.lasersonlab/s3fs/
implementation 'org.lasersonlab:s3fs:2.2.3'
// https://jarcasting.com/artifacts/org.lasersonlab/s3fs/
implementation ("org.lasersonlab:s3fs:2.2.3")
'org.lasersonlab:s3fs:jar:2.2.3'
<dependency org="org.lasersonlab" name="s3fs" rev="2.2.3">
  <artifact name="s3fs" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.lasersonlab', module='s3fs', version='2.2.3')
)
libraryDependencies += "org.lasersonlab" % "s3fs" % "2.2.3"
[org.lasersonlab/s3fs "2.2.3"]

Dependencies

compile (6)

Group / Artifact Type Version
com.amazonaws : aws-java-sdk-s3 jar 1.11.232
com.google.guava : guava jar 18.0
org.apache.tika : tika-core jar 1.5
org.slf4j : slf4j-api jar 1.7.5
org.slf4j : jcl-over-slf4j jar 1.7.5
com.google.code.findbugs : jsr305 jar 1.3.9

test (6)

Group / Artifact Type Version
junit : junit jar 4.11
log4j : log4j jar 1.2.17
org.slf4j : slf4j-log4j12 jar 1.7.5
com.github.marschall : zipfilesystem-standalone jar 1.0.1
com.github.marschall : memoryfilesystem jar 0.9.1
org.mockito : mockito-core jar 1.9.5

Project Modules

There are no modules declared in this project.

An Amazon AWS S3 FileSystem Provider JSR-203 for Java 7 (NIO2)

Amazon Simple Storage Service provides a fully redundant data storage infrastructure for storing and retrieving any amount of data, at any time. NIO2 is the new file management API, introduced in Java version 7. This project provides a first API implementation, little optimized, but "complete" to manage files and folders directly on Amazon S3.

Build Status Coverage Status Maven Central

#### How to use

Download from Maven Central
<dependency>
	<groupId>com.upplication</groupId>
	<artifactId>s3fs</artifactId>
	<version>2.2.2</version>
</dependency>

And add to your META-INF/services/java.nio.file.spi.FileSystemProvider (create if not exists yet) a new line like this: com.upplication.s3fs.S3FileSystemProvider.

S3FileSystem and AmazonS3 settings

All settings for S3FileSystem and for the underlying AmazonS3 connector library can be set through System properties or environment variables. Possible settings can be found in com.upplication.s3fs.AmazonS3Factory.

#### Using service locator and system vars

Check that s3fs_access_key and s3fs_secret_key system vars are present with the correct values to have full access to your amazon s3 bucket.

Use this code to create the fileSystem and set to a concrete endpoint.

FileSystems.newFileSystem("s3:///", new HashMap<String,Object>(), Thread.currentThread().getContextClassLoader());
Using service locator and amazon.properties in the classpath

Add to your resources folder the file amazon.properties with the content: s3fs_access_key=access-key s3fs_secret_key=secret-key

Use this code to create the fileSystem and set to a concrete endpoint.

FileSystems.newFileSystem("s3:///", new HashMap<String,Object>(), Thread.currentThread().getContextClassLoader());
Using service locator and programatically authentication

Create a map with the authentication and use the fileSystem to create the fileSystem and set to a concrete endpoint.

Map<String, ?> env = ImmutableMap.<String, Object> builder()
				.put(com.upplication.s3fs.AmazonS3Factory.ACCESS_KEY, "access key")
				.put(com.upplication.s3fs.AmazonS3Factory.SECRET_KEY, "secret key").build()
FileSystems.newFileSystem("s3:///", env, Thread.currentThread().getContextClassLoader());

Complete settings lists:

  • s3fs_access_key
  • s3fs_secret_key
  • s3fs_request_metric_collector_class
  • s3fs_connection_timeout
  • s3fs_max_connections
  • s3fs_max_retry_error
  • s3fs_protocol
  • s3fs_proxy_domain
  • s3fs_proxy_host
  • s3fs_proxy_password
  • s3fs_proxy_port
  • s3fs_proxy_username
  • s3fs_proxy_workstation
  • s3fs_socket_send_buffer_size_hint
  • s3fs_socket_receive_buffer_size_hint
  • s3fs_socket_timeout
  • s3fs_user_agent
  • s3fs_amazon_s3_factory
  • s3fs_signer_override
  • s3fs_path_style_access
Set endpoint to reduce data latency in your applications
// Northern Virginia or Pacific Northwest
FileSystems.newFileSystem("s3://s3.amazonaws.com/", env, Thread.currentThread().getContextClassLoader());
// Northern Virginia only
FileSystems.newFileSystem("s3://s3-external-1.amazonaws.com/", env, Thread.currentThread().getContextClassLoader());
// US West (Oregon) Region
FileSystems.newFileSystem("s3://s3-us-west-2.amazonaws.com/", env, Thread.currentThread().getContextClassLoader());
// US West (Northern California) Region
FileSystems.newFileSystem("s3://s3-us-west-1.amazonaws.com/", env, Thread.currentThread().getContextClassLoader());
// EU (Ireland) Region
FileSystems.newFileSystem("s3://s3-eu-west-1.amazonaws.com/", env, Thread.currentThread().getContextClassLoader());

For a complete list of available regions look at: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region

How to use in Apache MINA
public FileSystemFactory createFileSystemFactory(String bucketName) throws IOException, URISyntaxException {
    FileSystem fileSystem = FileSystems.newFileSystem(new URI("s3:///"), env, Thread.currentThread().getContextClassLoader());
    String bucketPath = fileSystem.getPath("/" + bucketName);

    return new VirtualFileSystemFactory(bucketPath);
}
How to use in Spring

Add to classpath and configure:

@Configuration
public class AwsConfig {

    @Value("${upplication.aws.accessKey}")
    private String accessKey;

    @Value("${upplication.aws.secretKey}")
    private String secretKey;

    @Bean
    public FileSystem s3FileSystem() throws IOException {
        Map<String, String> env = new HashMap<>();
        env.put(com.upplication.s3fs.AmazonS3Factory.ACCESS_KEY, accessKey);
        env.put(com.upplication.s3fs.AmazonS3Factory.SECRET_KEY, secretKey);

        return FileSystems.newFileSystem(URI.create("s3:///"), env, Thread.currentThread().getContextClassLoader());
    }
}

Now you can inject in any spring component:

@Autowired
private FileSystem s3FileSystem;
What is new 2.0.0
  • Preserve URI with end slash #76
  • Removed META-INF/services/java.nio.file.spi.FileTypeDetector #78
  • Bucket are filestores and root directories for a bucket is the bucket itself.
  • getFileName for a root Path is null
  • Added new method toURL to S3Path and can be customized with the property s3fs_path_style_access #83
  • Improved S3Path Tests

#### Features:

  • Copy and create folders and files
  • Delete folders and files
  • Copy paths between different providers
  • Walk file tree
  • Works with virtual s3 folders (not really exists and are element's subkeys)
  • List buckets for the client
  • Multi endpoint fileSystem

Roadmap:

  • Performance issue (slow querys with virtual folders, add multipart submit...)
  • Disallow upload binary files with same name as folders and vice versa

#### Out of Roadmap:

  • Watchers

How to contribute

Clone the github repository:

git clone https://github.com/Upplication/Amazon-S3-FileSystem-NIO2.git

To run the tests:

First, you must copy the file src/test/resources/amazon-test-sample.properties and paste in the same directory with the name amazon-test.properties. In your copy you must edit all the keys:

bucket_name=/your-bucket-name for test
# http://docs.aws.amazon.com/general/latest/gr/rande.html 
s3fs_secret_key= your secret key for test
s3fs_access_key=your access key for test

Thats all, now you can run the test with the command: mvn test or mvn integration-test -Pintegration-tests

#### LICENSE:

Amazon S3 FileSystem NIO2 is released under the MIT License.

org.lasersonlab

Upplication

Versions

Version
2.2.3