Repository: incubator-samza Updated Branches: refs/heads/0.8.0 8f65fa428 -> ca9a40e7b
SAMZA-452: use full package name for job.factory.class in configuration doc. Project: http://git-wip-us.apache.org/repos/asf/incubator-samza/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-samza/commit/ca9a40e7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza/tree/ca9a40e7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza/diff/ca9a40e7 Branch: refs/heads/0.8.0 Commit: ca9a40e7bac4dd689b5375c3e9f0552f92050b9e Parents: 8f65fa4 Author: Yan Fang <[email protected]> Authored: Mon Nov 3 15:17:49 2014 -0800 Committer: Yan Fang <[email protected]> Committed: Mon Nov 3 15:17:49 2014 -0800 ---------------------------------------------------------------------- docs/learn/documentation/versioned/jobs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/ca9a40e7/docs/learn/documentation/versioned/jobs/configuration.md ---------------------------------------------------------------------- diff --git a/docs/learn/documentation/versioned/jobs/configuration.md b/docs/learn/documentation/versioned/jobs/configuration.md index cb2ec79..e094f60 100644 --- a/docs/learn/documentation/versioned/jobs/configuration.md +++ b/docs/learn/documentation/versioned/jobs/configuration.md @@ -23,7 +23,7 @@ All Samza jobs have a configuration file that defines the job. A very basic conf {% highlight jproperties %} # Job -job.factory.class=samza.job.local.ThreadJobFactory +job.factory.class=org.apache.samza.job.local.ThreadJobFactory job.name=hello-world # Task @@ -42,7 +42,7 @@ systems.example-system.samza.msg.serde=json There are four major sections to a configuration file: -1. The job section defines things like the name of the job, and whether to use the YarnJobFactory or ProcessJobFactory/ThreadJobFactory. +1. The job section defines things like the name of the job, and whether to use the YarnJobFactory or ProcessJobFactory/ThreadJobFactory (See the job.factory.class property in [Configuration Table](configuration-table.html)). 2. The task section is where you specify the class name for your [StreamTask](../api/overview.html). It's also where you define what the [input streams](../container/streams.html) are for your task. 3. The serializers section defines the classes of the [serdes](../container/serialization.html) used for serialization and deserialization of specific objects that are received and sent along different streams. 4. The system section defines systems that your StreamTask can read from along with the types of serdes used for sending keys and messages from that system. Usually, you'll define a Kafka system, if you're reading from Kafka, although you can also specify your own self-implemented Samza-compatible systems. See the [hello-samza example project](/startup/hello-samza/{{site.version}})'s Wikipedia system for a good example of a self-implemented system.
