Re: [Dev] [ESB] JavaScript API for Script mediator

2014-06-02 Thread Ramindu Deshapriya
Hi Dushan, Thanks. It seems that the functions available via the Rhino JAR are available within the Script mediator as well. However, when sending a payload with integer values, the integers seem to be rewritten in to the payload as float values. In the following instance; if

Re: [Dev] BAM mediator and streams definitions.

2014-06-02 Thread Sinthuja Ragendran
Hi kishanthan, In BAM 2.4.0, you can define the stream definition with any publisher/agent, and then you can add the incremental processing later on for the existing stream. But in BAM 2.4.1, it has been broken and i experienced exception as mentioned in [1], this will be resolved during the

Re: [Dev] Support Tomcat Virtual Hosts in WSO2 AS - issues and progress so far

2014-06-02 Thread Kasun Gajasinghe
I do not think that you should remove the default webapp deployer from component.xml. Your should be in effect only for the additional virtual hosts. On Mon, Jun 2, 2014 at 9:25 AM, Nipuni Perera nip...@wso2.com wrote: Hi, This is working. This was due to an ip address conflict. Thanks,

Re: [Dev] [Architecture] Introducing JSR-223 into Jaggery along with Nashorn Support

2014-06-02 Thread madhuka udantha
Hi, Ruchira 'app.server()' is similar for existing 'application.serve()' in jaggery , isn't it regard functionality? Here[1] is sample for application.serve(). [1] https://github.com/Madhuka/MadhukaBlogRepo/tree/master/SampleApps/JaggeryApps/service/ On Sun, Jun 1, 2014 at 12:58 PM, Ruchira

Re: [Dev] [Architecture] Introducing JSR-223 into Jaggery along with Nashorn Support

2014-06-02 Thread Ruchira Wageesha
Yes, it is the same, except application object itself is replaced by a module. On Mon, Jun 2, 2014 at 12:33 PM, madhuka udantha madhukaudan...@gmail.com wrote: Hi, Ruchira 'app.server()' is similar for existing 'application.serve()' in jaggery , isn't it regard functionality? Here[1] is

[Dev] Running script commands after wso2server.sh is executed in a single script file

2014-06-02 Thread Sajini De Silva
Hi, I want to start the esb server from a script file and execute some check-in client commands from the same script, but once wso2server.sh is executed in the script it never return to the next line where other script commands are placed. Therefore my other script commands are not executed. Any

Re: [Dev] Running script commands after wso2server.sh is executed in a single script file

2014-06-02 Thread Sajini De Silva
Hi, This is what my script file looks like, PRG=$0 while [ -h $PRG ]; do echo $PRG ls=`ls -ld $PRG` link=`expr $ls : '.*- \(.*\)$'` if expr $link : '.*/.*' /dev/null; then PRG=$link else PRG=`dirname $PRG`/$link fi done # Get standard environment variables PRGDIR=`dirname

Re: [Dev] Support Tomcat Virtual Hosts in WSO2 AS - issues and progress so far

2014-06-02 Thread Nipuni Perera
I didn't change the default deployer. I only read appBase values of virtual hosts and added them to the deployment engine. But the webapp deployment take place just after management console is started. Thanks, Nipuni On Mon, Jun 2, 2014 at 12:28 PM, Kasun Gajasinghe kas...@wso2.com wrote: I

Re: [Dev] Running script commands after wso2server.sh is executed in a single script file

2014-06-02 Thread Sajini De Silva
Hi, Thank you for the quick reply chirs. I figured out that this is happening because wso2server.sh command does not release the terminal. Therefore i edited the code like below and now its working. sh ./wso2server.sh sleep 20 echo The script exited with status $? [ -z $CARBON_HOME ]

Re: [Dev] [Architecture] Introducing JSR-223 into Jaggery along with Nashorn Support

