You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by aj...@apache.org on 2023/01/18 19:13:30 UTC

[samza] branch 1.8.0 updated (a0bac341b -> 82926d91c)

This is an automated email from the ASF dual-hosted git repository.

ajothomas pushed a change to branch 1.8.0
in repository https://gitbox.apache.org/repos/asf/samza.git


    from a0bac341b Adding ajothomas to samza committers and gpg keys (#1646)
     add 8103ef77a Version Update to 1.8.0
     add d3c945432 Removing 2.11 as scala version of check-all script
     new 82926d91c Updating docs for 1.8.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 bin/check-all.sh                                              | 2 +-
 docs/_config.yml                                              | 4 ++--
 docs/learn/tutorials/versioned/hello-samza-high-level-code.md | 1 -
 docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md | 3 +--
 docs/learn/tutorials/versioned/hello-samza-high-level-zk.md   | 3 +--
 docs/learn/tutorials/versioned/samza-rest-getting-started.md  | 2 +-
 docs/startup/hello-samza/versioned/index.md                   | 4 +---
 gradle.properties                                             | 2 +-
 samza-test/src/main/config/join/README                        | 8 ++++----
 samza-test/src/main/python/configs/tests.json                 | 2 +-
 samza-test/src/main/python/stream_processor.py                | 2 +-
 11 files changed, 14 insertions(+), 19 deletions(-)


[samza] 01/01: Updating docs for 1.8.0

Posted by aj...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ajothomas pushed a commit to branch 1.8.0
in repository https://gitbox.apache.org/repos/asf/samza.git

commit 82926d91cdd3e514159f7b15e2544b1efd770d9b
Author: Ajo Thomas <aj...@ajthomas-mn2.linkedin.biz>
AuthorDate: Wed Jan 18 11:13:16 2023 -0800

    Updating docs for 1.8.0
---
 docs/_config.yml                                              | 4 ++--
 docs/learn/tutorials/versioned/hello-samza-high-level-code.md | 1 -
 docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md | 3 +--
 docs/learn/tutorials/versioned/hello-samza-high-level-zk.md   | 3 +--
 docs/learn/tutorials/versioned/samza-rest-getting-started.md  | 2 +-
 docs/startup/hello-samza/versioned/index.md                   | 4 +---
 6 files changed, 6 insertions(+), 11 deletions(-)

diff --git a/docs/_config.yml b/docs/_config.yml
index 292fc4a57..3e9477c42 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -23,9 +23,9 @@ redcarpet:
   extensions: ['with_toc_data', 'smart', 'strikethrough', 'tables']
 exclude: [_docs]
 baseurl: http://samza.apache.org
-version: latest
+version: 1.8.0
 # this is the version you will go if you click 'switch version' in "latest" pages.
-latest-release: '1.6.0'
+latest-release: '1.8.0'
 collections:
   menu:
     output: false
diff --git a/docs/learn/tutorials/versioned/hello-samza-high-level-code.md b/docs/learn/tutorials/versioned/hello-samza-high-level-code.md
index ed0fa0e10..ccd7c2947 100644
--- a/docs/learn/tutorials/versioned/hello-samza-high-level-code.md
+++ b/docs/learn/tutorials/versioned/hello-samza-high-level-code.md
@@ -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.
diff --git a/docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md b/docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md
index 62781b3bf..41442ae63 100644
--- a/docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md
+++ b/docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md
@@ -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.
@@ -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.7.0-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-1.8.0-dist.tar.gz -C deploy/samza
 {% endhighlight %}
 
 ### Run a Samza Application
diff --git a/docs/learn/tutorials/versioned/hello-samza-high-level-zk.md b/docs/learn/tutorials/versioned/hello-samza-high-level-zk.md
index bc1a70758..1c2130a9a 100644
--- a/docs/learn/tutorials/versioned/hello-samza-high-level-zk.md
+++ b/docs/learn/tutorials/versioned/hello-samza-high-level-zk.md
@@ -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.
@@ -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.7.0-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-1.8.0-dist.tar.gz -C deploy/samza
 {% endhighlight %}
 
 We are now all set to deploy the application locally.
diff --git a/docs/learn/tutorials/versioned/samza-rest-getting-started.md b/docs/learn/tutorials/versioned/samza-rest-getting-started.md
index 9965a7f28..108378096 100644
--- a/docs/learn/tutorials/versioned/samza-rest-getting-started.md
+++ b/docs/learn/tutorials/versioned/samza-rest-getting-started.md
@@ -48,7 +48,7 @@ Run the following commands:
 {% highlight bash %}
 cd samza-rest/build/distributions/
 mkdir -p deploy/samza-rest
-tar -xvf ./samza-rest_2.11-1.7.0-SNAPSHOT.tgz -C deploy/samza-rest
+tar -xvf ./samza-rest_2.12-1.8.0.tgz -C deploy/samza-rest
 {% endhighlight %}
 
 #### Configure the Installations Path
diff --git a/docs/startup/hello-samza/versioned/index.md b/docs/startup/hello-samza/versioned/index.md
index 747ce5a45..9a3e784a9 100644
--- a/docs/startup/hello-samza/versioned/index.md
+++ b/docs/startup/hello-samza/versioned/index.md
@@ -52,8 +52,6 @@ Before you can run a Samza job, you need to build a package for it. This package
 **(Optional)** NOTE: if you want the hello-samza jobs to run with a local Samza build (e.g., if you are a Samza developer), 
 make sure that you run the following steps, otherwise skip them.
 {% highlight bash %}
-In your hello-samza project,  
-git checkout latest  
 In your local Samza project,  
 ./gradlew publishToMavenLocal  
 {% endhighlight %}
@@ -63,7 +61,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.7.0-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-1.8.0-dist.tar.gz -C deploy/samza
 {% endhighlight %}
 
 ### Run a Samza Job