Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. First, we need to define a new S4 subcluster for that app:
    Code Block
    S4:myApp$ ./s4 newCluster -c=cluster2 -nbTasks=1 -flp=13000
  2. Then we can start the adapter, and we use "names" for identifying the output stream (this is the same name used as input by the myApp app)
    (warning)  Note: if you have followed this tutorial before, you may notice the change in the syntax for inline parameters (-p option)   The adapter command must be run from the root of your S4 project (myApp dir in our case).
Code Block
./s4 adapter -appClass=hello.HelloInputAdapter -c=cluster2 -p={adapter.output.stream=names}

...