streamDM (homepage)

Stream Data Mining Library for Spark Streaming

@huawei-noah / (1)

streamDM is an open source software for mining big data streams using Spark Streaming (https://spark.apache.org/streaming/). streamDM started at Huawei Noah's Ark Lab (http://www.noahlab.com.hk/) and it is licensed under Apache Software License v2.0. Documentation and examples can be found in the project's website: http://huawei-noah.github.io/streamDM/


Tags

  • 1|streaming
  • 1|machine learning
  • 1|scala

How to

Include this package in your Spark Applications using:

spark-shell, pyspark, or spark-submit

> $SPARK_HOME/bin/spark-shell --packages huawei-noah:streamDM:0.0.1

sbt

If you use the sbt-spark-package plugin, in your sbt build file, add:

spDependencies += "huawei-noah/streamDM:0.0.1"

Otherwise,

resolvers += "Spark Packages Repo" at "https://repos.spark-packages.org/"

libraryDependencies += "huawei-noah" % "streamDM" % "0.0.1"

Maven

In your pom.xml, add:
<dependencies>
  <!-- list of dependencies -->
  <dependency>
    <groupId>huawei-noah</groupId>
    <artifactId>streamDM</artifactId>
    <version>0.0.1</version>
  </dependency>
</dependencies>
<repositories>
  <!-- list of other repositories -->
  <repository>
    <id>SparkPackagesRepo</id>
    <url>https://repos.spark-packages.org/</url>
  </repository>
</repositories>

Releases

Version: 0.0.1 ( d3453f | zip | jar ) / Date: 2019-07-21 / License: Apache-2.0 / Scala version: 2.11