This is a small backup utility for uploading/restoring a local directory to/from an AWS S3 bucket.
This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Gleb Koval 6ebf969d35
Initial implementations
2023-12-29 20:38:05 +06:00
.idea Initial implementations 2023-12-29 20:38:05 +06:00
gradle/wrapper Initial implementations 2023-12-29 20:38:05 +06:00
src/main/kotlin Initial implementations 2023-12-29 20:38:05 +06:00
.gitignore Initial implementations 2023-12-29 20:38:05 +06:00
README.md Initial implementations 2023-12-29 20:38:05 +06:00
build.gradle.kts Initial implementations 2023-12-29 20:38:05 +06:00
gradle.properties Initial implementations 2023-12-29 20:38:05 +06:00
gradlew Initial implementations 2023-12-29 20:38:05 +06:00
gradlew.bat Initial implementations 2023-12-29 20:38:05 +06:00
settings.gradle.kts Initial implementations 2023-12-29 20:38:05 +06:00

README.md

TeamCity Executors - A new way to execute builds - Test Task

This is a small backup utility for uploading/restoring a local directory to/from an AWS S3 bucket.

Assumptions

  1. This test task is not interested in re-implementations of common libraries (AWS SDK, Clikt, Gradle Shadow, ...)
  2. The last part (restoration of a single file) should be optimised so that only the part of the blob required for this file is downloaded.
  3. Only this tool is ever used to create backups, so S3 object keys are in the expected format, and ZIP files do not have a comment in the end of central directory record (making it a predictable length of 22 bytes).
    • EOCD64 should similarly not have a comment.

Design decisions

  • Backups may be large, so we want to use multipart uploads if possible (< 100mb is recommended). https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpuoverview.html
    • The Java SDK has high-level support for this via S3TransferManager, but unfortunately when the content is too small, the HTTP Content-Length is not automatically calculated resulting in an error response from the API.
    • I'm not sure whether this is intended behaviour or a bug, but decided to manually implement multipart uploads using the Kotlin SDK instead anyway.
    • Note: I could have just used a temporary file (with a known Content-Length), but I wanted to play around with streams and kotlin concurrency a bit, which is why I went with the more scalable way using streams.
  • Zip files are used so that the backups can be stored in a very common format which also provides compression.
    • Java zip specification: https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/zip/package-summary.html
      • ZIP64 implementation is optional, but possible, so we'll handle it.
    • The End of Central Directory record is also useful for locating the exact positions of files in the blob, so that single files can be downloaded using the HTTP Range header.
    • End of Central Directory comment must be blank (assumption 3). Otherwise, the EOCD length is unpredictable and so we cannot use just a single request the HTTP Range header to get the entire EOCD.
      • Alternative: use S3 object tags to store the EOCD offset, but this way the blob itself would no longer contain all the data required by this backup tool.
      • Alternative: store the EOCD offset in the EOCD comment or the beginning of the file, but this makes a similar, but more strict assumption anyway.

Instructions

Create a backup utility that copies files to AWS S3. The utility should take a local directory with files and put it into AWS S3 in the form of one blob file. The reverse behavior should also be possible. We should be able to specify what backup we want to restore and where it should put the files on the local system. The utility should be able to restore one individual file from a backup.