Re: NoSuchMethodError

2015-03-17 Thread Chris Riccomini
mini [mailto:criccom...@apache.org] > Enviado el: martes, 17 de marzo de 2015 16:43 > Para: dev@samza.apache.org > Asunto: Re: NoSuchMethodError > > Hey Jordi, > > PropertiesConfigFactory is located in this package: > org.apache.samz

RE: NoSuchMethodError

2015-03-17 Thread Jordi Blasi Uribarri
...@apache.org] Enviado el: martes, 17 de marzo de 2015 16:43 Para: dev@samza.apache.org Asunto: Re: NoSuchMethodError Hey Jordi, PropertiesConfigFactory is located in this package: org.apache.samza.config.factories You have the package set to samza.config.factories. You'll need to set

Re: NoSuchMethodError

2015-03-17 Thread Chris Riccomini
Hey Jordi, PropertiesConfigFactory is located in this package: org.apache.samza.config.factories You have the package set to samza.config.factories. You'll need to set it to: org.apache.samza.config.factories.PropertiesConfigFactory Curious where you're getting that value from? We haven't had

Re: NoSuchMethodError

2015-03-17 Thread Jordi Blasi Uribarri
After doing what you told me, now I am including all the dependencies in a package. What I am seeing now is another ClassNotFoundException but in this case it does not seem that it is related to external libraries but to Samza itself, as it is referencing the config factory. # bin/run-job.sh -

Re: NoSuchMethodError

2015-03-16 Thread Chris Riccomini
Hey Jordi, The stack trace you've pasted suggests that you're missing Scala in the classpath, or have a different version of Scala in the classpath than what Samza was compiled with. You should not be manually assembling the dependencies for your job. Your build system should be doing this for yo