You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by ra...@apache.org on 2020/02/20 20:00:57 UTC

[samza] branch master updated: Updating hello-world open source instructions (#1284)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new cd535d0  Updating hello-world open source instructions (#1284)
cd535d0 is described below

commit cd535d00bb4b3e07dbd96bf0bee453419a114e07
Author: rmatharu <40...@users.noreply.github.com>
AuthorDate: Thu Feb 20 12:00:51 2020 -0800

    Updating hello-world open source instructions (#1284)
---
 docs/startup/hello-samza/versioned/index.md | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/docs/startup/hello-samza/versioned/index.md b/docs/startup/hello-samza/versioned/index.md
index 58c5a4c..3573e26 100644
--- a/docs/startup/hello-samza/versioned/index.md
+++ b/docs/startup/hello-samza/versioned/index.md
@@ -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.
@@ -50,10 +49,13 @@ Once the grid command completes, you can verify that YARN is up and running by g
 
 Before you can run a Samza job, you need to build a package for it. This package is what YARN uses to deploy your jobs on the grid.
 
-NOTE: if you are building from the latest branch of hello-samza project, make sure that you run the following step from your local Samza project first:
-
+**(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 %}
-./gradlew publishToMavenLocal
+In your hello-world project,  
+git checkout latest  
+In your local Samza project,  
+./gradlew publishToMavenLocal  
 {% endhighlight %}
 
 Then, you can continue w/ the following command in hello-samza project: