Skip to content

Instantly share code, notes, and snippets.

@Buravo46
Created June 4, 2017 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Buravo46/2ed3734d5941bc63ac2a04b80b999d62 to your computer and use it in GitHub Desktop.
Save Buravo46/2ed3734d5941bc63ac2a04b80b999d62 to your computer and use it in GitHub Desktop.
【Embulk】インストールとサンプル実行

手順

# install java
yum install -y java-1.8.0-openjdk-devel.x86_64
# install embulk
curl --create-dirs -o ~/.embulk/bin/embulk -L "https://dl.embulk.org/embulk-latest.jar"
chmod +x ~/.embulk/bin/embulk
echo 'export PATH="$HOME/.embulk/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
# create example
mkdir try1
embulk example ./try1
embulk guess   ./try1/seed.yml -o config.yml
# run
embulk preview config.yml
embulk run     config.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment