- Why serverless?
- Introduction to sBeacon
- Installation
- Deployment
- Development
- API Usage
- Securing the API
- Troubleshooting
Serverless means the service does not require any servers to be provisioned. The idea is to minimise running costs, as well as support arbitrary scalablility. It also means setup is very fast.
sBeacon implements Beacon v2 protocol according to the ga4gh specification. sBeacon can be used as a beacon network participant. Please refer to https://docs.genomebeacons.org/networks/.
You can use either local development or a docker environment for development and deployment. First download the repository using the following command. If you're missing the git
command please have a look at the Option 1 commands.
git clone https://github.com/aehrc/terraform-aws-serverless-beacon.git
cd terraform-aws-serverless-beacon
Note: the following instructions are strictly for Amazon Linux 2023 AMI 2023.0.20230419.0 x86_64 HVM kernel-6.1
AMI with name al2023-ami-2023.0.20230419.0-kernel-6.1-x86_64
.
Skip to next section if you're only interested in deployment or using a different architecture compared to AWS lambda environment. The following setup must be performed on a latest Amazon Linux instance to match the lambda runtimes. If this is not a viable option, please resort to using Docker.
Run the following shell commands to setup necessary build tools. Valid for Amazon Linux development instances.
Required dependencies
GCC
andG++
version10.3.1 20210422
or laterCMake 3.20.3
or later- Compressionlibraries
xz
,bzip2
andzlib
- Exact python version -
Python3.9
- OpenJDK version
11.0.18
and Apache Maven3.5.4
Install system-wide dependencies
# Install development essentials
sudo yum update
sudo yum upgrade
sudo yum install -y gcc-c++ git openssl-devel libcurl-devel wget bzip2-devel xz-devel libffi-devel zlib-devel autoconf intltool
Install JAVA and MAVEN
sudo yum install -y java-11-amazon-corretto-devel
wget https://archive.apache.org/dist/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz -O /tmp/apache-maven-3.5.4-bin.tar.gz
sudo tar xf /tmp/apache-maven-3.5.4-bin.tar.gz -C /opt
rm /tmp/apache-maven-3.5.4-bin.tar.gz
# Run the following commands (or add them to .bashrc and run source ~/.bashrc)
export M2_HOME=/opt/apache-maven-3.5.4
export PATH=${M2_HOME}/bin:${PATH}
Install Python 3.9
to a virtual environment
# Download and install python
cd ~
wget https://www.python.org/ftp/python/3.9.16/Python-3.9.16.tgz
tar xzf Python-3.9.16.tgz
cd Python-3.9.16
./configure --enable-optimizations
sudo make altinstall
cd ~
python3.9 -m venv py39
# activate py39 environment
source ~/py39/bin/activate
Install CMake
# Install CMake
cd ~
wget https://cmake.org/files/v3.20/cmake-3.20.3.tar.gz
tar -xvzf cmake-3.20.3.tar.gz
cd cmake-3.20.3
./bootstrap
make
sudo make install
Make sure you have the terraform version Terraform v1.3.7
or newer if you're not using the docker image. Run the following command to get the terraform binary.
# only for linux - find other OS version here https://releases.hashicorp.com/terraform/1.3.7/
cd ~
wget https://releases.hashicorp.com/terraform/1.3.7/terraform_1.3.7_linux_386.zip
sudo unzip terraform_1.3.7_linux_386.zip -d /usr/bin/
Initialise the docker container using the following command.
docker build -t csiro/sbeacon ./docker
This will initialise the docker container that contains everything you need including terraform. In order to start the docker container from within the repository directory run the following command.
docker run --rm -it -v `pwd`:`pwd` -v /tmp:/tmp -u `id -u`:`id -g` -w `pwd` csiro/sbeacon:latest /bin/bash
You can simply deploy the cloned repository following the establishment of AWS keys in the development terminal. Alternatively, sBeacon can be used as a module in an existing terraform project.
Once you have configured the development environment or the docker container, install the essential AWS C++ SDKs and initialise the other libraries using the following command. Do this only once or as core C++ libraries change.
$ ./init.sh -march=haswell -O3
Now set the AWS access keys and token as needed. Since docker uses the same user permissions this may not be needed if you're using an authorised EC2 instance.
export AWS_ACCESS_KEY_ID="AWS_ACCESS_KEY_ID"
export AWS_SECRET_ACCESS_KEY="AWS_SECRET_ACCESS_KEY"
export AWS_SESSION_TOKEN="AWS_SESSION_TOKEN"
Install using terraform init
to pull the module, followed by running terraform apply
will create the infrastucture. For adding data to the beacon, see the API. To shut down the entire service run terraform destroy
. Any created datasets will be lost (but not the VCFs on which they are based).
terraform init
terraform plan # should finish without errors
terraform apply
Your beacon deployment could be a part of a larger program with a front-end and other services. In that case, on the parent folder that the repo folder resides, create a main.tf
file.
# main.tf
module "serverless-beacon" {
# repo folder
source = "./terraform-aws-serverless-beacon"
beacon-id = "au.csiro-serverless.beacon"
# bucket prefixes
variants-bucket-prefix = "sbeacon-"
metadata-bucket-prefix = "sbeacon-metadata-"
lambda-layers-bucket-prefix = "sbeacon-lambda-layers-"
# beacon variables
beacon-name = ""
organisation-id = ""
organisation-name = ""
# aws region
region = "REGION"
}
Please refer to ./examples/minimum/ or ./examples/full to find a minimal and a complete setup. Consider adding outputs.tf
file as well.
All the layers needed for the program to run are in layers folder. To add a new layer for immediate use with additional configs, run the following commands. Once the decision to use the library is finalised update the init.sh
script to automate the process.
- Python layer
cd terraform-aws-serverless-beacon
pip install --target layers/<Library Name>/python <Library Name>
- Binary layer
# clone the repo somewhere else
git clone <REPO>
cd <REPO>
mkdir build && cd build && cmake .. && make && make install
# copy the bin and lib folders to a folder inside layers
cp bin terraform-aws-serverless-beacon/layers/<Library Name>/
cp lib terraform-aws-serverless-beacon/layers/<Library Name>/
# troubleshoot with "ldd ./binary-name" to see what libaries needed
# you can use the following command to copy the libraries to binaries/lib/
ldd <binary file> | awk 'NF == 4 { system("cp " $3 " ./layers/binaries/lib") }'
- Collaborative development
Please make a copy of backend.tf.template
with suited parameters and rename as backend.tf
. Refer to documentation for more information https://www.terraform.io/language/settings/backends/configuration. If this is not done, make sure the terraform lock and state files are stored securely to avoid infrastructure-vs-code inconsistencies. Please refer to ./examples/full to find a an example backend.
Please find the data in ./examples/test-data/ and use the ./docs/USAGE-GUIDE.md to try the provided test data.
Please refer to the documentation outlined at ./docs/INGESTION-GUIDE.md.
Querying is available as per API defined by BeaconV2 https://beacon-project.io/#the-beacon-v2-model.
- All the available endpoints can be retrieved using the deployment url's
/map
. - Schema for beacon V2 configuration can be obtained from
/configuration
. - Entry types are defined at
/entry_types
.
Please refer to the documentation outlined at ./docs/AUTH-GUIDE.md.
You'll also need to do this if lambda functions start to display "Error: Runtime exited with error: signal: illegal instruction (core dumped)". In this case it's likely AWS Lambda has moved onto a different architecture from haswell (Family 6, Model 63). You can use cat /proc/cpuinfo in a lambda environment to find the new CPU family and model numbers, or just change -march=haswell to -msse4.2 or -mpopcnt for less optimisation.
$ ./init.sh -msse4.2 -O3
If terraform apply --auto-approve
complaints about a provider error. Please retry. If the issue persists, please raise an issue with the complete terraform log.