Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apache/incubator-retired-s4
Mirror of Apache S4
https://github.com/apache/incubator-retired-s4
retired
Last synced: about 1 month ago
JSON representation
Mirror of Apache S4
- Host: GitHub
- URL: https://github.com/apache/incubator-retired-s4
- Owner: apache
- License: apache-2.0
- Archived: true
- Created: 2012-01-13T08:00:11.000Z (almost 13 years ago)
- Default Branch: piper
- Last Pushed: 2018-12-10T18:52:32.000Z (almost 6 years ago)
- Last Synced: 2024-09-09T10:16:56.834Z (2 months ago)
- Topics: retired
- Language: Java
- Size: 25.4 MB
- Stars: 41
- Watchers: 12
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-streaming - s4 - general-purpose, distributed, scalable, fault-tolerant, pluggable platform that allows programmers to easily develop applications for processing continuous unbounded streams of data. (Table of Contents / Streaming Engine)
README
Apache S4
=========Overview
--------
S4 is a general-purpose, distributed, scalable, partially fault-tolerant, pluggable
platform that allows programmers to easily develop applications for processing continuous
unbounded streams of data.S4 0.5.0 is a complete refactoring of the previous version of S4. It grounds on the same
concepts (partitioning inspired by map-reduce, actors-like distribution model),
but with the following objectives:- cleaner and simpler API
- robust configuration through statically defined modules
- cleaner architecture
- robust codebase
- easier to develop S4 apps, to test, and to use the platformWe added the following core features:
- TCP-based communications
- state recovery through a flexible checkpointing mechanism
- inter-cluster/app communications through a pub-sub model
- dynamic application deployment
- toolset for easily starting S4 nodes, testing, packaging, deploying and monitoring S4 appsDocumentation
-------------For the latest information about S4, please visit our website at:
http://inbubator.apache.org/s4
and our wiki, at:
https://cwiki.apache.org/confluence/display/S4/S4+Wiki
Currently the wiki contains the most relevant and up-to-date documentation.
Source code is available here: https://git-wip-us.apache.org/repos/asf?p=incubator-s4.git
Requirements
------------
* JDK 6 or higher
* *nix or macosx (you may build the project and develop S4 applications with
microsoft windows though, the only limitation is that the "s4" script has not
been ported to windows yet)How to build
------------
This only applies if you checkout from the source repository or if you download a
released source package.We use gradle http://gradle.org as the build system.
* From the root directory of the S4 project:
./gradlew install
This will build the packages and install the artifacts in the local maven repository.
* Then, build the tools:
./gradlew s4-tools:installApp
This will build the tools so that you can drive the platform through the "s4" command.
Directory structure
-------------------
* If you have a source package:
- root directory contains build and utility scripts, as well as informative files
- config/ directory contains configuration files for source code formatting
- doc/ directory contains the javadoc
- gradle/ directory contains libraries used by the gradle build tool
- lib/ directory contains some other gradle libraries
- subproject/ directory contains the plaftorm subprojects: base, comm, core, tools,
as well as example (example is not fully ported to 0.5.0)
- test-apps/ directory contains some examples (some of them very trivial are used
in regression tests)* If you have a binary package:
- root directory contains the s4 utility script as well as informative files
- doc/ directory contains the javadoc
- lib/ directory contains :
* the platform libraries (prefixed with "s4")
* the dependencies
- bin/ directory contains some scripts that are used by the s4 script
- gradle/ directory contains libraries used for building S4 projects