Re: Review Request 38296: SAMZA-341: Support metrics report via Ganglia

2015-09-14 Thread Yan Fang
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/38296/#review98895 --- build.gradle (line 219)

Re: Runtime Execution Model

2015-09-14 Thread Yi Pan
Hi, Bruno, The number of containers are configurable in YarnJobFactory via yarn.container.count. Each container is a single threaded model and you can run multiple tasks in a single container. At maximum, you can have as many containers as the number of tasks in this config to achieve 1 task /

Re: Runtime Execution Model

2015-09-14 Thread Yi Pan
Hi, Bruno, The number of partitions consumed by a single task is also configurable via the partition assignment policies (job.systemstreampartition. grouper.factory). By default, there are two partition assignment policies implemented:

Re: Runtime Execution Model

2015-09-14 Thread bruno . bonacci
Many thanks Yi Bye Bruno > On 14 Sep 2015, at 23:49, Yi Pan wrote: > > Hi, Bruno, > > The number of partitions consumed by a single task is also configurable via > the partition assignment policies (job.systemstreampartition. > grouper.factory). By default, there are two

Re: Runtime Execution Model

2015-09-14 Thread Yan Fang
Hi Bruno, AFAIK, there is no existing JobFactory that brings as many threads as the partition number. But I think nothing stops you to implement this: you can get the partition information from the JobCoordinator, and then bring as many threads as the partition/task number. Since the two local