2014-06-02 Thread madhuka udantha
On Mon, Jun 2, 2014 at 12:46 PM, Ruchira Wageesha ruch...@wso2.com wrote: Yes, it is the same, except application object itself is replaced by a module. +1 On Mon, Jun 2, 2014 at 12:33 PM, madhuka udantha madhukaudan...@gmail.com wrote: Hi, Ruchira 'app.server()' is similar for

Re: [Dev] Running script commands after wso2server.sh is executed in a single script file

2014-06-02 Thread Krishantha Samaraweera
Hi, On Mon, Jun 2, 2014 at 2:23 PM, Sajini De Silva saj...@wso2.com wrote: Hi, Thank you for the quick reply chirs. I figured out that this is happening because wso2server.sh command does not release the terminal. Therefore i edited the code like below and now its working. sh

Re: [Dev] Support Tomcat Virtual Hosts in WSO2 AS - issues and progress so far

2014-06-02 Thread Kasun Gajasinghe
On Mon, Jun 2, 2014 at 2:05 PM, Nipuni Perera nip...@wso2.com wrote: I didn't change the default deployer. I only read appBase values of virtual hosts and added them to the deployment engine. But the webapp deployment take place just after management console is started. This happens if the

Re: [Dev] Running script commands after wso2server.sh is executed in a single script file

2014-06-02 Thread Sajini De Silva
Hi, Thank you. It worked. Thank you, Sajini. On Mon, Jun 2, 2014 at 2:33 PM, Krishantha Samaraweera krishan...@wso2.com wrote: Hi, On Mon, Jun 2, 2014 at 2:23 PM, Sajini De Silva saj...@wso2.com wrote: Hi, Thank you for the quick reply chirs. I figured out that this is happening

Re: [Dev] Running script commands after wso2server.sh is executed in a single script file

2014-06-02 Thread chris snow
Hi Krishantha. This is really useful. Does it guarantee that the wso2 server has fully started? On Mon, Jun 2, 2014 at 10:03 AM, Krishantha Samaraweera krishan...@wso2.com wrote: Hi, On Mon, Jun 2, 2014 at 2:23 PM, Sajini De Silva saj...@wso2.com wrote: Hi, Thank you for the quick

Re: [Dev] Support Tomcat Virtual Hosts in WSO2 AS - issues and progress so far

2014-06-02 Thread Nipuni Perera
Hi, I am using DataHolder inside org.wso2.carbon.webapp.mgt to get both ConfigurationContextService and CarbonTomcatService. I am using these variables to get the following, 1. get deployment engine from ConfigurationContextService with -

Re: [Dev] Running script commands after wso2server.sh is executed in a single script file

2014-06-02 Thread Krishantha Samaraweera
Hi Chris, Although the port is open it doesn't guarantee that the server is in full operational mode. When running automated tests, we do two things to verify the server is fully started. 1. Wait for port to open. 2. Wait for user login. As per my observations, there is 4ms delay between port

[Dev] https://wso2.org/jira/browse/CARBON-14821

2014-06-02 Thread Dhanuka Ranasinghe
Hi, Can you please review and commit to carbon 4.1.0 branch. Cheers, Dhanuka *Dhanuka Ranasinghe* Senior Software Engineer WSO2 Inc. ; http://wso2.com lean . enterprise . middleware phone : +94 715381915 ___ Dev mailing list Dev@wso2.org

Re: [Dev] GroupManagement node in Non ELB cluster

2014-06-02 Thread Afkham Azeez
It doesn't make sense to make normal cluster nodes group management nodes, at present. On Mon, Jun 2, 2014 at 1:58 PM, Ajith Vitharana aji...@wso2.com wrote: Hi All, If we don't use the WSO2 ELB for clustering, Is it must to enable some other node in the cluster as the GroupManagement node

Re: [Dev] WSO2 Committers += Sohani Weerasinghe

