I am following the hello-samza tutorial on the Apache Samza website and want to add a REST service as described here: http://samza.apache.org/learn/tutorials/latest/samza-rest-getting-started.html
I can see the samza jobs in YARN UI, but the following build command yields an error:
./gradlew samza-rest:clean releaseRestServiceTar
FAILURE: Build failed with an exception.
Task 'samza-rest' not found in root project 'hello-samza'.
Is it necessary to change the gradle build file from the hello-samza repo?
I am using Ubuntu 16.04, the Samza version is 0.13.0. Thanks for your advice!
The
releaseRestServiceTar
task is defined in thesamza
project, not thehello-samza
project.You can clone the
samza
project by following these instructions