Friday, 2015-04-10

*** sreshetn2 has joined #openstack-sahara00:06
*** sreshetn2 has quit IRC00:10
*** jamielennox|away is now known as jamielennox00:28
*** witlessb has quit IRC00:30
*** Longgeek has joined #openstack-sahara02:36
*** stanchan has joined #openstack-sahara03:10
*** elmiko has quit IRC03:41
*** elmiko has joined #openstack-sahara03:42
*** Poornima has joined #openstack-sahara04:43
*** Poornima has quit IRC05:20
*** Longgeek has quit IRC05:23
*** Longgeek has joined #openstack-sahara05:24
*** Poornima has joined #openstack-sahara05:31
*** sgotliv has joined #openstack-sahara05:37
*** sgotliv has quit IRC05:46
*** sreshetn2 has joined #openstack-sahara06:32
*** esikachev has joined #openstack-sahara06:49
*** esikachev has quit IRC06:50
*** esikachev has joined #openstack-sahara06:52
*** sreshetn2 has quit IRC06:59
*** witlessb has joined #openstack-sahara07:03
*** Poornima has quit IRC07:07
*** sreshetn2 has joined #openstack-sahara07:16
*** Poornima has joined #openstack-sahara07:20
*** jamielennox is now known as jamielennox|away07:20
*** tnovacik has joined #openstack-sahara07:31
*** pino|work has joined #openstack-sahara07:44
*** skolekonov has joined #openstack-sahara08:06
*** sreshetn2 has quit IRC08:21
*** kingbhanu has joined #openstack-sahara08:30
*** sreshetn2 has joined #openstack-sahara08:31
*** kingbhanu has quit IRC08:50
*** IBerezovskiy has joined #openstack-sahara09:04
openstackgerritVitaly Gridnev proposed openstack/sahara: Use jsonutils from oslo.serialization  https://review.openstack.org/17208309:05
*** deepi has joined #openstack-sahara09:24
deepihie evryone09:25
*** deepi has left #openstack-sahara09:25
*** tosky has joined #openstack-sahara09:25
toskyI think we can change the topic of the channel...09:48
*** sreshetn2 has quit IRC10:33
*** sreshetn2 has joined #openstack-sahara10:34
*** sreshetn2 has quit IRC10:44
*** IBerezovskiy has quit IRC11:06
*** sreshetn2 has joined #openstack-sahara11:10
*** AndreyPavlov has quit IRC11:12
*** AndreyPavlov has joined #openstack-sahara11:20
*** sreshetn2 has quit IRC11:25
*** sreshetn1 has joined #openstack-sahara11:37
*** _crobertsrh has quit IRC11:59
*** crobertsrh has joined #openstack-sahara12:04
*** Poornima has quit IRC12:08
*** dmitryme has joined #openstack-sahara12:15
tellesnobregatmckay, ping12:19
tmckaytellesnobrega, hi12:26
tellesnobregatmckay, i'm trying to create a storm job template. The verification I set to verify if the topology_name is in the template... but if i put the topology_name i get an exception that it was unexpected12:28
tmckaytellesnobrega, it would have to be added as a config, otherwise the schema has to be modified.  So job configs would look like {"configs": {"topology_name": "name"}}12:30
tmckayI'm guessing maybe you put it somewhere else, and the schema validator doesn't like it12:30
tmckayThis is where we put everything that is not general to all  job types.  The schema accepts any number of configs, args, and params.  but fields outside of that have to be explicitly added12:31
tmckaytellesnobrega, are you doing this with the python client, or through the UI?12:31
tmckayif you're doing it with the client or REST, can you pastebin the JSON for me?12:32
* tmckay grabs some breakfast12:32
*** sreshetn1 has quit IRC12:33
tellesnobregatmckay, sure...http://paste.openstack.org/show/201989/12:34
tmckaytellesnobrega, oh, yes, for certain.  topology_name needs to be moved into configs12:41
tellesnobregatmckay, i changed it to this http://paste.openstack.org/show/201991/12:42
tmckaytellesnobrega, we have a convention for configs consumed by Sahara, like the main class for Java/Spark12:42
tellesnobregaand got the same message... config not expected12:42
tellesnobregashould it be {"configs":...}12:42
tellesnobregaor configs i just put when i'm launching a job?12:43
*** sreshetn1 has joined #openstack-sahara12:44
tmckayhttp://docs.openstack.org/developer/sahara/restapi/rest_api_v1.1_EDP.html#execute-job12:44
tmckaytellesnobrega, you need "job_configs" ^^12:44
tmckayso "job_configs": {"configs": {}}12:45
tellesnobregatmckay, ok, so the creation of the template doesnt take configs12:45
tmckaytellesnobrega, yes, configs when you launch the job12:45
tmckaycorrect12:45
tmckaytellesnobrega, is the topology name important to the user?  It could be generated -- like, the name of the job plus a uuid?12:46
tmckaythat way it wouldn't have to be specified but would still be unique and based on the job12:46
tellesnobregasounds good12:47
tmckayIf it does need to be specified as a config, it should be "edp.storm.topology_name"12:48
tmckayThat is our convention for config values that are consumed by Sahara, instead of passed on to the job at runtime (or the executor, like Oozie)12:48
tmckaybut auto generation makes sense to me12:48
tellesnobregatmckay, makes sense to me too... the only think we need is for it to be unique... using uuid makes it happen12:50
tellesnobregaso i'm ok with it12:50
tmckayokay, great12:50
tellesnobregathanks12:50
tmckaynp12:50
* tmckay back in a little bit12:50
*** sreshetn1 has quit IRC12:54
openstackgerritMerged openstack/sahara: Switched heat engine from JSON to HOT  https://review.openstack.org/15762313:00
*** sreshetn1 has joined #openstack-sahara13:03
*** hdd has joined #openstack-sahara13:07
*** hdd has quit IRC13:09
*** sreshetn1 has quit IRC13:09
*** pino|work has quit IRC13:50
openstackgerritVitaly Gridnev proposed openstack/sahara: {WIP} Introduce request_id in context for better logging  https://review.openstack.org/17242613:52
*** pino|work has joined #openstack-sahara13:56
tellesnobregatmckay, once i generate the topology name, where should I store it? can i put it in the job_configs dict? it is needed to retrieve job information13:58
tmckaytellesnobrega, for Spark, I put some stuff in the "info" field of the job execution.  It's returned from run_job(), I believe.  I store the PID of the launcher process on the master node so that I can check the process status.13:59
tmckaythat I think would be the best place13:59
tellesnobregatmckay, great13:59
tmckayyou can look and see how spark edp returns it, and how the job_manager stores it14:00
tellesnobregadoing it14:00
*** sreshetn1 has joined #openstack-sahara14:03
*** tellesnobrega has left #openstack-sahara14:04
*** tellesnobrega has joined #openstack-sahara14:04
*** hdd has joined #openstack-sahara14:06
*** tnovacik has quit IRC14:23
*** hdd has quit IRC14:26
*** hdd has joined #openstack-sahara14:32
*** esikachev has quit IRC15:13
*** mattf is now known as _mattf15:18
*** hdd has quit IRC15:38
-openstackstatus- NOTICE: gerrit has been restarted to address a hung event stream. change events between 15:00 and 15:43 utc which were lost will need to be rechecked or have approval workflow votes reapplied for zuul to act on them15:45
openstackgerritDenis Egorenko proposed stackforge/sahara-ci-config: TEST COMMIT  https://review.openstack.org/17249016:01
*** pino|work has quit IRC16:08
*** hdd has joined #openstack-sahara16:12
*** hdd has quit IRC16:18
openstackgerritMikhail Ivanov proposed openstack/sahara-image-elements: Not dib elements scripts was adapted to dib-lint checks  https://review.openstack.org/17200816:26
openstackgerritDenis Egorenko proposed openstack/sahara: Rename templates in scenario yaml files  https://review.openstack.org/16693316:59
openstackgerritDenis Egorenko proposed openstack/sahara: Put in Sahara repo actual scenario files  https://review.openstack.org/17251317:00
*** sgotliv has joined #openstack-sahara17:10
*** sreshetn1 has quit IRC17:14
*** sreshetn1 has joined #openstack-sahara17:26
*** sgotliv has quit IRC17:29
openstackgerritMikhail Ivanov proposed openstack/sahara-image-elements: Adapt not dib elements to dib-lint checks  https://review.openstack.org/17200817:29
*** sreshetn1 has quit IRC17:34
openstackgerritDenis Egorenko proposed stackforge/sahara-ci-config: Add 'proposed/kilo' branch  https://review.openstack.org/17251917:39
*** Longgeek has quit IRC17:52
*** tosky has quit IRC18:16
openstackgerritMerged stackforge/sahara-ci-config: Add 'proposed/kilo' branch  https://review.openstack.org/17251918:48
*** degorenko has quit IRC18:54
*** sreshetn1 has joined #openstack-sahara19:01
crobertsrhTime for a review rampage.  Anything require immediate attention?19:09
*** hdd has joined #openstack-sahara19:14
*** hdd has quit IRC19:38
*** hdd has joined #openstack-sahara19:41
*** hdd_ has joined #openstack-sahara19:50
*** hdd has quit IRC19:52
openstackgerritMichael McCune proposed openstack/sahara: Adding config hints for vanilla plugin  https://review.openstack.org/16742020:09
openstackgerritMichael McCune proposed openstack/sahara: Adding config hints for HDP plugin  https://review.openstack.org/16649420:09
*** sreshetn1 has quit IRC20:20
*** elmiko has quit IRC20:25
*** elmiko has joined #openstack-sahara20:26
*** hdd_ has quit IRC20:35
*** crobertsrh is now known as _crobertsrh21:16
*** saurabhs has joined #openstack-sahara21:31
*** saurabhs has quit IRC21:41

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!