2014-06-02 Thread Sohani Weerasinghe
Thank you everyone Thanks, Sohani Sohani Weerasinghe Software Engineer WSO2, Inc: http://wso2.com Mobile : +94 716439774 Blog :http://christinetechtips.blogspot.com/ Twitter : https://twitter.com/sohanichristine On Sun, Jun 1, 2014 at 3:10 PM, Dilini Muthumala dil...@wso2.com

Re: [Dev] GroupManagement node in Non ELB cluster

2014-06-02 Thread Ajith Vitharana
On Mon, Jun 2, 2014 at 3:28 PM, Afkham Azeez az...@wso2.com wrote: It doesn't make sense to make normal cluster nodes group management nodes, at present. Thanks Azeez. -Ajith. On Mon, Jun 2, 2014 at 1:58 PM, Ajith Vitharana aji...@wso2.com wrote: Hi All, If we don't use the WSO2 ELB

[Dev] Fwd: Access HttpServletRequest attributes in Jaggery app

2014-06-02 Thread Jayanga Dissanayake
Hi, While implementing the security feature in Operations Center (OC), I wanted to access the certificate details in the request. But there is no way to access the attributes in the HttpServletRequest in Jaggery app. Please implement this feature in Jaggery. Thanks, *Jayanga Dissanayake* Senior

Re: [Dev] WSO2 Committers += Sohani Weerasinghe

2014-06-02 Thread Shameera Rathnayaka
Congratulation Shani !!! On Mon, Jun 2, 2014 at 3:57 PM, Sohani Weerasinghe soh...@wso2.com wrote: Thank you everyone Thanks, Sohani Sohani Weerasinghe Software Engineer WSO2, Inc: http://wso2.com Mobile : +94 716439774 Blog :http://christinetechtips.blogspot.com/ Twitter

Re: [Dev] WSO2 Committers += Sohani Weerasinghe

2014-06-02 Thread Malintha Adikari
Congratulations Sohani... On Mon, Jun 2, 2014 at 4:43 PM, Shameera Rathnayaka shame...@wso2.com wrote: Congratulation Shani !!! On Mon, Jun 2, 2014 at 3:57 PM, Sohani Weerasinghe soh...@wso2.com wrote: Thank you everyone Thanks, Sohani Sohani Weerasinghe Software Engineer

Re: [Dev] WSO2 Committers += Sohani Weerasinghe

2014-06-02 Thread Ashansa Perera
Congratulations !!! On Mon, Jun 2, 2014 at 4:46 PM, Malintha Adikari malin...@wso2.com wrote: Congratulations Sohani... On Mon, Jun 2, 2014 at 4:43 PM, Shameera Rathnayaka shame...@wso2.com wrote: Congratulation Shani !!! On Mon, Jun 2, 2014 at 3:57 PM, Sohani Weerasinghe

[Dev] Merge conlifict due to wrong pull request in the wrong repo

2014-06-02 Thread Vanjikumaran Sivajothy
Hi manula, You have send the pull request to synapse in wso2 repository straightway and it is not acceptable according to protocol on continuous delivery on GIThub. According to the mail thread Guidelines to move project into GitHub and Meeting notes : Governance for Git based builds - initial

Re: [Dev] WSO2 Committers += Sohani Weerasinghe

2014-06-02 Thread Shameera Rathnayaka
On Mon, Jun 2, 2014 at 4:43 PM, Shameera Rathnayaka shame...@wso2.com wrote: Congratulation Shani !!! ​​It should be Sohani, sorry for mistype :)​​ On Mon, Jun 2, 2014 at 3:57 PM, Sohani Weerasinghe soh...@wso2.com wrote: Thank you everyone Thanks, Sohani Sohani Weerasinghe

Re: [Dev] Merge conlifict due to wrong pull request in the wrong repo

2014-06-02 Thread Sagara Gunathunga
I can see two problems here. 1. People sending pull requests to WSO2 account instead of WSO2-dev This is mentioned in number of mails and I have clearly explained the procedure during my training last week. We can't control external people but we should able to educate WSO2 internal people to

