The mapper service registers mapping of accessionIDs (stable ids for files) to datasetIDs. Once the file accession ID has been mapped to a dataset ID, the file is removed from the inbox.
The mapper
service maps file accessionIDs
to datasetIDs
.
When running, mapper
reads messages from the configured RabbitMQ queue (commonly: mappings
).
For each message, these steps are taken (if not otherwise noted, errors halt progress and the service moves on to the next message):
- The message is validated as valid JSON that matches the
dataset-mapping
schema.- If the message can’t be validated it is discarded with an error message is logged.
- AccessionIDs from the message are mapped to a datasetID (also in the message) in the database.
- On error the service sleeps for up to 5 minutes to allow for database recovery, after 5 minutes the message is Nacked, re-queued and an error message is written to the logs.
- The uploaded files related to each AccessionID is removed from the inbox
- If this fails an error will be written to the logs.
- The RabbitMQ message is Ack'ed.
Mapper
reads messages from one RabbitMQ queue (commonly:mappings
).Mapper
maps files to datasets in the database using theMapFilesToDataset
function.Mapper
retrieves the inbox filepath from the database for each file using theGetInboxPath
function.Mapper
sets the status of a dataset in the database using theUpdateDatasetEvent
function.Mapper
removes data from inbox storage.
There are a number of options that can be set for the mapper
service.
These settings can be set by mounting a yaml-file at /config.yaml
with settings.
ex.
log:
level: "debug"
format: "json"
They may also be set using environment variables like:
export LOG_LEVEL="debug"
export LOG_FORMAT="json"
These settings control how mapper
connects to the RabbitMQ message broker.
BROKER_HOST
: hostname of the RabbitMQ serverBROKER_PORT
: RabbitMQ broker port (commonly:5671
with TLS and5672
without)BROKER_QUEUE
: message queue to read messages from (commonly:mappings
)BROKER_USER
: username to connect to RabbitMQBROKER_PASSWORD
: password to connect to RabbitMQBROKER_PREFETCHCOUNT
: Number of messages to pull from the message server at the time (default to2
)BROKER_EXCHANGE
= the exchange name (i.e.,sda
)
-
DB_HOST
: hostname for the postgresql database -
DB_PORT
: database port (commonly:5432
) -
DB_USER
: username for the database -
DB_PASSWORD
: password for the database -
DB_DATABASE
: database name -
DB_SSLMODE
: The TLS encryption policy to use for database connections, valid options are:disable
allow
prefer
require
verify-ca
verify-full
More information is available in the postgresql documentation
Note that ifDB_SSLMODE
is set to anything butdisable
, thenDB_CACERT
needs to be set, and if set toverify-full
, thenDB_CLIENTCERT
, andDB_CLIENTKEY
must also be set. -
DB_CLIENTKEY
: key-file for the database client certificate -
DB_CLIENTCERT
: database client certificate file -
DB_CACERT
: Certificate Authority (CA) certificate for the database to use
Storage backend is defined by the INBOX_TYPE
variable.
Valid values for these options are S3
or POSIX
(Defaults to POSIX
on unknown values).
The value of these variables define what other variables are read.
The same variables are available for all storage types, differing by prefix (INBOX_
)
if *_TYPE
is S3
then the following variables are available:
*_URL
: URL to the S3 system*_ACCESSKEY
: The S3 access and secret key are used to authenticate to S3, more info at AWS*_SECRETKEY
: The S3 access and secret key are used to authenticate to S3, more info at AWS*_BUCKET
: The S3 bucket to use as the storage root*_PORT
: S3 connection port (default:443
)*_REGION
: S3 region (default:us-east-1
)*_CHUNKSIZE
: S3 chunk size for multipart uploads.*_CACERT
: Certificate Authority (CA) certificate for the storage system, this is only needed if the S3 server has a certificate signed by a private entity
and if *_TYPE
is POSIX
:
*_LOCATION
: POSIX path to use as storage root
LOG_FORMAT
can be set tojson
to get logs in JSON format. All other values result in text logging.LOG_LEVEL
can be set to one of the following, in increasing order of severity:trace
debug
info
warn
(orwarning
)error
fatal
panic
The following configuration variables are essential for a successful setup.
BROKER_HOST
=BROKER_PORT
=BROKER_USER
=BROKER_PASSWORD
=BROKER_VHOST
=BROKER_QUEUE
=BROKER_EXCHANGE
=BROKER_ROUTINGERROR
=BROKER_SSL
=BROKER_VERIFYPEER
=BROKER_CACERT
=BROKER_CLIENTCERT
=BROKER_CLIENTKEY
=DB_HOST
=DB_PORT
=DB_USER
=DB_PASSWORD
=DB_DATABASE
=DB_SSLMODE
=DB_CLIENTCERT
=DB_CLIENTKEY
=LOG_LEVEL
=INBOX_LOCATION
=