layout: page title: Download

Samza is released as a source artifact, and also through Maven.

If you just want to play around with Samza for the first time, go to Hello Samza.

JDK Notice

Starting in June of 2015, Samza will begin requiring JDK7 or higher. Please see this mailing list thread for details on this decision.

Source Releases

Maven

All Samza JARs are published through Apache's Maven repository.

Artifacts

A Maven-based Samza project can pull in all required dependencies Samza dependencies this XML block:

{% highlight xml %} org.apache.samza samza-api 0.11.0 org.apache.samza samza-core_2.10 0.11.0 runtime org.apache.samza samza-shell dist tgz 0.11.0 runtime org.apache.samza samza-yarn_2.10 0.11.0 runtime org.apache.samza samza-kv_2.10 0.11.0 runtime org.apache.samza samza-kv-rocksdb_2.10 0.11.0 runtime org.apache.samza samza-kv-inmemory_2.10 0.11.0 runtime org.apache.samza samza-kafka_2.10 0.11.0 runtime {% endhighlight %}

Samza versions less than 0.9 should include this additional dependency.

{% highlight xml %} org.apache.samza samza-serializers_2.10 0.8.1 {% endhighlight %}

Hello Samza is a working Maven project that illustrates how to build projects that have Samza jobs in them.

Repositories

Samza is available in the Apache Maven repository.

{% highlight xml %} apache-releases https://repository.apache.org/content/groups/public {% endhighlight %}

Snapshot builds are available in the Apache Maven snapshot repository.

{% highlight xml %} apache-snapshots https://repository.apache.org/content/groups/snapshots {% endhighlight %}

Checking out and Building

If you‘re interested in working on Samza, or building the JARs from scratch, then you’ll need to checkout and build the code. Samza does not have a binary release at this time. To check out and build Samza, run these commands.

{% highlight bash %} git clone http://git-wip-us.apache.org/repos/asf/samza.git cd samza ./gradlew clean build {% endhighlight %}

See the README.md file for details on building.