Re: [Dev] Merge conlifict due to wrong pull request in the wrong repo

2014-06-02 Thread Vanjikumaran Sivajothy
I will revert back the code in wso2 repo to continue the synchronization work with the main repo. On Mon, Jun 2, 2014 at 5:05 PM, Sagara Gunathunga sag...@wso2.com wrote: I can see two problems here. 1. People sending pull requests to WSO2 account instead of WSO2-dev This is mentioned

Re: [Dev] Merge conlifict due to wrong pull request in the wrong repo

2014-06-02 Thread Sagara Gunathunga
On Mon, Jun 2, 2014 at 5:05 PM, Sagara Gunathunga sag...@wso2.com wrote: I can see two problems here. 1. People sending pull requests to WSO2 account instead of WSO2-dev This is mentioned in number of mails and I have clearly explained the procedure during my training last week. We can't

Re: [Dev] Support Tomcat Virtual Hosts in WSO2 AS - issues and progress so far

2014-06-02 Thread Sameera Jayasoma
We do no recommend to register deployers programmatically. The recommended approach is to declare them in the component.xml. This allows Carbon kernel to read and register deployers before initializing Apache Axis2 engine. If you register deployers programmatically, Carbon kernel does not have any

[Dev] Pull request send for public JIRA - APIMANAGER-2196

2014-06-02 Thread Manula Chathurika Thantriwatte
Hi, I have send the following pull request[1] to the public JIRA[2]. Please review and apply. [1] https://github.com/wso2-dev/wso2-synapse/pull/37 [2] https://wso2.org/jira/browse/APIMANAGER-2196 -- Regards, Manula Chathurika Thantriwatte Software Engineer WSO2 Inc. : http://wso2.com lean .

Re: [Dev] Pull request send for public JIRA - APIMANAGER-2196

2014-06-02 Thread Vanjikumaran Sivajothy
Hi Manulla, Please review again your code, since it showing us some conflicts. Please upstream your wso2-dev before send the pull request! Thanks On Mon, Jun 2, 2014 at 5:59 PM, Manula Chathurika Thantriwatte manu...@wso2.com wrote: Hi, I have send the following pull request[1] to the

Re: [Dev] Support Tomcat Virtual Hosts in WSO2 AS - issues and progress so far

2014-06-02 Thread Sameera Jayasoma
Looks like we have a solution this problem. We simply need to way to register deployers which cannot be declared in component.xml, because users should be able add or remove deployers. Axis2DeployerRegistry.register() method registers all the Deployers declared in the component.xml files. These

Re: [Dev] Pull request send for public JIRA - APIMANAGER-2196

2014-06-02 Thread Manula Chathurika Thantriwatte
Hi, I have take the pull and create the pull request. I'll do it again and send. On Mon, Jun 2, 2014 at 6:03 PM, Vanjikumaran Sivajothy va...@wso2.com wrote: Hi Manulla, Please review again your code, since it showing us some conflicts. Please upstream your wso2-dev before send the pull

Re: [Dev] Pull request send for public JIRA - APIMANAGER-2196

2014-06-02 Thread Manula Chathurika Thantriwatte
Hi, Please review and apply the new pull request [1] [1] https://github.com/wso2-dev/wso2-synapse/pull/38 On Mon, Jun 2, 2014 at 6:17 PM, Manula Chathurika Thantriwatte manu...@wso2.com wrote: Hi, I have take the pull and create the pull request. I'll do it again and send. On Mon, Jun

Re: [Dev] Pull request send for public JIRA - APIMANAGER-2196

2014-06-02 Thread Vanjikumaran Sivajothy
Thank you On Mon, Jun 2, 2014 at 6:25 PM, Manula Chathurika Thantriwatte manu...@wso2.com wrote: Hi, Please review and apply the new pull request [1] [1] https://github.com/wso2-dev/wso2-synapse/pull/38 On Mon, Jun 2, 2014 at 6:17 PM, Manula Chathurika Thantriwatte manu...@wso2.com

