Skip to content

Commit

Permalink
Update from neicnordic/sensitive-data-archive at 12:58 on 2023-11-09
Browse files Browse the repository at this point in the history
  • Loading branch information
Github aggregate action committed Nov 9, 2023
1 parent a72c150 commit 50090e9
Show file tree
Hide file tree
Showing 5 changed files with 216 additions and 285 deletions.
147 changes: 79 additions & 68 deletions docs/services/finalize.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@

Handles the so-called _Accession ID (stable ID)_ to filename mappings from Central EGA.


## Configuration

There are a number of options that can be set for the finalize service.
These settings can be set by mounting a yaml-file at `/config.yaml` with settings.

ex.

```yaml
log:
level: "debug"
format: "json"
```
They may also be set using environment variables like:
```bash
export LOG_LEVEL="debug"
export LOG_FORMAT="json"
Expand All @@ -24,91 +25,101 @@ export LOG_FORMAT="json"

These settings control how finalize connects to the RabbitMQ message broker.

- `BROKER_HOST`: hostname of the rabbitmq server

- `BROKER_PORT`: rabbitmq broker port (commonly `5671` with TLS and `5672` without)

- `BROKER_QUEUE`: message queue to read messages from (commonly `accessionIDs`)

- `BROKER_ROUTINGKEY`: message queue to write success messages to (commonly `backup`)

- `BROKER_USER`: username to connect to rabbitmq

- `BROKER_PASSWORD`: password to connect to rabbitmq

- `BROKER_PREFETCHCOUNT`: Number of messages to pull from the message server at the time (default to 2)

### PostgreSQL Database settings:

- `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`
- `BROKER_HOST`: hostname of the rabbitmq server
- `BROKER_PORT`: rabbitmq broker port (commonly `5671` with TLS and `5672` without)
- `BROKER_QUEUE`: message queue to read messages from (commonly `accessionIDs`)
- `BROKER_ROUTINGKEY`: message queue to write success messages to (commonly `backup`)
- `BROKER_USER`: username to connect to rabbitmq
- `BROKER_PASSWORD`: password to connect to rabbitmq
- `BROKER_PREFETCHCOUNT`: Number of messages to pull from the message server at the time (default to 2)

### PostgreSQL Database settings

- `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](https://www.postgresql.org/docs/current/libpq-ssl.html#LIBPQ-SSL-PROTECTION)

Note that if `DB_SSLMODE` is set to anything but `disable`, then `DB_CACERT` needs to be set,
and if set to `verify-full`, then `DB_CLIENTCERT`, and `DB_CLIENTKEY` must also be set

- `DB_CLIENTKEY`: key-file for the database client certificate

- `DB_CLIENTCERT`: database client certificate file
- `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

- `DB_CACERT`: Certificate Authority (CA) certificate for the database to use
### Logging settings

### Logging settings:
- `LOG_FORMAT` can be set to “json” to get logs in json format.
All other values result in text logging

- `LOG_FORMAT` can be set to “json” 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` (or `warning`)
- `error`
- `fatal`
- `panic`

- `LOG_LEVEL` can be set to one of the following, in increasing order of severity:
- `trace`
- `debug`
- `info`
- `warn` (or `warning`)
- `error`
- `fatal`
- `panic`
### Storage settings

## Service Description
Finalize adds stable, shareable _Accession ID_'s to archive files.
When running, finalize reads messages from the configured RabbitMQ queue (default "accessionIDs").
For each message, these steps are taken (if not otherwise noted, errors halt progress and the service moves on to the next message):
Storage backend is defined by the `ARCHIVE_TYPE`, and `BACKUP_TYPE` variables.
Valid values for these options are `S3` or `POSIX`
(Defaults to `POSIX` on unknown values).

1. The message is validated as valid JSON that matches the "ingestion-accession" schema (defined in sda-common).
If the message can’t be validated it is discarded with an error message in the logs.
The value of these variables define what other variables are read.
The same variables are available for all storage types, differing by prefix (`ARCHIVE_`, or `BACKUP_`)

1. if the type of the `DecryptedChecksums` field in the message is `sha256`, the value is stored.
if `*_TYPE` is `S3` then the following variables are available:

1. A new RabbitMQ "complete" message is created and validated against the "ingestion-completion" schema.
If the validation fails, an error message is written to the logs.
- `*_URL`: URL to the S3 system
- `*_ACCESSKEY`: The S3 access and secret key are used to authenticate to S3,
[more info at AWS](https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys)
- `*_SECRETKEY`: The S3 access and secret key are used to authenticate to S3,
[more info at AWS](https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys)
- `*_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, tjhis is only needed if the S3 server has a certificate signed by a private entity

1. The file accession ID in the message is marked as "ready" 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.
and if `*_TYPE` is `POSIX`:

1. The complete message is sent to RabbitMQ. On error, a message is written to the logs.
- `*_LOCATION`: POSIX path to use as storage root

1. The original RabbitMQ message is Ack'ed.
## Service Description

## Communication
Finalize adds stable, shareable _Accession ID_'s to archive files.
If a backup location is configured it will perform backup of a file.
When running, finalize reads messages from the configured RabbitMQ queue (default "accessionIDs").
For each message, these steps are taken (if not otherwise noted, errors halt progress and the service moves on to the next message):

- Finalize reads messages from one rabbitmq queue (default `accessionIDs`).
1. The message is validated as valid JSON that matches the "ingestion-accession" schema. If the message can’t be validated it is discarded with an error message in the logs.
2. If the service is configured to perform backups i.e. the `ARCHIVE_` and `BACKUP_` storage backends is set. Archived files will be copied to the backup location.
1. The file size on disk is requested from the storage system.
2. The database file size is compared against the disk file size.
3. A file reader is created for the archive storage file, and a file writer is created for the backup storage file..
3. The file data is copied from the archive file reader to the backup file writer.
4. If the type of the `DecryptedChecksums` field in the message is `sha256`, the value is stored.
5. A new RabbitMQ "complete" message is created and validated against the "ingestion-completion" schema. If the validation fails, an error message is written to the logs.
6. The file accession ID in the message is marked as "ready" 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.
7. The complete message is sent to RabbitMQ. On error, a message is written to the logs.
8. The original RabbitMQ message is Ack'ed.

- Finalize writes messages to one rabbitmq queue (default `backup`).
## Communication

- Finalize assigns the accession ID to a file in the database using the `SetAccessionID` function.
- Finalize reads messages from one rabbitmq queue (default `accessionIDs`).
- Finalize writes messages to one rabbitmq queue (default `backup`).
- Finalize assigns the accession ID to a file in the database using the `SetAccessionID` function.
4 changes: 2 additions & 2 deletions docs/services/ingest.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ The ingest service copies files from the file inbox to the archive, and register
When running, ingest reads messages from the configured RabbitMQ queue (default: "ingest").
For each message, these steps are taken (if not otherwise noted, errors halt progress and the service moves on to the next message):

1. The message is validated as valid JSON that matches the "ingestion-trigger" schema (defined in sda-common).
1. The message is validated as valid JSON that matches the "ingestion-trigger" schema.
If the message can’t be validated it is discarded with an error message in the logs.

1. If the message is of type `cancel`, the file will be marked as `disabled` and the next message in the queue will be read.

2. A file reader is created for the filepath in the message.
1. A file reader is created for the filepath in the message.
If the file reader can’t be created an error is written to the logs, the message is Nacked and forwarded to the error queue.

1. The file size is read from the file reader.
Expand Down
101 changes: 27 additions & 74 deletions docs/services/intercept.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ There are a number of options that can be set for the intercept service.
These settings can be set by mounting a yaml-file at `/config.yaml` with settings.

ex.

```yaml
log:
level: "debug"
format: "json"
```
They may also be set using environment variables like:
```bash
export LOG_LEVEL="debug"
export LOG_FORMAT="json"
Expand All @@ -23,86 +26,36 @@ export LOG_FORMAT="json"

These settings control how intercept connects to the RabbitMQ message broker.

- `BROKER_HOST`: hostname of the rabbitmq server

- `BROKER_PORT`: rabbitmq broker port (commonly `5671` with TLS and `5672` without)

- `BROKER_QUEUE`: message queue to read messages from (commonly `files`)

- `BROKER_USER`: username to connect to rabbitmq

- `BROKER_PASSWORD`: password to connect to rabbitmq

### PostgreSQL Database settings:

- `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
- `BROKER_HOST`: hostname of the rabbitmq server
- `BROKER_PORT`: rabbitmq broker port (commonly `5671` with TLS and `5672` without)
- `BROKER_QUEUE`: message queue to read messages from (commonly `from_cega`)
- `BROKER_USER`: username to connect to rabbitmq
- `BROKER_PASSWORD`: password to connect to rabbitmq

- `DB_SSLMODE`: The TLS encryption policy to use for database connections.
Valid options are:
- `disable`
- `allow`
- `prefer`
- `require`
- `verify-ca`
- `verify-full`
### Logging settings

More information is available
[in the postgresql documentation](https://www.postgresql.org/docs/current/libpq-ssl.html#LIBPQ-SSL-PROTECTION)

Note that if `DB_SSLMODE` is set to anything but `disable`, then `DB_CACERT` needs to be set,
and if set to `verify-full`, then `DB_CLIENTCERT`, and `DB_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

### Logging settings:

- `LOG_FORMAT` can be set to “json” 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` (or `warning`)
- `error`
- `fatal`
- `panic`
- `LOG_FORMAT` can be set to “json” 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` (or `warning`)
- `error`
- `fatal`
- `panic`

## Service Description

When running, intercept reads messages from the configured RabbitMQ queue (default: "files").
For each message, these steps are taken (if not otherwise noted, errors halt progress, the message is Nack'ed, the error is written to the log, and to the rabbitMQ error queue.
Then the service moves on to the next message):
When running, intercept reads messages from the configured RabbitMQ queue (default: "from_cega").
For each message, these steps are taken:

1. The message type is read from the message "type" field.

1. The message schema is read from the message "msgType" field.

1. The message is validated as valid JSON following the schema read in the previous step.
If this fails an error is written to the logs, but not to the error queue and the message is not Ack'ed or Nack'ed.

1. The correct queue for the message is decided based on message type.
This is not supposed to be able to fail.

1. The message is re-sent to the correct queue.
This has no error handling as the resend-mechanism hasn't been finished.

1. The message is Ack'ed.
1. The message type is read from the message `type` field.
1. If the message `type` is not known, an eror is logged and the message is Ack'ed.
2. The correct queue for the message is decided based on message type.
3. The message is sent to the queue. This has no error handling as the resend-mechanism hasn't been finished.
4. The message is Ack'ed.

## Communication

- Intercept reads messages from one rabbitmq queue (default `files`).

- Intercept writes messages to three rabbitmq queues, `accessionIDs`, `ingest`, and `mappings`.
- Intercept reads messages from one queue (default `from_cega`).
- Intercept writes messages to three queues, `accession`, `ingest`, and `mappings`.
Loading

0 comments on commit 50090e9

Please sign in to comment.