The simple, stupid batch framework for Java™
- 18/11/2017: Version 5.2.0 is out with new features and bug fixes! See change log here.
- 05/06/2017: Version 5.1.0 is out! See what's new here.
Easy Batch is a framework that aims to simplify batch processing with Java. Writing batch applications requires a lot of boilerplate code: reading, writing, filtering, parsing and validating data, logging, reporting to name a few.. The idea is to free you from these tedious tasks and let you focus on your application's logic.
Easy Batch jobs are simple processing pipelines. Records are read in sequence from a data source, processed in pipeline and written in batches to a data sink:
The framework provides Record
and Batch
APIs to abstract data format and process records in a consistent way regardless of the data source type.
Let's see a quick example. Suppose you have the following tweets.csv
file:
id,user,message
1,foo,hello
2,bar,@foo hi!
and you would like to transform these tweets to XML format. Here is how you can do that with Easy Batch:
Job job = new JobBuilder()
.reader(new FlatFileRecordReader("tweets.csv"))
.filter(new HeaderRecordFilter())
.mapper(new DelimitedRecordMapper(Tweet.class, "id", "user", "message"))
.marshaller(new XmlRecordMarshaller(Tweet.class))
.writer(new FileRecordWriter("tweets.xml"))
.batchSize(10)
.build();
JobExecutor jobExecutor = new JobExecutor();
JobReport report = jobExecutor.execute(job);
jobExecutor.shutdown();
This example creates a job that:
- reads records one by one from the input file
tweets.csv
- filter the header record
- map each record to an instance of the
Tweet
bean - marshal the tweet to XML format
- and finally write XML records in batches of 10 to the output file
tweets.xml
At the end of execution, you get a report with statistics and metrics about the job run (Execution time, number of errors, etc).
All the boilerplate code of resources I/O, iterating through the data source, filtering and parsing records, mapping data to the domain object Tweet
, writing output and reporting
is handled by Easy Batch. Your code becomes declarative, intuitive, easy to read, understand, test and maintain.
- 🎥 Introduction to Easy Batch: the simple, stupid batch processing framework for Java
- 📰 First batch job on Podcastpedia.org using Easy Batch
- 📰 EasyBatch, les batchs en JAVA tout simplement (in french)
- 📰 Tutoriel pour développer un batch Java avec Easy Batch en moins de 5 minutes (in french)
- 📝 How I reduced my Java batch application's code by 80% using Easy Batch
- 📝 Spring Batch vs Easy Batch: Feature comparison
- 📝 Spring Batch vs Easy Batch: Performance comparison
The current stable version is v5.2.0 | documentation | tutorials | javadoc
The current development version is 5.3.0-SNAPSHOT
If you want to import a snapshot version, you need to use the following repository:
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
You are welcome to contribute to the project with pull requests on GitHub.
If you find a bug or want to request a feature, please use the issue tracker.
For any further question, you can use the forum or the gitter channel.
- ammachado
- anandhi
- AussieGuy0
- AymanDF
- chsfleury
- chellan
- gs-spadmanabhan
- imranrajjad
- jawher
- jlcanibe
- marcosvpcortes
- natlantisprog
- nicopatch
- nihed
- PascalSchumacher
- Toilal
- xenji
- ipropper
- DanieleS82
Thank you all for your contributions!
JetBrains | YourKit | Travis CI |
---|---|---|
![]() |
||
Many thanks to JetBrains for providing a free license of IntelliJ IDEA to kindly support the development of Easy Batch | Many thanks to YourKit, LLC for providing a free license of YourKit Java Profiler to kindly support the development of Easy Batch. | Many thanks to Travis CI for providing a free continuous integration service for open source projects. |
Easy Batch is released under the .
The MIT License (MIT)
Copyright (c) 2017 Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.