Re: [Dev] Merge conlifict due to wrong pull request in the wrong repo

2014-06-02 Thread Maheshika Goonetilleke
Hi Vanji I've added members in the ESB team in GIT (I guess that's how i've missed you.). I have added you the synapse build now. On Mon, Jun 2, 2014 at 4:52 PM, Vanjikumaran Sivajothy va...@wso2.com wrote: Hi manula, You have send the pull request to synapse in wso2 repository straightway

[Dev] How to extract multiple transport headers with the same key?

2014-06-02 Thread Rasika Hettige
Hi, The following two headers are returned in the response of an API call. My requirement is to extract the value of second Set-Cookie header. 1) Set-Cookie: GDCAuthTT=; path=/gdc; expires=Sat, 03-May-2014 12:59:37 GMT; secure; HttpOnly 2) Set-Cookie: GDCAuthSST=xx; path=/gdc/account;

Re: [Dev] [AS] Casting Objects which are loaded by two different classloaders

2014-06-02 Thread Rajkumar Rajaratnam
Hi, According to our offline discussion, we are trying to achieve this casting. BlockingService blockingService= (BlockingService) *obj*; But, at the end of the day, we are going to call the following method which is defined in our BinaryServiceRegistry. registerService(BlockingService

[Dev] SAML-authenticating an ESB proxy

2014-06-02 Thread Jason Catlin
Hey guys, I'm trying to create a basic ESB proxy authenticated by SAML. It seems to be something the product supports, but that there isnt an documentation for anywhere. When I use the gui to configure it, it puts this in my code: parameter name=disableRESTtrue/parameter parameter

Re: [Dev] [BAM] BAM Mediator doesn't send events when invoked from a sequence.

2014-06-02 Thread Maninda Edirisooriya
Hi Rajith, Service field was a useful parameter when BAM mediator is used inside an API as I remember. And that field has to be there for the backward compatibility as well IMO. The problem is handling the NPE with a null check when executing* msgCtx.getAxisService().getName()*. There is no other

[Dev] Reg Version update of a service

2014-06-02 Thread FIXED-TERM Nishath Arshia (CI/WBI-NA)
Hello, I want to update the version of a service in Governance Registry .I used service.setAttribute(overview_version,value) function for the same but the changes are not reflecting in the governance registry. What could be the issue. Kindly help Thanks and regards, Arshia Nishath

Re: [Dev] [BAM] BAM Mediator doesn't send events when invoked from a sequence.

2014-06-02 Thread Rajith Siriwardena
Hi Maninda, Yes if that is the case, setting up an empty String is the best option. but then isn't it violates the null check we were having in the following code. (I don't know why it was there btw) ## BamMediator.java if(service == null) { return true; } I haven't checked your patch. I'll

Re: [Dev] [BAM] BAM Mediator doesn't send events when invoked from a sequence.

2014-06-02 Thread Rajith Siriwardena
Yes your patch will do the trick, thanks for the clarification. --Rajith On Mon, Jun 2, 2014 at 10:30 PM, Rajith Siriwardena raj...@wso2.com wrote: Hi Maninda, Yes if that is the case, setting up an empty String is the best option. but then isn't it violates the null check we were having

Re: [Dev] Reg Version update of a service

2014-06-02 Thread Eranda Sooriyabandara
Hi Nishath, If you want to update the service you need to execute ServiceManager.update method after modifying the service. Eg. service.setAttribute(“overview_version”,”value”); serviceManager.update(service); thanks Eranda On Mon, Jun 2, 2014 at 10:18 PM, FIXED-TERM Nishath Arshia

[Dev] Why do I get this error at BAM?

