Hi Panagiotis, the problem was solved with you config, the problem is at "site.storm-site.supervisor.slots.ports": "['${SUPERVISOR.ALLOCATED_PORT}{PER_CONTAINER}','${SUPERVISOR.ALLOCATED_PORT}{PER_CONTAINER}']" The single quotes shouldn't be there as by your appConfig.json.
So that error is out of the way. But this new one arised when trying to start NIMBUS: 2017-01-19 15:05:02.607 b.s.s.a.ThriftServer [ERROR] ThriftServer is being stopped due to: org.apache.thrift7.transport.TTransportException: Could not create ServerSocket on address 0.0.0.0/0.0.0.0:44317. org.apache.thrift7.transport.TTransportException: Could not create ServerSocket on address 0.0.0.0/0.0.0.0:44317. at org.apache.thrift7.transport.TNonblockingServerSocket.<init>(TNonblockingServerSocket.java:96) ~[storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] at org.apache.thrift7.transport.TNonblockingServerSocket.<init>(TNonblockingServerSocket.java:71) ~[storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] at org.apache.thrift7.transport.TNonblockingServerSocket.<init>(TNonblockingServerSocket.java:64) ~[storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] at backtype.storm.security.auth.SimpleTransportPlugin.getServer(SimpleTransportPlugin.java:71) ~[storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] at backtype.storm.security.auth.ThriftServer.serve(ThriftServer.java:73) [storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] at backtype.storm.daemon.nimbus$launch_server_BANG_.invoke(nimbus.clj:1522) [storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] at backtype.storm.daemon.nimbus$_launch.invoke(nimbus.clj:1546) [storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] at backtype.storm.daemon.nimbus$_main.invoke(nimbus.clj:1568) [storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] at clojure.lang.AFn.applyToHelper(AFn.java:152) [clojure-1.6.0.jar:?] at clojure.lang.AFn.applyTo(AFn.java:144) [clojure-1.6.0.jar:?] at backtype.storm.daemon.nimbus.main(Unknown Source) [storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] 2017-01-19 15:05:59.047 b.s.zookeeper [INFO] Node already in queue for leader lock. On Wed, Jan 18, 2017 at 12:22 PM, Panagiotis Garefalakis <panga...@gmail.com > wrote: > Hello Telles, > > That's weird but we are getting there - just launched storm -slider myself > and everything seems ok. > I am not sure if your appConfig file is correct since I see some > parameters like storm.options to be empty - that could also cause a parse > error. > Please find attached the appConfig file I am using. > > Cheers, > Panagiotis > > On Wed, Jan 18, 2017 at 2:58 PM, Telles Nobrega <tenob...@redhat.com> > wrote: > >> Panagiotis, using your github to build slider (I changed hbase version to >> 0.99.0 and hadoop to 2.7.1) and I'm back with some error on the Slider log >> >> 2017-01-18 14:45:03,738 [136175479@qtp-264256198-8] INFO >> agent.AgentProviderService - Recording allocated port for >> storm-site.supervisor.slots.ports as ['36892','55479'] >> 2017-01-18 14:45:03,739 [136175479@qtp-264256198-8] WARN >> agent.AgentProviderService - Failed to parse ['36892','55479'] - '36892' >> java.lang.NumberFormatException: For input string: "'36892'" >> at >> java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) >> at java.lang.Integer.parseInt(Integer.java:481) >> at java.lang.Integer.valueOf(Integer.java:582) >> at >> org.apache.slider.providers.agent.AgentProviderService.processAllocatedPorts(AgentProviderService.java:1386) >> at >> org.apache.slider.providers.agent.AgentProviderService.handleHeartBeat(AgentProviderService.java:1168) >> at >> org.apache.slider.server.appmaster.web.rest.agent.AgentResource.heartbeat(AgentResource.java:98) >> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) >> at >> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) >> at >> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) >> at java.lang.reflect.Method.invoke(Method.java:606) >> >> >> I solved that previously by removing the ' before trying to parse to int. >> >> >> Nimbus is still presenting the same error. >> >> >> >> This is from errors-5.txt: >> >> >> 2017-01-18 14:47:14,313 - Error while executing command 'start': >> Traceback (most recent call last): >> File >> "/tmp/hadoop-hadoop/nm-local-dir/usercache/hadoop/appcache/application_1483970960290_0011/filecache/10/slider-agent.tar.gz/slider-agent/resource_management/libraries/script/script.py", >> line 116, in execute >> method(env) >> File >> "/tmp/hadoop-hadoop/nm-local-dir/usercache/hadoop/appcache/application_1483970960290_0011/filecache/11/slider-storm-app-package-0.10.0.2.3.2.0-2950.zip/package/scripts/nimbus.py", >> line 41, in start >> service("nimbus", action="start") >> File >> "/tmp/hadoop-hadoop/nm-local-dir/usercache/hadoop/appcache/application_1483970960290_0011/filecache/11/slider-storm-app-package-0.10.0.2.3.2.0-2950.zip/package/scripts/service.py", >> line 85, in service >> raise Fail(format("Unable to start {name}")) >> Fail: Unable to start nimbus >> >> >> And nimbus.log presented the same error as before. If you want I can >> paste it here: >> http://paste.openstack.org/show/595397/ >> >> >> >> On Wed, Jan 18, 2017 at 11:27 AM, Telles Nobrega <tenob...@redhat.com> >> wrote: >> >>> Do I need to rebuild storm package as well? Or the zip you sent me >>> should work? >>> >>> On Wed, Jan 18, 2017 at 11:24 AM, Telles Nobrega <tenob...@redhat.com> >>> wrote: >>> >>>> Ok, I will try to build from your github and see what happens. >>>> >>>> On Wed, Jan 18, 2017 at 11:22 AM, Panagiotis Garefalakis < >>>> panga...@gmail.com> wrote: >>>> >>>>> Hello Telles, >>>>> >>>>> It seems like the port (integer) is not correct now - Could you add a >>>>> printout statement to see what is wrong there? >>>>> I would suggest building the whole slider package from the link I sent >>>>> you - it is the version I am currently using with the specific storm >>>>> version - the only thing you would have to change is Hadoop version in the >>>>> pom file ( ideally 2.7.2 not 3.0 since there are some incompatibilities ). >>>>> >>>>> Hope that helps. >>>>> >>>>> Cheers, >>>>> Panagiotis >>>>> >>>>> >>>>> On Wed, Jan 18, 2017 at 2:05 PM, Telles Nobrega <tenob...@redhat.com> >>>>> wrote: >>>>> >>>>>> Hi Panagiotis, >>>>>> >>>>>> >>>>>> I have one follow up question. I applied the patch you suggested plus >>>>>> a >>>>>> quick removal of single quotes to allow java to parse the integer. >>>>>> >>>>>> Bottom line is, the error is not showing on Slider logs anymore, but >>>>>> I'm >>>>>> still getting an error on nimbus.log >>>>>> >>>>>> 2760 [main] INFO o.a.s.z.s.ZooKeeperServer - Server >>>>>> environment:user.dir=/tmp/hadoop-hadoop/nm-local-dir/usercac >>>>>> he/hadoop/appcache/application_1483970960290_0010/container_ >>>>>> 1483970960290_0010_01_000002 >>>>>> 3611 [main] INFO b.s.u.Utils - Using defaults.yaml from resources >>>>>> 3645 [main] INFO b.s.u.Utils - Using storm.yaml from resources >>>>>> 3693 [main] ERROR o.a.s.z.s.NIOServerCnxnFactory - Thread >>>>>> Thread[main,5,main] died >>>>>> java.lang.IllegalArgumentException: Each element of the list >>>>>> supervisor.slots.ports must be an Integer within type range. >>>>>> at >>>>>> backtype.storm.ConfigValidation$5.validateField(ConfigValida >>>>>> tion.java:229) >>>>>> ~[storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] >>>>>> at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown >>>>>> Source) >>>>>> ~[?:?] >>>>>> at >>>>>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe >>>>>> thodAccessorImpl.java:43) >>>>>> ~[?:1.7.0_121] >>>>>> at java.lang.reflect.Method.invoke(Method.java:606) >>>>>> ~[?:1.7.0_121] >>>>>> at clojure.lang.Reflector.invokeM >>>>>> atchingMethod(Reflector.java:93) >>>>>> ~[clojure-1.6.0.jar:?] >>>>>> at clojure.lang.Reflector.invokeI >>>>>> nstanceMethod(Reflector.java:28) >>>>>> ~[clojure-1.6.0.jar:?] >>>>>> at >>>>>> backtype.storm.config$validate_configs_with_schemas.invoke(c >>>>>> onfig.clj:118) >>>>>> ~[storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] >>>>>> at backtype.storm.config$read_sto >>>>>> rm_config.invoke(config.clj:123) >>>>>> ~[storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] >>>>>> at backtype.storm.daemon.nimbus$_ >>>>>> launch.invoke(nimbus.clj:1544) >>>>>> ~[storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] >>>>>> at backtype.storm.daemon.nimbus$_main.invoke(nimbus.clj:1568) >>>>>> ~[storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] >>>>>> at clojure.lang.AFn.applyToHelper(AFn.java:152) >>>>>> ~[clojure-1.6.0.jar:?] >>>>>> at clojure.lang.AFn.applyTo(AFn.java:144) >>>>>> ~[clojure-1.6.0.jar:?] >>>>>> at backtype.storm.daemon.nimbus.main(Unknown Source) >>>>>> ~[storm-core-0.10.0.2.3.2.0-2950.jar:0.10.0.2.3.2.0-2950] >>>>>> >>>>>> On Fri, Jan 13, 2017 at 4:42 PM, Telles Nobrega <tenob...@redhat.com> >>>>>> wrote: >>>>>> >>>>>> > Thanks, I'm checking if it works. >>>>>> > >>>>>> > On Fri, Jan 13, 2017 at 4:13 PM, Billie Rinaldi < >>>>>> billie.rina...@gmail.com> >>>>>> > wrote: >>>>>> > >>>>>> >> You should adjust the java_home in the appConfig.json used to >>>>>> create the >>>>>> >> storm app: >>>>>> >> https://github.com/apache/incubator-slider/blob/develop/app- >>>>>> >> packages/storm/appConfig-default.json#L7 >>>>>> >> >>>>>> >> On Fri, Jan 13, 2017 at 10:36 AM, Telles Nobrega < >>>>>> tenob...@redhat.com> >>>>>> >> wrote: >>>>>> >> >>>>>> >> > Looks like it is some sort of a java_home problem. I >>>>>> >> > found Execute['/usr/jdk64/jdk1.7.0_67/bin/jps -vl | grep "^[0-9 >>>>>> >> > ]*backtype.storm.daemon.nimbus" | grep >>>>>> >> > container_1483970960290_0005_01_000002 | awk '{print $1}' > >>>>>> >> > /tmp/hadoop-hadoop/nm-local-dir/usercache/hadoop/appcache/ >>>>>> >> > application_1483970960290_0005/container_1483970960290_ >>>>>> >> > 0005_01_000002/app/run/nimbus.pid'] >>>>>> >> > {'logoutput': True} on the logs and this java path is wrong. >>>>>> >> > >>>>>> >> > On Fri, Jan 13, 2017 at 3:27 PM, Telles Nobrega < >>>>>> tenob...@redhat.com> >>>>>> >> > wrote: >>>>>> >> > >>>>>> >> > > Gour, found this on nimbus.log >>>>>> >> > > >>>>>> >> > > Traceback (most recent call last): >>>>>> >> > > File "/tmp/hadoop-hadoop/nm-local-d >>>>>> ir/usercache/hadoop/appcache/ >>>>>> >> > > application_1483970960290_0005/container_1483970960290_ >>>>>> >> > > 0005_01_000002/app/install/apache-storm-0.10.0.2.3.2.0- >>>>>> >> > 2950/bin/storm.py", >>>>>> >> > > line 560, in <module> >>>>>> >> > > main() >>>>>> >> > > File "/tmp/hadoop-hadoop/nm-local-d >>>>>> ir/usercache/hadoop/appcache/ >>>>>> >> > > application_1483970960290_0005/container_1483970960290_ >>>>>> >> > > 0005_01_000002/app/install/apache-storm-0.10.0.2.3.2.0- >>>>>> >> > 2950/bin/storm.py", >>>>>> >> > > line 557, in main >>>>>> >> > > (COMMANDS.get(COMMAND, unknown_command))(*ARGS) >>>>>> >> > > File "/tmp/hadoop-hadoop/nm-local-d >>>>>> ir/usercache/hadoop/appcache/ >>>>>> >> > > application_1483970960290_0005/container_1483970960290_ >>>>>> >> > > 0005_01_000002/app/install/apache-storm-0.10.0.2.3.2.0- >>>>>> >> > 2950/bin/storm.py", >>>>>> >> > > line 348, in nimbus >>>>>> >> > > jvmopts = parse_args(confvalue("nimbus.childopts", >>>>>> cppaths)) + [ >>>>>> >> > > File "/tmp/hadoop-hadoop/nm-local-d >>>>>> ir/usercache/hadoop/appcache/ >>>>>> >> > > application_1483970960290_0005/container_1483970960290_ >>>>>> >> > > 0005_01_000002/app/install/apache-storm-0.10.0.2.3.2.0- >>>>>> >> > 2950/bin/storm.py", >>>>>> >> > > line 129, in confvalue >>>>>> >> > > p = sub.Popen(command, stdout=sub.PIPE) >>>>>> >> > > File "/usr/lib/python2.7/subprocess.py", line 710, in >>>>>> __init__ >>>>>> >> > > errread, errwrite) >>>>>> >> > > File "/usr/lib/python2.7/subprocess.py", line 1327, in >>>>>> >> _execute_child >>>>>> >> > > raise child_exception >>>>>> >> > > OSError: [Errno 2] No such file or directory >>>>>> >> > > ~ >>>>>> >> > > >>>>>> >> > > On Fri, Jan 13, 2017 at 3:27 PM, Telles Nobrega < >>>>>> tenob...@redhat.com> >>>>>> >> > > wrote: >>>>>> >> > > >>>>>> >> > >> Thanks. I have to apply that and build a new storm zip file >>>>>> correct? >>>>>> >> > >> >>>>>> >> > >> >>>>>> >> > >> On Fri, Jan 13, 2017 at 3:21 PM, Panagiotis Garefalakis < >>>>>> >> > >> panga...@gmail.com> wrote: >>>>>> >> > >> >>>>>> >> > >>> Hello Telles, >>>>>> >> > >>> >>>>>> >> > >>> I think I have been through this issue before. >>>>>> >> > >>> This commit >>>>>> >> > >>> <https://github.com/pgaref/incubator-slider/commit/0fefb9d5b >>>>>> >> > >>> e0e09e4dc5429c76352560c4d664a39> >>>>>> >> > >>> might be helpful to you! >>>>>> >> > >>> >>>>>> >> > >>> Cheers, >>>>>> >> > >>> Panagiotis >>>>>> >> > >>> >>>>>> >> > >>> On Fri, Jan 13, 2017 at 6:15 PM, Telles Nobrega < >>>>>> >> tenob...@redhat.com> >>>>>> >> > >>> wrote: >>>>>> >> > >>> >>>>>> >> > >>> > Hi Gour, I can certainly try. Is there an easy way to find >>>>>> where >>>>>> >> the >>>>>> >> > >>> > containers are allocated? >>>>>> >> > >>> > >>>>>> >> > >>> > >>>>>> >> > >>> > On Fri, Jan 13, 2017 at 3:03 PM, Gour Saha < >>>>>> gs...@hortonworks.com >>>>>> >> > >>>>>> >> > >>> wrote: >>>>>> >> > >>> > >>>>>> >> > >>> > > Attachments to apache DLs are dropped. So we cannot get >>>>>> them. >>>>>> >> Can >>>>>> >> > you >>>>>> >> > >>> > look >>>>>> >> > >>> > > at the agent logs for one of the NIMBUS containers? >>>>>> >> > >>> > > >>>>>> >> > >>> > > -Gour >>>>>> >> > >>> > > >>>>>> >> > >>> > > From: Telles Nobrega <tenob...@redhat.com<mailto:te >>>>>> >> > nob...@redhat.com >>>>>> >> > >>> >> >>>>>> >> > >>> > > Reply-To: "dev@slider.incubator.apache.org<mailto: >>>>>> dev@slider. >>>>>> >> > >>> > > incubator.apache.org>" <dev@slider.incubator.apache.org >>>>>> <mailto: >>>>>> >> > >>> > dev@slider. >>>>>> >> > >>> > > incubator.apache.org>> >>>>>> >> > >>> > > Date: Friday, January 13, 2017 at 10:00 AM >>>>>> >> > >>> > > To: "dev@slider.incubator.apache.org<mailto:dev@slider. >>>>>> >> > >>> > > incubator.apache.org>" <dev@slider.incubator.apache.org >>>>>> <mailto: >>>>>> >> > >>> > dev@slider. >>>>>> >> > >>> > > incubator.apache.org>> >>>>>> >> > >>> > > Subject: Re: Supported Storm version >>>>>> >> > >>> > > >>>>>> >> > >>> > > Apperantly the paste didn't get the whole log, I'm >>>>>> sending as an >>>>>> >> > >>> > > attachment. >>>>>> >> > >>> > > >>>>>> >> > >>> > > On Fri, Jan 13, 2017 at 2:55 PM, Telles Nobrega < >>>>>> >> > tenob...@redhat.com >>>>>> >> > >>> > > <mailto:tenob...@redhat.com>> wrote: >>>>>> >> > >>> > > Hi Gour, I pasted the log on the previous email, it keeps >>>>>> >> trying to >>>>>> >> > >>> > deploy >>>>>> >> > >>> > > the services, but it fails. >>>>>> >> > >>> > > >>>>>> >> > >>> > > On Fri, Jan 13, 2017 at 2:53 PM, Gour Saha < >>>>>> >> gs...@hortonworks.com >>>>>> >> > >>> > <mailto: >>>>>> >> > >>> > > gs...@hortonworks.com>> wrote: >>>>>> >> > >>> > > You are right Billie. I confused this with >>>>>> >> > >>> > > site.global.slider.allowed.ports. >>>>>> >> > >>> > > >>>>>> >> > >>> > > I remember that the storm-app supports this weird format >>>>>> of >>>>>> >> ports >>>>>> >> > >>> > > specified with square brackets. Slider just tries to >>>>>> parse and >>>>>> >> logs >>>>>> >> > >>> it at >>>>>> >> > >>> > > WARN level and moves on and let¹s the app handle it. >>>>>> >> > >>> > > >>>>>> >> > >>> > > Telles, >>>>>> >> > >>> > > Are you seeing any issues with the storm-app further >>>>>> down? >>>>>> >> > >>> > > >>>>>> >> > >>> > > -Gour >>>>>> >> > >>> > > >>>>>> >> > >>> > > On 1/13/17, 9:40 AM, "Billie Rinaldi" < >>>>>> billie.rina...@gmail.com >>>>>> >> > <mail >>>>>> >> > >>> to: >>>>>> >> > >>> > > billie.rina...@gmail.com>> wrote: >>>>>> >> > >>> > > >>>>>> >> > >>> > > >It looks like that is the correct format for the storm >>>>>> >> property. >>>>>> >> > Is >>>>>> >> > >>> the >>>>>> >> > >>> > AM >>>>>> >> > >>> > > >stopping after displaying this message, or does it >>>>>> continue >>>>>> >> > >>> normally? In >>>>>> >> > >>> > > >the current version of AgentProviderService, it looks >>>>>> like the >>>>>> >> > >>> error is >>>>>> >> > >>> > > >caught and logged ( >>>>>> >> > >>> > > >https://github.com/apache/inc >>>>>> ubator-slider/blob/develop/ >>>>>> >> > >>> > > slider-core/src/ma >>>>>> >> > >>> > > >in/java/org/apache/slider/pro >>>>>> viders/agent/AgentProviderServ >>>>>> >> > >>> ice.java# >>>>>> >> > >>> > > L1373- >>>>>> >> > >>> > > >L1381), >>>>>> >> > >>> > > >so this shouldn't be causing a problem. But the line >>>>>> numbers >>>>>> >> don't >>>>>> >> > >>> match >>>>>> >> > >>> > > >up >>>>>> >> > >>> > > >with your stack trace, so I don't know which Slider >>>>>> version >>>>>> >> you're >>>>>> >> > >>> using >>>>>> >> > >>> > > >and whether it might have different behavior. >>>>>> >> > >>> > > > >>>>>> >> > >>> > > >Billie >>>>>> >> > >>> > > > >>>>>> >> > >>> > > >On Fri, Jan 13, 2017 at 9:33 AM, Telles Nobrega < >>>>>> >> > >>> tenob...@redhat.com >>>>>> >> > >>> > > <mailto:tenob...@redhat.com>> >>>>>> >> > >>> > > >wrote: >>>>>> >> > >>> > > > >>>>>> >> > >>> > > >> This is in the appConfig-default.json >>>>>> >> > >>> > > >> "site.storm-site.supervisor.sl< >>>>>> http://site.storm-site.superv >>>>>> >> > >>> isor.sl >>>>>> >> > >>> > > >ots.ports": >>>>>> >> > >>> > > >> "[${SUPERVISOR.ALLOCATED_PORT} >>>>>> {PER_CONTAINER},${SUPERVISOR. >>>>>> >> > >>> > > >> ALLOCATED_PORT}{PER_CONTAINER}]" >>>>>> >> > >>> > > >> >>>>>> >> > >>> > > >> Maybe the brackets placement is wrong? >>>>>> >> > >>> > > >> >>>>>> >> > >>> > > >> On Fri, Jan 13, 2017 at 2:30 PM, Telles Nobrega < >>>>>> >> > >>> tenob...@redhat.com >>>>>> >> > >>> > > <mailto:tenob...@redhat.com>> >>>>>> >> > >>> > > >> wrote: >>>>>> >> > >>> > > >> >>>>>> >> > >>> > > >> > I'm actually not specifying those values, I don't >>>>>> know >>>>>> >> where >>>>>> >> > >>> they >>>>>> >> > >>> > come >>>>>> >> > >>> > > >> > from. I'm using plaingly the zip file that >>>>>> Panagiotis >>>>>> >> showed >>>>>> >> > me. >>>>>> >> > >>> > > >> > >>>>>> >> > >>> > > >> > On Fri, Jan 13, 2017 at 2:22 PM, Gour Saha < >>>>>> >> > >>> gs...@hortonworks.com >>>>>> >> > >>> > > <mailto:gs...@hortonworks.com>> >>>>>> >> > >>> > > >> wrote: >>>>>> >> > >>> > > >> > >>>>>> >> > >>> > > >> >> Are you specifying the square brackets "[ ]" in >>>>>> the port >>>>>> >> > >>> range? If >>>>>> >> > >>> > > >>yes, >>>>>> >> > >>> > > >> >> then you need to remove them. Just specify the >>>>>> integers >>>>>> >> > (comma >>>>>> >> > >>> > > >> separated). >>>>>> >> > >>> > > >> >> >>>>>> >> > >>> > > >> >> -Gour >>>>>> >> > >>> > > >> >> >>>>>> >> > >>> > > >> >> On 1/13/17, 8:59 AM, "Telles Nobrega" < >>>>>> >> tenob...@redhat.com >>>>>> >> > >>> <mailto: >>>>>> >> > >>> > te >>>>>> >> > >>> > > nob...@redhat.com>> wrote: >>>>>> >> > >>> > > >> >> >>>>>> >> > >>> > > >> >> >Hey guys, thanks for your help so far. I've been >>>>>> able to >>>>>> >> > >>> deploy >>>>>> >> > >>> > > >>slider >>>>>> >> > >>> > > >> >> >start it properly and now I'm trying to deploy >>>>>> storm app. >>>>>> >> > I'm >>>>>> >> > >>> > using >>>>>> >> > >>> > > >>the >>>>>> >> > >>> > > >> >> >zip >>>>>> >> > >>> > > >> >> >that Panagiotis suggested but I'm getting this >>>>>> error >>>>>> >> when it >>>>>> >> > >>> tries >>>>>> >> > >>> > > >>to >>>>>> >> > >>> > > >> >> >deploy >>>>>> >> > >>> > > >> >> > >>>>>> >> > >>> > > >> >> >2017-01-13 16:38:22,231 [1269430493@qtp- >>>>>> 1276410298-5< >>>>>> >> tel: >>>>>> >> > >>> > > 1276410298-5>] INFO >>>>>> >> > >>> > > >> >> >agent.AgentProviderService - Recording allocated >>>>>> port for >>>>>> >> > >>> > > >> >> >storm-site.logviewer.port as 34825 >>>>>> >> > >>> > > >> >> >2017-01-13 16:38:22,231 [1269430493@qtp- >>>>>> 1276410298-5< >>>>>> >> tel: >>>>>> >> > >>> > > 1276410298-5>] INFO >>>>>> >> > >>> > > >> >> >agent.AgentProviderService - Recording allocated >>>>>> port for >>>>>> >> > >>> > > >> >> >storm-site.supervisor.slots.ports as >>>>>> [38387,58177] >>>>>> >> > >>> > > >> >> >2017-01-13 16:38:22,232 [1269430493@qtp- >>>>>> 1276410298-5< >>>>>> >> tel: >>>>>> >> > >>> > > 1276410298-5>] WARN >>>>>> >> > >>> > > >> >> >agent.AgentProviderService - Failed to parse >>>>>> >> [38387,58177] >>>>>> >> > >>> > > >> >> >java.lang.NumberFormatException: For input >>>>>> string: >>>>>> >> > >>> > "[38387,58177]" >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >java.lang.NumberFormatExcepti >>>>>> >> on.forInputString(NumberFormat >>>>>> >> > >>> > > >> >> Exception.java: >>>>>> >> > >>> > > >> >> >65) >>>>>> >> > >>> > > >> >> > at java.lang.Integer.parseInt(Int >>>>>> eger.java:492) >>>>>> >> > >>> > > >> >> > at java.lang.Integer.valueOf(Inte >>>>>> ger.java:582) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >org.apache.slider.providers.a >>>>>> >> gent.AgentProviderService.proc >>>>>> >> > >>> > > >> >> essAllocatedPor >>>>>> >> > >>> > > >> >> >ts(AgentProviderService.java:1188) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >org.apache.slider.providers.a >>>>>> >> gent.AgentProviderService.hand >>>>>> >> > >>> > > >> >> leHeartBeat(Age >>>>>> >> > >>> > > >> >> >ntProviderService.java:978) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >org.apache.slider.server.appm >>>>>> >> aster.web.rest.agent.AgentReso >>>>>> >> > >>> > > >> >> urce.heartbeat( >>>>>> >> > >>> > > >> >> >AgentResource.java:98) >>>>>> >> > >>> > > >> >> > at sun.reflect.NativeMethodAccessorImpl. >>>>>> >> > invoke0(Native >>>>>> >> > >>> > > >>Method) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >sun.reflect.NativeMethodAcces >>>>>> >> sorImpl.invoke(NativeMethodAcc >>>>>> >> > >>> > > >> >> essorImpl.java: >>>>>> >> > >>> > > >> >> >57) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >sun.reflect.DelegatingMethodA >>>>>> >> ccessorImpl.invoke(DelegatingM >>>>>> >> > >>> > > >> >> ethodAccessorIm >>>>>> >> > >>> > > >> >> >pl.java:43) >>>>>> >> > >>> > > >> >> > at java.lang.reflect.Method.invok >>>>>> >> e(Method.java:606) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.spi.container. >>>>>> >> JavaMethodInvokerFactory$1.inv >>>>>> >> > >>> > > >> >> oke(JavaMethodI >>>>>> >> > >>> > > >> >> >nvokerFactory.java:60) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.mo< >>>>>> >> http://com.sun.jersey.server. >>>>>> >> > >>> > impl.mo >>>>>> >> > >>> > > >del.method.dispatch.AbstractRe >>>>>> >> > >>> > > >> >> sourceMethodDis >>>>>> >> > >>> > > >> >> >patchProvider$TypeOutInvoker. >>>>>> >> _dispatch(AbstractResourceMeth >>>>>> >> > >>> > > >> >> odDispatchProvi >>>>>> >> > >>> > > >> >> >der.java:185) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.mo< >>>>>> >> http://com.sun.jersey.server. >>>>>> >> > >>> > impl.mo >>>>>> >> > >>> > > >del.method.dispatch.ResourceJa >>>>>> >> > >>> > > >> >> vaMethodDispatc >>>>>> >> > >>> > > >> >> >her.dispatch(ResourceJavaMeth >>>>>> odDispatcher.java:75) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.ur >>>>>> >> i.rules.HttpMethodRule.accept( >>>>>> >> > >>> > > >> >> HttpMethodRule. >>>>>> >> > >>> > > >> >> >java:288) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.ur >>>>>> >> i.rules.RightHandPathRule.acce >>>>>> >> > >>> > > >> >> pt(RightHandPat >>>>>> >> > >>> > > >> >> >hRule.java:147) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.ur >>>>>> >> i.rules.SubLocatorRule.accept( >>>>>> >> > >>> > > >> >> SubLocatorRule. >>>>>> >> > >>> > > >> >> >java:134) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.ur >>>>>> >> i.rules.RightHandPathRule.acce >>>>>> >> > >>> > > >> >> pt(RightHandPat >>>>>> >> > >>> > > >> >> >hRule.java:147) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.ur >>>>>> >> i.rules.ResourceClassRule.acce >>>>>> >> > >>> > > >> >> pt(ResourceClas >>>>>> >> > >>> > > >> >> >sRule.java:108) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.ur >>>>>> >> i.rules.RightHandPathRule.acce >>>>>> >> > >>> > > >> >> pt(RightHandPat >>>>>> >> > >>> > > >> >> >hRule.java:147) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.ur >>>>>> >> i.rules.RootResourceClassesRul >>>>>> >> > >>> > > >> >> e.accept(RootRe >>>>>> >> > >>> > > >> >> >sourceClassesRule.java:84) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.ap >>>>>> >> plication.WebApplicationImpl._ >>>>>> >> > >>> > > >> >> handleRequest(W >>>>>> >> > >>> > > >> >> >ebApplicationImpl.java:1469) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.ap >>>>>> >> plication.WebApplicationImpl._ >>>>>> >> > >>> > > >> >> handleRequest(W >>>>>> >> > >>> > > >> >> >ebApplicationImpl.java:1400) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.ap >>>>>> >> plication.WebApplicationImpl.h >>>>>> >> > >>> > > >> >> andleRequest(We >>>>>> >> > >>> > > >> >> >bApplicationImpl.java:1349) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.server.impl.ap >>>>>> >> plication.WebApplicationImpl.h >>>>>> >> > >>> > > >> >> andleRequest(We >>>>>> >> > >>> > > >> >> >bApplicationImpl.java:1339) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.spi.container. >>>>>> >> servlet.WebComponent.service(W >>>>>> >> > >>> > > >> >> ebComponent.jav >>>>>> >> > >>> > > >> >> >a:416) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.spi.container. >>>>>> >> servlet.ServletContainer.servi >>>>>> >> > >>> > > >> >> ce(ServletConta >>>>>> >> > >>> > > >> >> >iner.java:537) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >com.sun.jersey.spi.container. >>>>>> >> servlet.ServletContainer.servi >>>>>> >> > >>> > > >> >> ce(ServletConta >>>>>> >> > >>> > > >> >> >iner.java:699) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >>javax.servlet.http.HttpServl >>>>>> et.service(HttpServlet.java:820) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >>org.mortbay.jetty.servlet.Se< >>>>>> http://org.mortbay.jetty.serv >>>>>> >> let.Se >>>>>> >> > >>> > > >rvletHolder.handle(ServletHolder >>>>>> >> > >>> > > >> >> .java:511) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >org.mortbay.jetty.servlet.ServletHandler.handle( >>>>>> >> > >>> > > >> ServletHandler.java:401) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >org.mortbay.jetty.servlet.SessionHandler.handle( >>>>>> >> > >>> > > >> SessionHandler.java:182) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >org.mortbay.jetty.handler.ContextHandler.handle( >>>>>> >> > >>> > > >> ContextHandler.java:766) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >org.mortbay.jetty.handler.HandlerWrapper.handle( >>>>>> >> > >>> > > >> HandlerWrapper.java:152) >>>>>> >> > >>> > > >> >> > at org.mortbay.jetty.Server.handl >>>>>> >> e(Server.java:326) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >org.mortbay.jetty.HttpConnection.handleRequest( >>>>>> >> > >>> > > >> HttpConnection.java:542) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >org.mortbay.jetty.HttpConnect >>>>>> ion$RequestHandler.content( >>>>>> >> > >>> > > >> >> HttpConnection.jav >>>>>> >> > >>> > > >> >> >a:945) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >>org.mortbay.jetty.HttpParser >>>>>> .parseNext(HttpParser.java:756) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >>org.mortbay.jetty.HttpParser >>>>>> .parseAvailable(HttpParser.java: >>>>>> >> > >>> > > >> >> 218) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >>org.mortbay.jetty.HttpConnec >>>>>> tion.handle(HttpConnection.java: >>>>>> >> > >>> > > >> >> 404) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >org.mortbay.io.nio.SelectChan >>>>>> >> nelEndPoint.run(SelectChannelE >>>>>> >> > >>> > > >> >> ndPoint.java:41 >>>>>> >> > >>> > > >> >> >0) >>>>>> >> > >>> > > >> >> > at >>>>>> >> > >>> > > >> >> >org.mortbay.thread.QueuedThre >>>>>> adPool$PoolThread.run( >>>>>> >> > >>> > > >> >> QueuedThreadPool.java:5 >>>>>> >> > >>> > > >> >> >82) >>>>>> >> > >>> > > >> >> > >>>>>> >> > >>> > > >> >> > >>>>>> >> > >>> > > >> >> >Have you seen this? >>>>>> >> > >>> > > >> >> > >>>>>> >> > >>> > > >> >> > >>>>>> >> > >>> > > >> >> >Thanks >>>>>> >> > >>> > > >> >> > >>>>>> >> > >>> > > >> >> > >>>>>> >> > >>> > > >> >> >On Thu, Jan 12, 2017 at 6:08 PM, Telles Nobrega >>>>>> >> > >>> > > >><tenob...@redhat.com<mailto:tenob...@redhat.com>> >>>>>> >> > >>> > > >> >> >wrote: >>>>>> >> > >>> > > >> >> > >>>>>> >> > >>> > > >> >> >> Actually, I figured out some of the problems. >>>>>> Still >>>>>> >> trying >>>>>> >> > >>> to >>>>>> >> > >>> > > >>make it >>>>>> >> > >>> > > >> >> >> work. I will bring up more questions when they >>>>>> come up. >>>>>> >> > >>> > > >> >> >> >>>>>> >> > >>> > > >> >> >> On Thu, Jan 12, 2017 at 4:01 PM, Telles Nobrega >>>>>> >> > >>> > > >><tenob...@redhat.com<mailto:tenob...@redhat.com> >>>>>> >> > >>> > > >> > >>>>>> >> > >>> > > >> >> >> wrote: >>>>>> >> > >>> > > >> >> >> >>>>>> >> > >>> > > >> >> >>> Hi again, I'm following this tutorial >>>>>> >> > >>> > > >> >> >>> <http://slider.incubator.apach >>>>>> >> e.org/docs/getting_started >>>>>> >> > . >>>>>> >> > >>> > > >> >> html#download> >>>>>> >> > >>> > > >> >> >>> to install Slider but I'm getting some weird >>>>>> stuff. >>>>>> >> For >>>>>> >> > >>> > example, >>>>>> >> > >>> > > >>it >>>>>> >> > >>> > > >> >> >>>says to >>>>>> >> > >>> > > >> >> >>> run ${slider-install-dir}/slider-0 >>>>>> >> > >>> .80.0-incubating/bin/slider >>>>>> >> > >>> > > >> version >>>>>> >> > >>> > > >> >> >>> but inside the bin folder there isn't a slider >>>>>> file. >>>>>> >> Is >>>>>> >> > >>> this >>>>>> >> > >>> > > >> tutorial >>>>>> >> > >>> > > >> >> >>>still >>>>>> >> > >>> > > >> >> >>> valid? Can you suggest me a more updated guide? >>>>>> >> > >>> > > >> >> >>> >>>>>> >> > >>> > > >> >> >>> Thanks >>>>>> >> > >>> > > >> >> >>> >>>>>> >> > >>> > > >> >> >>> On Wed, Jan 4, 2017 at 2:48 PM, Panagiotis >>>>>> >> Garefalakis < >>>>>> >> > >>> > > >> >> >>> panga...@gmail.com<mailto:panga...@gmail.com>> >>>>>> wrote: >>>>>> >> > >>> > > >> >> >>> >>>>>> >> > >>> > > >> >> >>>> Hello, >>>>>> >> > >>> > > >> >> >>>> >>>>>> >> > >>> > > >> >> >>>> Thats correct, you can use any of the >>>>>> machines. I am >>>>>> >> > >>> using a >>>>>> >> > >>> > > >>Hadoop >>>>>> >> > >>> > > >> >> >>>>node >>>>>> >> > >>> > > >> >> >>>> myself. >>>>>> >> > >>> > > >> >> >>>> >>>>>> >> > >>> > > >> >> >>>> Cheers, >>>>>> >> > >>> > > >> >> >>>> Panagiotis >>>>>> >> > >>> > > >> >> >>>> >>>>>> >> > >>> > > >> >> >>>> On Wed, Jan 4, 2017 at 7:44 PM, Gour Saha >>>>>> >> > >>> > > >><gs...@hortonworks.com<mailto:gs...@hortonworks.com>> >>>>>> >> > >>> > > >> >> >>>>wrote: >>>>>> >> > >>> > > >> >> >>>> >>>>>> >> > >>> > > >> >> >>>> > Yes, you can install Slider client on only >>>>>> one of >>>>>> >> the >>>>>> >> > >>> m/c in >>>>>> >> > >>> > > >>your >>>>>> >> > >>> > > >> >> >>>> cluster >>>>>> >> > >>> > > >> >> >>>> > and submit jobs from there. >>>>>> >> > >>> > > >> >> >>>> > >>>>>> >> > >>> > > >> >> >>>> > On 1/4/17, 8:49 AM, "Telles Nobrega" < >>>>>> >> > >>> tenob...@redhat.com >>>>>> >> > >>> > > <mailto:tenob...@redhat.com>> >>>>>> >> > >>> > > >> wrote: >>>>>> >> > >>> > > >> >> >>>> > >>>>>> >> > >>> > > >> >> >>>> > >Hi, Panagiotis, thanks for your response. >>>>>> I have >>>>>> >> > >>> another >>>>>> >> > >>> > > >> question >>>>>> >> > >>> > > >> >> >>>>on >>>>>> >> > >>> > > >> >> >>>> this, >>>>>> >> > >>> > > >> >> >>>> > >the instalation of slider can be done on >>>>>> one of >>>>>> >> the >>>>>> >> > >>> nodes >>>>>> >> > >>> > of >>>>>> >> > >>> > > >>the >>>>>> >> > >>> > > >> >> >>>> Hadoop >>>>>> >> > >>> > > >> >> >>>> > >cluster? >>>>>> >> > >>> > > >> >> >>>> > > >>>>>> >> > >>> > > >> >> >>>> > >On Wed, Dec 7, 2016 at 7:20 AM, Panagiotis >>>>>> >> > Garefalakis >>>>>> >> > >>> > > >> >> >>>> > ><panga...@gmail.com<mailto:pa >>>>>> nga...@gmail.com>> >>>>>> >> > >>> > > >> >> >>>> > >wrote: >>>>>> >> > >>> > > >> >> >>>> > > >>>>>> >> > >>> > > >> >> >>>> > >> Haven't tested that specific version but >>>>>> I am >>>>>> >> quite >>>>>> >> > >>> sure >>>>>> >> > >>> > > >>older >>>>>> >> > >>> > > >> >> >>>> versions >>>>>> >> > >>> > > >> >> >>>> > >> work. >>>>>> >> > >>> > > >> >> >>>> > >> The easiest way would be to use an >>>>>> existing >>>>>> >> > >>> slider-storm >>>>>> >> > >>> > > >> package >>>>>> >> > >>> > > >> >> >>>> like >>>>>> >> > >>> > > >> >> >>>> > >>this >>>>>> >> > >>> > > >> >> >>>> > >> one >>>>>> >> > >>> > > >> >> >>>> > >> <http://code.ithunder.org/hdp/ >>>>>> >> > >>> > HDP/ubuntu14/2.x/updates/2.3 >>>>>> >> > >>> > > . >>>>>> >> > >>> > > >> >> >>>> > >> 2.0/slider-app-packages/storm/> >>>>>> >> > >>> > > >> >> >>>> > >> . >>>>>> >> > >>> > > >> >> >>>> > >> >>>>>> >> > >>> > > >> >> >>>> > >> Cheers, >>>>>> >> > >>> > > >> >> >>>> > >> Panagiotis >>>>>> >> > >>> > > >> >> >>>> > >> >>>>>> >> > >>> > > >> >> >>>> > >> On Wed, Dec 7, 2016 at 6:41 AM, Gour >>>>>> Saha < >>>>>> >> > >>> > > >> >> gs...@hortonworks.com<mailto:gs...@hortonworks.com >>>>>> >> >>>>>> >> > >>> > > >> >> >>>> > wrote: >>>>>> >> > >>> > > >> >> >>>> > >> >>>>>> >> > >>> > > >> >> >>>> > >> > What issue do you see when you try to >>>>>> upload >>>>>> >> logs >>>>>> >> > >>> to >>>>>> >> > >>> > > >>jira? >>>>>> >> > >>> > > >> >> >>>> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> > What error do you see when you run >>>>>> Storm >>>>>> >> > >>> app-package >>>>>> >> > >>> > > >>maven >>>>>> >> > >>> > > >> >> cmd? >>>>>> >> > >>> > > >> >> >>>> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> > -Gour >>>>>> >> > >>> > > >> >> >>>> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> > On 11/30/16, 12:29 PM, "Telles >>>>>> Nobrega" < >>>>>> >> > >>> > > >> tenob...@redhat.com<mailto:tenob...@redhat.com>> >>>>>> >> > >>> > > >> >> >>>> wrote: >>>>>> >> > >>> > > >> >> >>>> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> > >Hi, thanks for your response. I tried >>>>>> to >>>>>> >> open an >>>>>> >> > >>> issue >>>>>> >> > >>> > > >>on >>>>>> >> > >>> > > >> >> jira >>>>>> >> > >>> > > >> >> >>>> but it >>>>>> >> > >>> > > >> >> >>>> > >> > >kinda >>>>>> >> > >>> > > >> >> >>>> > >> > >failed with the log file. Is there a >>>>>> better >>>>>> >> way >>>>>> >> > >>> for me >>>>>> >> > >>> > > >>to >>>>>> >> > >>> > > >> get >>>>>> >> > >>> > > >> >> >>>>the >>>>>> >> > >>> > > >> >> >>>> > >>logs >>>>>> >> > >>> > > >> >> >>>> > >> to >>>>>> >> > >>> > > >> >> >>>> > >> > >you guys? >>>>>> >> > >>> > > >> >> >>>> > >> > > >>>>>> >> > >>> > > >> >> >>>> > >> > >By the way, I'm running a Hadoop 2.7.1 >>>>>> >> cluster >>>>>> >> > on >>>>>> >> > >>> > > >>CentOS7. >>>>>> >> > >>> > > >> >> >>>> Compiling >>>>>> >> > >>> > > >> >> >>>> > >> > >Sliders seems to be working, I get the >>>>>> >> Compiled >>>>>> >> > >>> > against >>>>>> >> > >>> > > >> >> Hadoop >>>>>> >> > >>> > > >> >> >>>> 2.7.1 >>>>>> >> > >>> > > >> >> >>>> > >> > >message and all. But it fails when I >>>>>> try to >>>>>> >> run >>>>>> >> > >>> Storm >>>>>> >> > >>> > > >>app >>>>>> >> > >>> > > >> >> >>>>package >>>>>> >> > >>> > > >> >> >>>> > >>maven >>>>>> >> > >>> > > >> >> >>>> > >> > >command. >>>>>> >> > >>> > > >> >> >>>> > >> > > >>>>>> >> > >>> > > >> >> >>>> > >> > >On Thu, Nov 24, 2016 at 4:07 PM, Gour >>>>>> Saha < >>>>>> >> > >>> > > >> >> >>>> gs...@hortonworks.com<mailto:g >>>>>> s...@hortonworks.com>> >>>>>> >> > >>> > > >> >> >>>> > >> wrote: >>>>>> >> > >>> > > >> >> >>>> > >> > > >>>>>> >> > >>> > > >> >> >>>> > >> > >> Please let us know what issue you >>>>>> are >>>>>> >> seeing. >>>>>> >> > >>> If you >>>>>> >> > >>> > > >>have >>>>>> >> > >>> > > >> >> >>>>logs >>>>>> >> > >>> > > >> >> >>>> or >>>>>> >> > >>> > > >> >> >>>> > >> files >>>>>> >> > >>> > > >> >> >>>> > >> > >>to >>>>>> >> > >>> > > >> >> >>>> > >> > >> share, best is to open a Slider >>>>>> jira and >>>>>> >> > upload >>>>>> >> > >>> them >>>>>> >> > >>> > > >> there. >>>>>> >> > >>> > > >> >> >>>> > >> > >> >>>>>> >> > >>> > > >> >> >>>> > >> > >> -Gour >>>>>> >> > >>> > > >> >> >>>> > >> > >> >>>>>> >> > >>> > > >> >> >>>> > >> > >> >>>>>> >> > >>> > > >> >> >>>> > >> > >> > On Nov 24, 2016, at 9:07 AM, >>>>>> Telles >>>>>> >> Nobrega >>>>>> >> > < >>>>>> >> > >>> > > >> >> >>>> tenob...@redhat.com<mailto:ten >>>>>> ob...@redhat.com> >>>>>> >> > >>> > > >> >> >>>> > > >>>>>> >> > >>> > > >> >> >>>> > >> > >>wrote: >>>>>> >> > >>> > > >> >> >>>> > >> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> > >> > Hi thanks, congrats on the Slider >>>>>> >> project. >>>>>> >> > >>> > > >> >> >>>> > >> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> > >> > I'm trying to run storm on slider >>>>>> but I'm >>>>>> >> > >>> hitting >>>>>> >> > >>> > > >>some >>>>>> >> > >>> > > >> >> >>>> issues on >>>>>> >> > >>> > > >> >> >>>> > >>the >>>>>> >> > >>> > > >> >> >>>> > >> > >>way. >>>>>> >> > >>> > > >> >> >>>> > >> > >> > Can you clarify to me if Storm >>>>>> 1.0.1 is >>>>>> >> > >>> supported >>>>>> >> > >>> > on >>>>>> >> > >>> > > >> >> >>>>slider? >>>>>> >> > >>> > > >> >> >>>> If >>>>>> >> > >>> > > >> >> >>>> > >>not, >>>>>> >> > >>> > > >> >> >>>> > >> > >>what >>>>>> >> > >>> > > >> >> >>>> > >> > >> > is the newest version that is >>>>>> supported? >>>>>> >> > >>> > > >> >> >>>> > >> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> > >> > Thanks in advance, >>>>>> >> > >>> > > >> >> >>>> > >> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> > >> > -- >>>>>> >> > >>> > > >> >> >>>> > >> > >> > [image: Red Hat] < >>>>>> >> http://www.redhat.com.br/ >>>>>> >> > > >>>>>> >> > >>> > > >> >> >>>> > >> > >> > Telles Nobrega | Software Engineer >>>>>> >> > >>> > > >> >> >>>> > >> > >> > Red Hat Brasil >>>>>> >> > >>> > > >> >> >>>> > >> > >> > T: +55 11 3529-6000 >>>>>> >> > <tel:%2B55%2011%203529-6000> >>>>>> >> > >>> | >>>>>> >> > >>> > > M: +55 11 9 9910-1689<tel:%2B55%2011%209%209910-1689> >>>>>> >> > >>> > > >> >> >>>> > >> > >> > Av. Brigadeiro Faria Lima 3900, >>>>>> 8° Andar. >>>>>> >> > São >>>>>> >> > >>> > Paulo, >>>>>> >> > >>> > > >> >> >>>>Brasil. >>>>>> >> > >>> > > >> >> >>>> > >> > >> > RED HAT | TRIED. TESTED. TRUSTED. >>>>>> Saiba >>>>>> >> > >>> porque em >>>>>> >> > >>> > > >> >> >>>>redhat.com<http://redhat.com> >>>>>> >> > >>> > > >> >> >>>> > >> > >> > <https://www.redhat.com/pt-br/ >>>>>> >> about/trusted >>>>>> >> > > >>>>>> >> > >>> > > >> >> >>>> > >> > >> >>>>>> >> > >>> > > >> >> >>>> > >> > > >>>>>> >> > >>> > > >> >> >>>> > >> > > >>>>>> >> > >>> > > >> >> >>>> > >> > > >>>>>> >> > >>> > > >> >> >>>> > >> > >-- >>>>>> >> > >>> > > >> >> >>>> > >> > >[image: Red Hat] < >>>>>> http://www.redhat.com.br/> >>>>>> >> > >>> > > >> >> >>>> > >> > >Telles Nobrega | Software Engineer >>>>>> >> > >>> > > >> >> >>>> > >> > >Red Hat Brasil >>>>>> >> > >>> > > >> >> >>>> > >> > >T: +55 11 3529-6000<tel:%2B55%2011% >>>>>> >> 203529-6000> >>>>>> >> > >>> | M: >>>>>> >> > >>> > +55 >>>>>> >> > >>> > > 11 9 9910-1689<tel:%2B55%2011%209%209910-1689> >>>>>> >> > >>> > > >> >> >>>> > >> > >Av. Brigadeiro Faria Lima 3900, 8° >>>>>> Andar. São >>>>>> >> > >>> Paulo, >>>>>> >> > >>> > > >> Brasil. >>>>>> >> > >>> > > >> >> >>>> > >> > >RED HAT | TRIED. TESTED. TRUSTED. >>>>>> Saiba >>>>>> >> porque >>>>>> >> > em >>>>>> >> > >>> > > >> redhat.com<http://redhat.com> >>>>>> >> > >>> > > >> >> >>>> > >> > ><https://www.redhat.com/pt-br >>>>>> /about/trusted> >>>>>> >> > >>> > > >> >> >>>> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> > >>>>>> >> > >>> > > >> >> >>>> > >> >>>>>> >> > >>> > > >> >> >>>> > > >>>>>> >> > >>> > > >> >> >>>> > > >>>>>> >> > >>> > > >> >> >>>> > > >>>>>> >> > >>> > > >> >> >>>> > >-- >>>>>> >> > >>> > > >> >> >>>> > >[image: Red Hat] < >>>>>> http://www.redhat.com.br/> >>>>>> >> > >>> > > >> >> >>>> > >Telles Nobrega | Software Engineer >>>>>> >> > >>> > > >> >> >>>> > >Red Hat Brasil >>>>>> >> > >>> > > >> >> >>>> > >T: +55 11 3529-6000<tel:%2B55%2011%20352 >>>>>> 9-6000> >>>>>> >> | M: >>>>>> >> > >>> +55 >>>>>> >> > >>> > 11 >>>>>> >> > >>> > > 9 9910-1689<tel:%2B55%2011%209%209910-1689> >>>>>> >> > >>> > > >> >> >>>> > >Av. Brigadeiro Faria Lima 3900, 8° Andar. >>>>>> São >>>>>> >> Paulo, >>>>>> >> > >>> > Brasil. >>>>>> >> > >>> > > >> >> >>>> > >RED HAT | TRIED. TESTED. TRUSTED. Saiba >>>>>> porque em >>>>>> >> > >>> > redhat.com >>>>>> >> > >>> > > <http://redhat.com> >>>>>> >> > >>> > > >> >> >>>> > ><https://www.redhat.com/pt-br >>>>>> /about/trusted> >>>>>> >> > >>> > > >> >> >>>> > >>>>>> >> > >>> > > >> >> >>>> > >>>>>> >> > >>> > > >> >> >>>> >>>>>> >> > >>> > > >> >> >>> >>>>>> >> > >>> > > >> >> >>> >>>>>> >> > >>> > > >> >> >>> >>>>>> >> > >>> > > >> >> >>> -- >>>>>> >> > >>> > > >> >> >>> [image: Red Hat] <http://www.redhat.com.br/> >>>>>> >> > >>> > > >> >> >>> Telles Nobrega | Software Engineer >>>>>> >> > >>> > > >> >> >>> Red Hat Brasil >>>>>> >> > >>> > > >> >> >>> T: +55 11 3529-6000<tel:%2B55%2011%20352 >>>>>> 9-6000> >>>>>> >> > >>> > > <+55%2011%203529-6000> | M: +55 11 9 >>>>>> >> > >>> > > >>9910-1689 >>>>>> >> > >>> > > >> >> >>> Av. Brigadeiro Faria Lima 3900, 8° Andar. São >>>>>> Paulo, >>>>>> >> > >>> Brasil. >>>>>> >> > >>> > > >> >> >>> RED HAT | TRIED. TESTED. TRUSTED. Saiba porque >>>>>> em >>>>>> >> > >>> redhat.com< >>>>>> >> > >>> > > http://redhat.com> >>>>>> >> > >>> > > >> >> >>> <https://www.redhat.com/pt-br/about/trusted> >>>>>> >> > >>> > > >> >> >>> >>>>>> >> > >>> > > >> >> >> >>>>>> >> > >>> > > >> >> >> >>>>>> >> > >>> > > >> >> >> >>>>>> >> > >>> > > >> >> >> -- >>>>>> >> > >>> > > >> >> >> [image: Red Hat] <http://www.redhat.com.br/> >>>>>> >> > >>> > > >> >> >> Telles Nobrega | Software Engineer >>>>>> >> > >>> > > >> >> >> Red Hat Brasil >>>>>> >> > >>> > > >> >> >> T: +55 11 3529-6000 <+55%2011%203529-6000> >>>>>> <tel:%2B55%2011%203529-6000> >>>>>> >> > >>> > > <+55%2011%203529-6000> | M: +55 11 9 >>>>>> >> 9910-1689<tel:%2B55%2011%209% >>>>>> >> > >>> > > 209910-1689> >>>>>> >> > >>> > > >> >> >> Av. Brigadeiro Faria Lima 3900, 8° Andar. São >>>>>> Paulo, >>>>>> >> > Brasil. >>>>>> >> > >>> > > >> >> >> RED HAT | TRIED. TESTED. TRUSTED. Saiba porque >>>>>> em >>>>>> >> > >>> redhat.com< >>>>>> >> > >>> > > http://redhat.com> >>>>>> >> > >>> > > >> >> >> <https://www.redhat.com/pt-br/about/trusted> >>>>>> >> > >>> > > >> >> >> >>>>>> >> > >>> > > >> >> > >>>>>> >> > >>> > > >> >> > >>>>>> >> > >>> > > >> >> > >>>>>> >> > >>> > > >> >> >-- >>>>>> >> > >>> > > >> >> >[image: Red Hat] <http://www.redhat.com.br/> >>>>>> >> > >>> > > >> >> >Telles Nobrega | Software Engineer >>>>>> >> > >>> > > >> >> >Red Hat Brasil >>>>>> >> > >>> > > >> >> >T: +55 11 3529-6000 <+55%2011%203529-6000> >>>>>> <+55%2011%203529-6000> >>>>>> >> <+55%2011%203529-6000> >>>>>> >> > >>> <tel:+55%2011%203529-6000> >>>>>> >> > >>> > > <+55%2011%203529-6000> | M: +55 11 9 9910-1689 >>>>>> >> > >>> > > >> >> >Av. Brigadeiro Faria Lima 3900, 8° Andar. São >>>>>> Paulo, >>>>>> >> Brasil. >>>>>> >> > >>> > > >> >> >RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em >>>>>> >> > redhat.com< >>>>>> >> > >>> > > http://redhat.com> >>>>>> >> > >>> > > >> >> ><https://www.redhat.com/pt-br/about/trusted> >>>>>> >> > >>> > > >> >> >>>>>> >> > >>> > > >> >> >>>>>> >> > >>> > > >> > >>>>>> >> > >>> > > >> > >>>>>> >> > >>> > > >> > -- >>>>>> >> > >>> > > >> > [image: Red Hat] <http://www.redhat.com.br/> >>>>>> >> > >>> > > >> > Telles Nobrega | Software Engineer >>>>>> >> > >>> > > >> > Red Hat Brasil >>>>>> >> > >>> > > >> > T: +55 11 3529-6000 <+55%2011%203529-6000> >>>>>> <+55%2011%203529-6000> >>>>>> >> <+55%2011%203529-6000><tel:+ >>>>>> >> > 55%2011%203529- >>>>>> >> > >>> 6000> >>>>>> >> > >>> > <+55%2011%203529-6000> >>>>>> >> > >>> > > | M: +55 11 9 9910-1689 >>>>>> >> > >>> > > >> > Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, >>>>>> >> Brasil. >>>>>> >> > >>> > > >> > RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em >>>>>> >> redhat.com< >>>>>> >> > >>> > > http://redhat.com> >>>>>> >> > >>> > > >> > <https://www.redhat.com/pt-br/about/trusted> >>>>>> >> > >>> > > >> > >>>>>> >> > >>> > > >> >>>>>> >> > >>> > > >> >>>>>> >> > >>> > > >> >>>>>> >> > >>> > > >> -- >>>>>> >> > >>> > > >> [image: Red Hat] <http://www.redhat.com.br/> >>>>>> >> > >>> > > >> Telles Nobrega | Software Engineer >>>>>> >> > >>> > > >> Red Hat Brasil >>>>>> >> > >>> > > >> T: +55 11 3529-6000 <+55%2011%203529-6000> >>>>>> <+55%2011%203529-6000> >>>>>> >> <+55%2011%203529-6000><tel:+ >>>>>> >> > 55%2011%203529-6000> >>>>>> >> > >>> | M: +55 11 9 9910-1689 >>>>>> >> > >>> > > >> Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, >>>>>> Brasil. >>>>>> >> > >>> > > >> RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em >>>>>> redhat.com >>>>>> >> < >>>>>> >> > >>> > > http://redhat.com> >>>>>> >> > >>> > > >> <https://www.redhat.com/pt-br/about/trusted> >>>>>> >> > >>> > > >> >>>>>> >> > >>> > > >>>>>> >> > >>> > > >>>>>> >> > >>> > > >>>>>> >> > >>> > > >>>>>> >> > >>> > > -- >>>>>> >> > >>> > > [Red Hat]<http://www.redhat.com.br/> >>>>>> >> > >>> > > Telles Nobrega | Software Engineer >>>>>> >> > >>> > > Red Hat Brasil >>>>>> >> > >>> > > T: +55 11 3529-6000 <+55%2011%203529-6000> >>>>>> <+55%2011%203529-6000> >>>>>> >> <+55%2011%203529-6000><tel:+ >>>>>> >> > 55%2011%203529-6000> >>>>>> >> > >>> | M: +55 11 9 9910-1689 >>>>>> >> > >>> > > Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, >>>>>> Brasil. >>>>>> >> > >>> > > RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em >>>>>> redhat.com< >>>>>> >> > >>> > > https://www.redhat.com/pt-br/about/trusted> >>>>>> >> > >>> > > >>>>>> >> > >>> > > >>>>>> >> > >>> > > >>>>>> >> > >>> > > >>>>>> >> > >>> > > -- >>>>>> >> > >>> > > [Red Hat]<http://www.redhat.com.br/> >>>>>> >> > >>> > > Telles Nobrega | Software Engineer >>>>>> >> > >>> > > Red Hat Brasil >>>>>> >> > >>> > > T: +55 11 3529-6000 <+55%2011%203529-6000> >>>>>> <+55%2011%203529-6000> >>>>>> >> <+55%2011%203529-6000> | M: +55 11 9 9910-1689 >>>>>> >> > >>> > > Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, >>>>>> Brasil. >>>>>> >> > >>> > > RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em >>>>>> redhat.com< >>>>>> >> > >>> > > https://www.redhat.com/pt-br/about/trusted> >>>>>> >> > >>> > > >>>>>> >> > >>> > > >>>>>> >> > >>> > >>>>>> >> > >>> > >>>>>> >> > >>> > -- >>>>>> >> > >>> > [image: Red Hat] <http://www.redhat.com.br/> >>>>>> >> > >>> > Telles Nobrega | Software Engineer >>>>>> >> > >>> > Red Hat Brasil >>>>>> >> > >>> > T: +55 11 3529-6000 <+55%2011%203529-6000> >>>>>> <+55%2011%203529-6000> >>>>>> >> <+55%2011%203529-6000> | M: +55 11 9 9910-1689 >>>>>> >> > >>> > Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, >>>>>> Brasil. >>>>>> >> > >>> > RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em >>>>>> redhat.com >>>>>> >> > >>> > <https://www.redhat.com/pt-br/about/trusted> >>>>>> >> > >>> > >>>>>> >> > >>> >>>>>> >> > >> >>>>>> >> > >> >>>>>> >> > >> >>>>>> >> > >> -- >>>>>> >> > >> [image: Red Hat] <http://www.redhat.com.br/> >>>>>> >> > >> Telles Nobrega | Software Engineer >>>>>> >> > >> Red Hat Brasil >>>>>> >> > >> T: +55 11 3529-6000 <+55%2011%203529-6000> >>>>>> <+55%2011%203529-6000> <+55%2011%203529-6000> | >>>>>> >> M: +55 11 9 9910-1689 >>>>>> >> > >> Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, Brasil. >>>>>> >> > >> RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em redhat.com >>>>>> >> > >> <https://www.redhat.com/pt-br/about/trusted> >>>>>> >> > >> >>>>>> >> > > >>>>>> >> > > >>>>>> >> > > >>>>>> >> > > -- >>>>>> >> > > [image: Red Hat] <http://www.redhat.com.br/> >>>>>> >> > > Telles Nobrega | Software Engineer >>>>>> >> > > Red Hat Brasil >>>>>> >> > > T: +55 11 3529-6000 <+55%2011%203529-6000> >>>>>> <+55%2011%203529-6000> <+55%2011%203529-6000> | >>>>>> >>>>>> >> M: +55 11 9 9910-1689 >>>>>> >> > > Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, Brasil. >>>>>> >> > > RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em redhat.com >>>>>> >> > > <https://www.redhat.com/pt-br/about/trusted> >>>>>> >> > > >>>>>> >> > >>>>>> >> > >>>>>> >> > >>>>>> >> > -- >>>>>> >> > [image: Red Hat] <http://www.redhat.com.br/> >>>>>> >> > Telles Nobrega | Software Engineer >>>>>> >> > Red Hat Brasil >>>>>> >> > T: +55 11 3529-6000 <+55%2011%203529-6000> >>>>>> <+55%2011%203529-6000> | M: +55 11 9 9910-1689 >>>>>> >> > Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, Brasil. >>>>>> >> > RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em redhat.com >>>>>> >> > <https://www.redhat.com/pt-br/about/trusted> >>>>>> >> > >>>>>> >> >>>>>> > >>>>>> > >>>>>> > >>>>>> > -- >>>>>> > [image: Red Hat] <http://www.redhat.com.br/> >>>>>> > Telles Nobrega | Software Engineer >>>>>> > Red Hat Brasil >>>>>> > T: +55 11 3529-6000 <+55%2011%203529-6000> <+55%2011%203529-6000> >>>>>> | M: +55 11 9 9910-1689 >>>>>> > Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, Brasil. >>>>>> > RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em redhat.com >>>>>> > <https://www.redhat.com/pt-br/about/trusted> >>>>>> > >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> [image: Red Hat] <http://www.redhat.com.br/> >>>>>> Telles Nobrega | Software Engineer >>>>>> Red Hat Brasil >>>>>> T: +55 11 3529-6000 <+55%2011%203529-6000> | M: +55 11 9 9910-1689 >>>>>> Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, Brasil. >>>>>> RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em redhat.com >>>>>> <https://www.redhat.com/pt-br/about/trusted> >>>>>> >>>>> >>>>> >>>> >>>> >>>> -- >>>> [image: Red Hat] <http://www.redhat.com.br/> >>>> Telles Nobrega | Software Engineer >>>> Red Hat Brasil >>>> T: +55 11 3529-6000 <+55%2011%203529-6000> | M: +55 11 9 9910-1689 >>>> Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, Brasil. >>>> RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em redhat.com >>>> <https://www.redhat.com/pt-br/about/trusted> >>>> >>> >>> >>> >>> -- >>> [image: Red Hat] <http://www.redhat.com.br/> >>> Telles Nobrega | Software Engineer >>> Red Hat Brasil >>> T: +55 11 3529-6000 <+55%2011%203529-6000> | M: +55 11 9 9910-1689 >>> Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, Brasil. >>> RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em redhat.com >>> <https://www.redhat.com/pt-br/about/trusted> >>> >> >> >> >> -- >> [image: Red Hat] <http://www.redhat.com.br/> >> Telles Nobrega | Software Engineer >> Red Hat Brasil >> T: +55 11 3529-6000 <+55%2011%203529-6000> | M: +55 11 9 9910-1689 >> Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, Brasil. >> RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em redhat.com >> <https://www.redhat.com/pt-br/about/trusted> >> > > -- [image: Red Hat] <http://www.redhat.com.br/> Telles Nobrega | Software Engineer Red Hat Brasil T: +55 11 3529-6000 | M: +55 11 9 9910-1689 Av. Brigadeiro Faria Lima 3900, 8° Andar. São Paulo, Brasil. RED HAT | TRIED. TESTED. TRUSTED. Saiba porque em redhat.com <https://www.redhat.com/pt-br/about/trusted>