No commit activity in last 3 years
No release in over 3 years
Generate sequential number.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.0
>= 10.0
 Project Readme

Sequence input plugin for Embulk

Generate sequential number.

Overview

  • Plugin type: input
  • Resume supported: no (TODO)
  • Cleanup supported: yes
  • Guess supported: no

Configuration

  • from: start value (integer, required)
  • to: last value inclusive (integer, required)
  • step: step (integer, default: 1)

Step may be negative if from > to.

Example

sample.yml:

exec: {}

in:
  type: sequence
  from: 1
  to: 5
  step: 1

out:
  type: stdout

output:

1
2
3
4
5

Build

$ ./gradlew gem  # -t to watch change of files and rebuild continuously