2014-06-02 Thread Vijayaratha Vijayasingam
Hi all; Im getting following error at BAM in the middle and it throws continuously.. ava:31) at org.apache.thrift.server.TThreadPoolServer.serve(TThreadPoolServer.ja a:106) at org.wso2.carbon.databridge.receiver.thrift.internal.ThriftDataReceive

Re: [Dev] Why do I get this error at BAM?

2014-06-02 Thread Isuru Perera
The error is Too many open files Please increase the ulimit. See https://docs.wso2.org/display/ESB481/Performance+Tuning Edit /etc/security/limits.conf file and add following to the end. * soft nofile 4096 * hard nofile 65535 On Mon, Jun 2, 2014 at 12:34 PM, Vijayaratha Vijayasingam

Re: [Dev] Why do I get this error at BAM?

2014-06-02 Thread Vijayaratha Vijayasingam
I sent only 5 requests..but getting this error..Ill try the solution.. On 2 June 2014 12:56, Isuru Perera isu...@wso2.com wrote: The error is Too many open files Please increase the ulimit. See https://docs.wso2.org/display/ESB481/Performance+Tuning Edit /etc/security/limits.conf file and

Re: [Dev] Why do I get this error at BAM?

2014-06-02 Thread Vijayaratha Vijayasingam
We increased the file limit.. Still getting same issue.. On 2 June 2014 13:00, Vijayaratha Vijayasingam rat...@wso2.com wrote: I sent only 5 requests..but getting this error..Ill try the solution.. On 2 June 2014 12:56, Isuru Perera isu...@wso2.com wrote: The error is Too many open files

Re: [Dev] Why do I get this error at BAM?

2014-06-02 Thread Bhathiya Jayasekara
Try the following. http://www.datastax.com/docs/1.1/troubleshooting/index#toomany On Mon, Jun 2, 2014 at 2:52 PM, Vijayaratha Vijayasingam rat...@wso2.com wrote: We increased the file limit.. Still getting same issue.. On 2 June 2014 13:00, Vijayaratha Vijayasingam rat...@wso2.com wrote:

Re: [Dev] Why do I get this error at BAM?

2014-06-02 Thread Isuru Perera
Did you restart the server? On Mon, Jun 2, 2014 at 2:52 PM, Vijayaratha Vijayasingam rat...@wso2.com wrote: We increased the file limit.. Still getting same issue.. On 2 June 2014 13:00, Vijayaratha Vijayasingam rat...@wso2.com wrote: I sent only 5 requests..but getting this error..Ill

Re: [Dev] Why do I get this error at BAM?

2014-06-02 Thread Vijayaratha Vijayasingam
yes..multiple times On 2 June 2014 15:01, Isuru Perera isu...@wso2.com wrote: Did you restart the server? On Mon, Jun 2, 2014 at 2:52 PM, Vijayaratha Vijayasingam rat...@wso2.com wrote: We increased the file limit.. Still getting same issue.. On 2 June 2014 13:00, Vijayaratha

Re: [Dev] Why do I get this error at BAM?

2014-06-02 Thread Supun Malinga
Hi, Had a chat with Ratha. We checked the file limits with ulimit -n command and saw that the updated values not being applied. Found that wild card character was omitted.. Seems the wildcard character (*) mentioned in the doc is misleading as a bullet point :). Can we have a second look at

Re: [Dev] Why do I get this error at BAM?

2014-06-02 Thread Isuru Perera
On Mon, Jun 2, 2014 at 4:57 PM, Supun Malinga sup...@wso2.com wrote: Hi, Had a chat with Ratha. We checked the file limits with ulimit -n command and saw that the updated values not being applied. Found that wild card character was omitted.. Seems the wildcard character (*) mentioned in the

Re: [Dev] Why do I get this error at BAM?

2014-06-02 Thread Jackie Wheeler
Added (be sure to include the leading * character) to the end of the sentence before the code example. On Mon, Jun 2, 2014 at 4:57 PM, Supun Malinga sup...@wso2.com wrote: Hi, Had a chat with Ratha. We checked the file limits with ulimit -n command and saw that the updated values not being

