Skip to content

cyberdelia/signals

Folders and files

NameName
Last commit message
Last commit date
Sep 26, 2021
Feb 21, 2021
May 24, 2021
Oct 10, 2023
Dec 29, 2019
May 23, 2020
Sep 26, 2021
Feb 24, 2025
Nov 11, 2020
Nov 11, 2020
Dec 29, 2019

Repository files navigation

Signals

Signals provides parallel and streaming upload and download of S3 objects.

Features

  • Streaming: Parallel and streaming upload and download for efficient operations.
  • Integrity checks: Integrity checks are done during multi-part upload.
  • Retries: Every call to s3 are retried according to Amazon S3 recommendations.
  • Memory conscious: Signals tries to make a conscious usage of memory during upload and download.

Installation

The package is available in Github, using Gradle:

implementation("com.lapanthere:signals:0.4.0")

Usage

File("data.txt").inputStream().use { file -> 
    S3OutputStream(bucket = "bucket", key = "data.txt").use { s3 ->
        file.copyTo(s3)
    }
}

File("data.txt").outputStream().use { file -> 
    S3InputStream(bucket = "bucket", key = "data.txt").use { s3 -> 
        s3.copyTo(file)
    }
}

Part size calculations

The size of each part follow the same logic for both upload and download. It starts at 5MB, and grow up to 3.6GB to allow to upload up to 5TB, to match with AWS S3 limits.

size

Part size growth

sum

Total size growth

See also