Documentation for a newer release is available. View Latest

Archivador de archivos

El Debulker proporciona funcionalidad para archivar archivos. Esta característica colocará una copia del archivo agrupado recibido en una ubicación de archivo una vez que se haya procesado correctamente. Actualmente se admiten las siguientes ubicaciones:

  • local

  • Amazon S3

Config

Type

Default

Comment

ipf.debulker.archiver.file-system

String

local

Property that defines the location that the bulk files will be copied to.

ipf.debulker.configurations[0].archive-path

String

Property that defines the directory or S3 bucket that the bulk files will be copied to.

Al habilitar el archivado en S3 también se debe proporcionar la siguiente configuración.

ipf.file-manager.s3 {
    enabled = true
    region = "us-east-1"
    upload-parallelism = 1
    credentials {
        access-key-id = "accessKey"
        secret-access-key = "secretAccessKey"
    }
}