dp-upload-service

command module
v1.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 14, 2024 License: MIT Imports: 6 Imported by: 0

README

DP Upload Service

Introduction

The Upload Service is part of the Static Files System. This service is responsible for storing the metadata and state of files.

The service enables consumers to upload a large file (Maximum 50GB) in multiple parts (Maximum 1000 - Each part must be 5MB, except the last part, which can be smaller)

The file will be stored in AWS S3.

It used the Files API to store the information about a file and is state.

REST API

The service is fully documented in Swagger Docs

Deprecated Endpoints

Upload service has been updated with a new upload endpoint /upload-new. This endpoint enables consumers to upload any type of file and uses Files API to store the relevant metadata.

The old URL /upload requires the uploading consumer to store its own metadata about the file.

Once all existing consumers have been moved from using /upload to using /upload-new all the existing /upload endpoints and their related code can be removed.

S3 Buckets

The /upload endpoint saves files to the S3 bucket configured in the UPLOAD_BUCKET_NAME environment variable. Once the file is uploaded, other services within DP take the file for further processing. Once the processing is complete the new files are stored in a separate S3 bucket ready for download/decryption.

The /upload-new endpoint saves files to the S3 bucket configured in the STATIC_FILES_ENCRYPTED_BUCKET_NAME environment variable. This S3 bucket is the same one used for uploading files at the end of CMD Dataset file processing.

Getting started

  • Run make docker-local
  • Run (inside container) make debug

Dependencies

  • No further dependencies other than those defined in go.mod

Configuration

Environment variable Default Description
BIND_ADDR :25100 The host and port to bind to
AWS_REGION eu-west-2 S3 region to use. This region has to match the region where the bucket was created
UPLOAD_BUCKET_NAME testing Name of the S3 bucket that dataset uploads are sent to
STATIC_FILES_ENCRYPTED_BUCKET_NAME - Name of the S3 bucket that static file uploads are sent to
GRACEFUL_SHUTDOWN_TIMEOUT 5s The graceful shutdown timeout in seconds (time.Duration format)
HEALTHCHECK_INTERVAL 30s Time between self-healthchecks (time.Duration format)
HEALTHCHECK_CRITICAL_TIMEOUT 90s Time to wait until an unhealthy dependent propagates its state to make this app unhealthy (time.Duration format)
FILES_API_URL -
LOCALSTACK_HOST - The hostname of the localstack server used for integration testing

To Test using Curl

To test upload functionality using curl, you need to pass the following query string parameters in the URL - to satisfy the schema mentioned in the Resumable struct and pass the file as form-data

Please refer Resumable struct.

  • curl -i -X POST -H 'content-type: multipart/form-data' -F file=@README.md 'http://localhost:25100/upload\?resumableFilename=README.md&resumableChunkNumber=1&resumableType=text/plain&resumableTotalChunks=1&resumableChunkSize=1000000&aliasName=somealias'

API Client

There is an API Client for the Upload API this is part of dp-api-clients-go package.

Contributing

See CONTRIBUTING for details.

License

Copyright © 2022, Office for National Statistics (https://www.ons.gov.uk)

Released under MIT license, see LICENSE for details.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
aws
features

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL