Initial import. Migrating code from https://github.com/yahoo/samoa/
359 files changed
tree: 4bb1a388ff240c125d847877c328c274340ebbb9
  1. bin/
  2. samoa-api/
  3. samoa-instances/
  4. samoa-local/
  5. samoa-s4/
  6. samoa-samza/
  7. samoa-storm/
  8. samoa-test/
  9. samoa-threads/
  10. .gitignore
  11. .travis.yml
  12. CLA.md
  13. CLA.pdf
  14. CONTRIBUTING.md
  15. LICENSE.txt
  16. NOTICE.txt
  17. pom.xml
  18. README.md
  19. RELEASE.txt
README.md

Build Status

SAMOA: Scalable Advanced Massive Online Analysis.

SAMOA is a platform for mining on big data streams. It is a distributed streaming machine learning (ML) framework that contains a programing abstraction for distributed streaming ML algorithms.

SAMOA enables development of new ML algorithms without dealing with the complexity of underlying streaming processing engines (SPE, such as Apache Storm and Apache S4). SAMOA also provides extensibility in integrating new SPEs into the framework. These features allow SAMOA users to develop distributed streaming ML algorithms once and to execute the algorithms in multiple SPEs, i.e., code the algorithms once and execute them in multiple SPEs.

Build

###Storm mode

Simply clone the repository and install SAMOA.

git clone git@github.com:yahoo/samoa.git
cd samoa
mvn -Pstorm package

The deployable jar for SAMOA will be in target/SAMOA-Storm-0.0.1-SNAPSHOT.jar.

###S4 mode

If you want to compile SAMOA for S4, you will need to install the S4 dependencies manually as explained in Executing SAMOA with Apache S4.

Once the dependencies if needed are installed, you can simply clone the repository and install SAMOA.

git clone git@github.com:yahoo/samoa.git
cd samoa
mvn -Ps4 package

###Local mode

If you want to test SAMOA in a local environment, simply clone the repository and install SAMOA.

git clone git@github.com:yahoo/samoa.git
cd samoa
mvn package

The deployable jar for SAMOA will be in target/SAMOA-Local-0.0.1-SNAPSHOT.jar.

Documentation

The documentation is intended to give an introduction on how to use SAMOA in the various possible ways. As a user you can use it to develop new algorithms and test different Distributed Stream Processing Engines.

Wiki Documentation

Javadoc

Slides

SAMOA Slides

G. De Francisci Morales SAMOA: A Platform for Mining Big Data Streams Keynote Talk at RAMSS ’13: 2nd International Workshop on Real-Time Analysis and Mining of Social Streams WWW, Rio De Janeiro, 2013.

SAMOA Developer's Guide

Contributors

List of contributors to the SAMOA project

License

The use and distribution terms for this software are covered by the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).