Srikanth Viswanathan

Results 8 issues of Srikanth Viswanathan

Hi folks, It does not appear that Chronos supports dynamic reservations correctly. We have some dynamic reservations set up on Mesos, and Chronos is unable to launch tasks using these....

Reap previously launched logviewer tasks if `mesos.logviewer.sidecar.enabled` is now `false` Fixes #239

Nimbus should kill already-launched logviewers if re-launched with `mesos.logviewer.sidecar.enabled=false`. The pertinent use case is: If Nimbus is initially launched with `mesos.logviewer.sidecar.enabled=true` (or absent, which will give it the default `true`...

`kafka-server-hc.sh` is missing from repo. [User guide](https://github.com/linkedin/simoorg/blob/master/docs/user_guide.md) suggests it should be present: > We set the plugin to KafkaHealthCheck, the coordinate should be the location of the kafka-server-hc.sh, which will...

Can't run tests from source. I do: ``` git clone https://github.com/linkedin/simoorg.git cd simoorg python setup.py test ``` This is what I see on Ubuntu 14.04 running python 2.7: ``` vagrant@vagrant-ubuntu-trusty-64:~/simoorg$...

Currently the plugin paths are hardcoded in the python code. The deployment location of custom plugins might be different than the deployment location of simoorg, so it would be nice...

moirai should have a way to check whether the atropos job launched via `multiprocessing.Process` exited cleanly. Right now it only calls `proc.join()`. This results in moirai (and simoorg overall) returning...

The declaration of `execute_command` in `BaseHandler` is: ``` python def execute_command(self): ``` However, the ShellScriptHandler overrides it as: ``` python def execute_command(self, script, arguments): ``` `atropos.py` also assumes this interface:...