Low commit activity in last 3 years
No release in over a year
Commons Compress encoder plugin is an Embulk plugin that encodes files using Commons Compress so that any file output plugins can store the files. Search the file output plugins by 'embulk-output file' keywords.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.0
>= 10.0
 Project Readme

Commons Compress Encoder plugin for Embulk

Build Status

This encoder plugin supports to encode a format like bzip2 and gzip.

Overview

  • Plugin type: encoder
  • Load all or nothing: yes
  • Resume supported: no

Configuration

  • format: File format like bzip2 and gzip (string, required)

Example

out:
  type: file
  path_prefix: any path
  file_ext: csv.bz2
  formatter:
    type: csv
  encoders:
  - type: commons-compress
    format: bzip2

Build

$ ./gradlew gem

To run integrationTest

$ ./gradlew -DenableIntegrationTest=true gem