s

stepping

Stepping is a framework designed to ease the implementation of data processing solutions. In use cases where we need to implement data or data-streaming algorithms or any other processing on data, we need to first handle many different infrastructure issues. For example, we need to decide how to split the data processing logic into different steps, think about our threading policy, how to handle communication between the different steps, error handling etc. One of the most important subjects is the Threading Policy of our solution. For example, we need to think how many threads to open, have the option to distribute the processing of data to multiple 'executors' in parallel, have a thread-safe communication layer between the threads etc. On top of that we also care a lot about the performance of our solution, we want to make sure that the latency added by these infrastructures is minimal as possible. Stepping aims to handle many of these aspects so developers can spend their time on the business logic instead of solving these infrastructure and data flow issues issues over and over again.
https://github.com/imperva/stepping.git
The Apache License, Version 2.0
Gabriel Beyo
Files download
File Operation
stepping-3.5.0.jar download
stepping-3.5.0.pom download
stepping-3.5.0-sources.jar download
Apache Maven
<dependency>
  <groupId>com.imperva.stepping</groupId>
  <artifactId>stepping</artifactId>
  <version>3.5.0</version>
</dependency>
Gradle Groovy
implementation 'com.imperva.stepping:stepping:3.5.0'
Gradle Kotlin
implementation("com.imperva.stepping:stepping:3.5.0")
Scala SBT
libraryDependencies += "com.imperva.stepping" % "stepping" % "3.5.0"
Groovy Grape
@Grapes(
  @Grab(group='com.imperva.stepping', module='stepping', version='3.5.0')
)
Apache Ivy
<dependency org="com.imperva.stepping" name="stepping" rev="3.5.0" />
Leiningen
[com.imperva.stepping/stepping "3.5.0"]
Apache Buildr
'com.imperva.stepping:stepping:jar:3.5.0'