Re: [Dev] Why do I get this error at BAM?

2014-06-02 Thread Supun Malinga
thanks Jackie. On Mon, Jun 2, 2014 at 5:06 PM, Jackie Wheeler jac...@wso2.com wrote: Added (be sure to include the leading * character) to the end of the sentence before the code example. On Mon, Jun 2, 2014 at 4:57 PM, Supun Malinga sup...@wso2.com wrote: Hi, Had a chat with Ratha. We

Re: [Dev] [Architecture] Introducing JSR-223 into Jaggery along with Nashorn Support

2014-06-02 Thread Chan
+1 for the Nashorn update. Is it possible for us to follow an API similar to NodeJS? This will make it easy for JavaScript developers to use Jaggery runtime. Also would love to get console.log() for logging instead of making Log objects and logging things (just a thought). Cheers~ On Mon, Jun

Re: [Dev] [AS] Casting Objects which are loaded by two different classloaders

2014-06-02 Thread Rajkumar Rajaratnam
Hi Sagara, KasunG, Will this approach work? Lets have a parent classloader for WebAppClassLoader. We will load the BlockingService using parent classloader. *obj* will be loaded by WebAppClassLoader. Since its parent knows about BlockingService, we will be able to cast. Is this possible to

Re: [Dev] Support Tomcat Virtual Hosts in WSO2 AS - issues and progress so far

2014-06-02 Thread Nipuni Perera
I will implement and provide a patch. Thanks, Nipuni On Mon, Jun 2, 2014 at 6:14 PM, Sameera Jayasoma same...@wso2.com wrote: Looks like we have a solution this problem. We simply need to way to register deployers which cannot be declared in component.xml, because users should be able add

[Dev] [DEV][ESB] Aggregate mediator error in building the OMElement

2014-06-02 Thread Rajith Siriwardena
Hi, Our requirement is to aggregate similar soap bodies using aggregate mediator. With the following synapse.xml with *two log mediators in proxy services it works fine* *and gives the required aggregated (attached: aggregated.xml) output*. but if I remove the log mediators in proxy services it

[Dev] BAM error when ruining hive script

2014-06-02 Thread Dinesh Bandara
Hi , When ruining the hive script following error occurred, TID: [0] [BAM] [2014-06-02 10:56:42,269] WARN {org.apache.hadoop.mapred. JobClient} - Use GenericOptionsParser for parsing the arguments. Applications should implement Tool for the same. {org.apache.hadoop.mapred.JobClient} TID: [0]

Re: [Dev] BAM error when ruining hive script

2014-06-02 Thread Inosh Goonewardena
Hi Dinesh, Can you attach your hive script? On Tue, Jun 3, 2014 at 11:09 AM, Dinesh Bandara dine...@wso2.com wrote: Hi , When ruining the hive script following error occurred, TID: [0] [BAM] [2014-06-02 10:56:42,269] WARN {org.apache.hadoop.mapred. JobClient} - Use GenericOptionsParser

[Dev] Pull request on wso2 repo

2014-06-02 Thread Vanjikumaran Sivajothy
Hi bhathiya, Due to the continuous delivery policy on GIT, you are not liable to send a pull request directly to the wso2 main repo[1]. Therefore we are closing your pull request[2] without merging into the main master repo. Please send a pull request to our development repo [3], thereafter we

Re: [Dev] BAM error when ruining hive script

2014-06-02 Thread Gihan Anuruddha
This might be due to sql error. Please check your sql statement separately. On Tue, Jun 3, 2014 at 11:19 AM, Inosh Goonewardena in...@wso2.com wrote: Hi Dinesh, Can you attach your hive script? On Tue, Jun 3, 2014 at 11:09 AM, Dinesh Bandara dine...@wso2.com wrote: Hi , When ruining