[ 
https://issues.apache.org/jira/browse/SAMZA-109?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13863619#comment-13863619
 ] 

Chris Riccomini commented on SAMZA-109:
---------------------------------------

A work around until this is fixed is to set something like:

{noformat}
task.opts=-Xmx6g -XX:+PrintGCDateStamps -Xloggc:logs/gc.log 
-Dsamza.log.dir=logs -Dsamza.container.name=geo-waterloo 
-agentlib:jdwp=transport=dt_socket,address=localhost:9009,server=y,suspend
{noformat}

This example sets a custom memory size, and enables local debugging, while not 
messing with the logs.

> Make task.opts easier to use
> ----------------------------
>
>                 Key: SAMZA-109
>                 URL: https://issues.apache.org/jira/browse/SAMZA-109
>             Project: Samza
>          Issue Type: Bug
>          Components: container
>    Affects Versions: 0.6.0
>            Reporter: Chris Riccomini
>
> task.opts is a bit tricky to use right now.
> The most common thing that I see people want to do are:
> * Change the Xmx setting for their Samza containers.
> * Turn on a remote debugger.
> * Change garbage collector settings.
> Most of the time they do this in dev-mode (using LocalJobFactory).
> Changing task.opts is tricky for a number of reasons.
> 1. Changing task.opts at all eliminates all of the defaults. This means, if 
> you set -Xmx, you lose all the defaults set in run-class.sh when no JVM_OPTS 
> is set (log settings, Java system properties, etc).
> 2. LocalJobFactory uses ThreadJob by default, which doesn't even pay 
> attention to task.opts (since it starts the container as a thread, not a new 
> process).
> 3. If you manage to figure out how to switch LocalJobFactory to use 
> ProcessJob (undocumented), you end up with the SamzaContainer running as a 
> separate process with no way to kill it (the LocalJobRunner starts the 
> ProcessJob, then exits).



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)

Reply via email to