Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ redcarpet:
extensions: ['with_toc_data', 'smart', 'strikethrough', 'tables']
exclude: [_docs]
baseurl: http://samza.apache.org
version: latest
version: '1.4.0'
Comment thread
cameronlee314 marked this conversation as resolved.
# this is the version you will go if you click 'switch version' in "latest" pages.
latest-release: '1.3.0'
latest-release: '1.4.0'
collections:
menu:
output: false
Expand Down
4 changes: 4 additions & 0 deletions docs/_menu/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
items_attributes: 'data-documentation="/learn/documentation/version/"'
- menu_title: Releases
items:
- menu_title: 1.3.1
Comment thread
cameronlee314 marked this conversation as resolved.
url: '/releases/1.3.1'
- menu_title: 1.3.0
url: '/releases/1.3.0'
- menu_title: 1.2.0
url: '/releases/1.2.0'
- menu_title: 1.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ Check out the hello-samza project:
{% highlight bash %}
git clone https://gitbox.apache.org/repos/asf/samza-hello-samza.git hello-samza
cd hello-samza
git checkout latest
{% endhighlight %}

This project already contains implementations of the wikipedia application using both the Low Level Task API and the High Level Streams API. The Low Level Task API implementations are in the `samza.examples.wikipedia.task` package. The High Level Streams API implementation is in the `samza.examples.wikipedia.application` package.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ Check out the hello-samza project:
{% highlight bash %}
git clone https://gitbox.apache.org/repos/asf/samza-hello-samza.git hello-samza
cd hello-samza
git checkout latest
{% endhighlight %}

This project contains everything you'll need to run your first Samza application.
Expand Down Expand Up @@ -63,7 +62,7 @@ Then, you can continue w/ the following command in hello-samza project:
{% highlight bash %}
mvn clean package
mkdir -p deploy/samza
tar -xvf ./target/hello-samza-1.4.0-SNAPSHOT-dist.tar.gz -C deploy/samza
tar -xvf ./target/hello-samza-1.4.0-dist.tar.gz -C deploy/samza
{% endhighlight %}

### Run a Samza Application
Expand Down
3 changes: 1 addition & 2 deletions docs/learn/tutorials/versioned/hello-samza-high-level-zk.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ Let's get started by cloning the hello-samza project
{% highlight bash %}
git clone https://gitbox.apache.org/repos/asf/samza-hello-samza.git hello-samza
cd hello-samza
git checkout latest
{% endhighlight %}

The project comes up with numerous examples and for this tutorial, we will pick the Wikipedia application.
Expand Down Expand Up @@ -59,7 +58,7 @@ With the environment setup complete, let us move on to building the hello-samza
{% highlight bash %}
mvn clean package
mkdir -p deploy/samza
tar -xvf ./target/hello-samza-1.4.0-SNAPSHOT-dist.tar.gz -C deploy/samza
tar -xvf ./target/hello-samza-1.4.0-dist.tar.gz -C deploy/samza
{% endhighlight %}

We are now all set to deploy the application locally.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Run the following commands:
{% highlight bash %}
cd samza-rest/build/distributions/
mkdir -p deploy/samza-rest
tar -xvf ./samza-rest-1.4.0-SNAPSHOT.tgz -C deploy/samza-rest
tar -xvf ./samza-rest-1.4.0.tgz -C deploy/samza-rest
{% endhighlight %}

#### Configure the Installations Path
Expand Down
3 changes: 1 addition & 2 deletions docs/startup/hello-samza/versioned/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ Check out the hello-samza project:
{% highlight bash %}
git clone https://gitbox.apache.org/repos/asf/samza-hello-samza.git hello-samza
cd hello-samza
git checkout latest
{% endhighlight %}

This project contains everything you'll need to run your first Samza jobs.
Expand Down Expand Up @@ -61,7 +60,7 @@ Then, you can continue w/ the following command in hello-samza project:
{% highlight bash %}
mvn clean package
mkdir -p deploy/samza
tar -xvf ./target/hello-samza-1.4.0-SNAPSHOT-dist.tar.gz -C deploy/samza
tar -xvf ./target/hello-samza-1.4.0-dist.tar.gz -C deploy/samza
{% endhighlight %}

### Run a Samza Job
Expand Down