|
Prashant Kommireddi
2013-01-24, 00:48
Jonathan Coveney
2013-01-24, 01:44
Prashant Kommireddi
2013-01-24, 02:04
Jonathan Coveney
2013-01-24, 05:09
Prashant Kommireddi
2013-01-24, 05:22
Alan Gates
2013-01-24, 16:37
Prashant Kommireddi
2013-01-24, 17:42
Alan Gates
2013-01-24, 17:46
Prashant Kommireddi
2013-02-06, 00:30
Jonathan Coveney
2013-01-24, 06:56
Praveen M
2013-01-24, 15:02
Ramakrishna Nalam
2013-01-25, 03:57
Jonathan Coveney
2013-01-25, 04:39
Ramakrishna Nalam
2013-01-25, 07:18
Cheolsoo Park
2013-01-25, 17:08
Jonathan Coveney
2013-01-25, 17:37
Rohini Palaniswamy
2013-01-26, 00:23
Cheolsoo Park
2013-01-26, 02:55
Bill Graham
2013-01-24, 01:35
|
-
Run a job asyncPrashant Kommireddi 2013-01-24, 00:48
Hey guys,
I am trying to do the following: 1. Launch a pig job asynchronously via Java program 2. Get a notification once the job is complete (something similar to Hadoop callback with a servlet) I looked at PigServer.executeBatch() and it seems to be waiting until job completes.This is not what I would like my app to do. Any ideas? Thanks, +
Prashant Kommireddi 2013-01-24, 00:48
-
Re: Run a job asyncJonathan Coveney 2013-01-24, 01:44
start a separate Process which runs Pig?
2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > Hey guys, > > I am trying to do the following: > > 1. Launch a pig job asynchronously via Java program > 2. Get a notification once the job is complete (something similar to > Hadoop callback with a servlet) > > I looked at PigServer.executeBatch() and it seems to be waiting until job > completes.This is not what I would like my app to do. > > Any ideas? > > Thanks, > +
Jonathan Coveney 2013-01-24, 01:44
-
Re: Run a job asyncPrashant Kommireddi 2013-01-24, 02:04
Did not want to have several threads launched for this. We might have
thousands of requests coming in, and the app is doing a lot more than only Pig. On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney <[EMAIL PROTECTED]>wrote: > start a separate Process which runs Pig? > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > Hey guys, > > > > I am trying to do the following: > > > > 1. Launch a pig job asynchronously via Java program > > 2. Get a notification once the job is complete (something similar to > > Hadoop callback with a servlet) > > > > I looked at PigServer.executeBatch() and it seems to be waiting until job > > completes.This is not what I would like my app to do. > > > > Any ideas? > > > > Thanks, > > > +
Prashant Kommireddi 2013-01-24, 02:04
-
Re: Run a job asyncJonathan Coveney 2013-01-24, 05:09
Thousands of requests, or thousands of Pig jobs? Or both?
2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > Did not want to have several threads launched for this. We might have > thousands of requests coming in, and the app is doing a lot more than only > Pig. > > On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney <[EMAIL PROTECTED] > >wrote: > > > start a separate Process which runs Pig? > > > > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > > > Hey guys, > > > > > > I am trying to do the following: > > > > > > 1. Launch a pig job asynchronously via Java program > > > 2. Get a notification once the job is complete (something similar to > > > Hadoop callback with a servlet) > > > > > > I looked at PigServer.executeBatch() and it seems to be waiting until > job > > > completes.This is not what I would like my app to do. > > > > > > Any ideas? > > > > > > Thanks, > > > > > > +
Jonathan Coveney 2013-01-24, 05:09
-
Re: Run a job asyncPrashant Kommireddi 2013-01-24, 05:22
Both. Think of it as an app server handling all of these requests.
Sent from my iPhone On Jan 23, 2013, at 9:09 PM, Jonathan Coveney <[EMAIL PROTECTED]> wrote: > Thousands of requests, or thousands of Pig jobs? Or both? > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > >> Did not want to have several threads launched for this. We might have >> thousands of requests coming in, and the app is doing a lot more than only >> Pig. >> >> On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney <[EMAIL PROTECTED] >>> wrote: >> >>> start a separate Process which runs Pig? >>> >>> >>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> >>> >>>> Hey guys, >>>> >>>> I am trying to do the following: >>>> >>>> 1. Launch a pig job asynchronously via Java program >>>> 2. Get a notification once the job is complete (something similar to >>>> Hadoop callback with a servlet) >>>> >>>> I looked at PigServer.executeBatch() and it seems to be waiting until >> job >>>> completes.This is not what I would like my app to do. >>>> >>>> Any ideas? >>>> >>>> Thanks, >>>> >>> >> +
Prashant Kommireddi 2013-01-24, 05:22
-
Re: Run a job asyncAlan Gates 2013-01-24, 16:37
If you're looking for an app server for Pig I'd take a look at a couple of other projects already out there that can do this:
1) webhcat (fka Templeton, now part of the HCatalog project). It provides a REST API that launches Pig, Hive, or MR jobs and allows you to manage them, get results, etc. It's in HCatalog 0.5, which is in the release candidate state. You can go to http://people.apache.org/~travis/hcatalog-0.5.0-incubating-candidate-1/ and pick up the release candidate. 2) Oozie. Oozie's a workflow engine for Hadoop, but it also supports submission of single Pig or MR jobs via REST. It may be a little heavyweight for what you want but it works. Alan. On Jan 23, 2013, at 9:22 PM, Prashant Kommireddi wrote: > Both. Think of it as an app server handling all of these requests. > > Sent from my iPhone > > On Jan 23, 2013, at 9:09 PM, Jonathan Coveney <[EMAIL PROTECTED]> wrote: > >> Thousands of requests, or thousands of Pig jobs? Or both? >> >> >> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> >> >>> Did not want to have several threads launched for this. We might have >>> thousands of requests coming in, and the app is doing a lot more than only >>> Pig. >>> >>> On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney <[EMAIL PROTECTED] >>>> wrote: >>> >>>> start a separate Process which runs Pig? >>>> >>>> >>>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> >>>> >>>>> Hey guys, >>>>> >>>>> I am trying to do the following: >>>>> >>>>> 1. Launch a pig job asynchronously via Java program >>>>> 2. Get a notification once the job is complete (something similar to >>>>> Hadoop callback with a servlet) >>>>> >>>>> I looked at PigServer.executeBatch() and it seems to be waiting until >>> job >>>>> completes.This is not what I would like my app to do. >>>>> >>>>> Any ideas? >>>>> >>>>> Thanks, >>>>> >>>> >>> +
Alan Gates 2013-01-24, 16:37
-
Re: Run a job asyncPrashant Kommireddi 2013-01-24, 17:42
Thanks Alan. We are trying to plug Pig into our existing app server.
We have already done this for Java MR. The difficulty we are facing is with the fact that we can use JobClient.submitJob and jobtracker's job end notification to run jobs async, whereas PigServer.executeBatch blocks until pig job is complete. Sent from my iPhone On Jan 24, 2013, at 9:31 AM, Alan Gates <[EMAIL PROTECTED]> wrote: > If you're looking for an app server for Pig I'd take a look at a couple of other projects already out there that can do this: > > 1) webhcat (fka Templeton, now part of the HCatalog project). It provides a REST API that launches Pig, Hive, or MR jobs and allows you to manage them, get results, etc. It's in HCatalog 0.5, which is in the release candidate state. You can go to http://people.apache.org/~travis/hcatalog-0.5.0-incubating-candidate-1/ and pick up the release candidate. > > 2) Oozie. Oozie's a workflow engine for Hadoop, but it also supports submission of single Pig or MR jobs via REST. It may be a little heavyweight for what you want but it works. > > Alan. > > On Jan 23, 2013, at 9:22 PM, Prashant Kommireddi wrote: > >> Both. Think of it as an app server handling all of these requests. >> >> Sent from my iPhone >> >> On Jan 23, 2013, at 9:09 PM, Jonathan Coveney <[EMAIL PROTECTED]> wrote: >> >>> Thousands of requests, or thousands of Pig jobs? Or both? >>> >>> >>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> >>> >>>> Did not want to have several threads launched for this. We might have >>>> thousands of requests coming in, and the app is doing a lot more than only >>>> Pig. >>>> >>>> On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney <[EMAIL PROTECTED] >>>>> wrote: >>>> >>>>> start a separate Process which runs Pig? >>>>> >>>>> >>>>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> >>>>> >>>>>> Hey guys, >>>>>> >>>>>> I am trying to do the following: >>>>>> >>>>>> 1. Launch a pig job asynchronously via Java program >>>>>> 2. Get a notification once the job is complete (something similar to >>>>>> Hadoop callback with a servlet) >>>>>> >>>>>> I looked at PigServer.executeBatch() and it seems to be waiting until >>>> job >>>>>> completes.This is not what I would like my app to do. >>>>>> >>>>>> Any ideas? >>>>>> >>>>>> Thanks, >>>>>> >>>>> >>>> > +
Prashant Kommireddi 2013-01-24, 17:42
-
Re: Run a job asyncAlan Gates 2013-01-24, 17:46
You might want to look at webhcat's code. It produces a servlet that it embeds in a jetty server. You may be able to copy paste this to get what you want.
The code of interest is in the hcat repository under webhcat/svr. Alan. On Jan 24, 2013, at 9:42 AM, Prashant Kommireddi wrote: > Thanks Alan. We are trying to plug Pig into our existing app server. > We have already done this for Java MR. The difficulty we are facing is > with the fact that we can use JobClient.submitJob and jobtracker's job > end notification to run jobs async, whereas PigServer.executeBatch > blocks until pig job is complete. > > Sent from my iPhone > > On Jan 24, 2013, at 9:31 AM, Alan Gates <[EMAIL PROTECTED]> wrote: > >> If you're looking for an app server for Pig I'd take a look at a couple of other projects already out there that can do this: >> >> 1) webhcat (fka Templeton, now part of the HCatalog project). It provides a REST API that launches Pig, Hive, or MR jobs and allows you to manage them, get results, etc. It's in HCatalog 0.5, which is in the release candidate state. You can go to http://people.apache.org/~travis/hcatalog-0.5.0-incubating-candidate-1/ and pick up the release candidate. >> >> 2) Oozie. Oozie's a workflow engine for Hadoop, but it also supports submission of single Pig or MR jobs via REST. It may be a little heavyweight for what you want but it works. >> >> Alan. >> >> On Jan 23, 2013, at 9:22 PM, Prashant Kommireddi wrote: >> >>> Both. Think of it as an app server handling all of these requests. >>> >>> Sent from my iPhone >>> >>> On Jan 23, 2013, at 9:09 PM, Jonathan Coveney <[EMAIL PROTECTED]> wrote: >>> >>>> Thousands of requests, or thousands of Pig jobs? Or both? >>>> >>>> >>>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> >>>> >>>>> Did not want to have several threads launched for this. We might have >>>>> thousands of requests coming in, and the app is doing a lot more than only >>>>> Pig. >>>>> >>>>> On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney <[EMAIL PROTECTED] >>>>>> wrote: >>>>> >>>>>> start a separate Process which runs Pig? >>>>>> >>>>>> >>>>>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> >>>>>> >>>>>>> Hey guys, >>>>>>> >>>>>>> I am trying to do the following: >>>>>>> >>>>>>> 1. Launch a pig job asynchronously via Java program >>>>>>> 2. Get a notification once the job is complete (something similar to >>>>>>> Hadoop callback with a servlet) >>>>>>> >>>>>>> I looked at PigServer.executeBatch() and it seems to be waiting until >>>>> job >>>>>>> completes.This is not what I would like my app to do. >>>>>>> >>>>>>> Any ideas? >>>>>>> >>>>>>> Thanks, >>>>>>> >>>>>> >>>>> >> +
Alan Gates 2013-01-24, 17:46
-
Re: Run a job asyncPrashant Kommireddi 2013-02-06, 00:30
Thanks Alan, this was helpful.
On Thu, Jan 24, 2013 at 9:46 AM, Alan Gates <[EMAIL PROTECTED]> wrote: > You might want to look at webhcat's code. It produces a servlet that it > embeds in a jetty server. You may be able to copy paste this to get what > you want. > > The code of interest is in the hcat repository under webhcat/svr. > > Alan. > > On Jan 24, 2013, at 9:42 AM, Prashant Kommireddi wrote: > > > Thanks Alan. We are trying to plug Pig into our existing app server. > > We have already done this for Java MR. The difficulty we are facing is > > with the fact that we can use JobClient.submitJob and jobtracker's job > > end notification to run jobs async, whereas PigServer.executeBatch > > blocks until pig job is complete. > > > > Sent from my iPhone > > > > On Jan 24, 2013, at 9:31 AM, Alan Gates <[EMAIL PROTECTED]> wrote: > > > >> If you're looking for an app server for Pig I'd take a look at a couple > of other projects already out there that can do this: > >> > >> 1) webhcat (fka Templeton, now part of the HCatalog project). It > provides a REST API that launches Pig, Hive, or MR jobs and allows you to > manage them, get results, etc. It's in HCatalog 0.5, which is in the > release candidate state. You can go to > http://people.apache.org/~travis/hcatalog-0.5.0-incubating-candidate-1/and pick up the release candidate. > >> > >> 2) Oozie. Oozie's a workflow engine for Hadoop, but it also supports > submission of single Pig or MR jobs via REST. It may be a little > heavyweight for what you want but it works. > >> > >> Alan. > >> > >> On Jan 23, 2013, at 9:22 PM, Prashant Kommireddi wrote: > >> > >>> Both. Think of it as an app server handling all of these requests. > >>> > >>> Sent from my iPhone > >>> > >>> On Jan 23, 2013, at 9:09 PM, Jonathan Coveney <[EMAIL PROTECTED]> > wrote: > >>> > >>>> Thousands of requests, or thousands of Pig jobs? Or both? > >>>> > >>>> > >>>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > >>>> > >>>>> Did not want to have several threads launched for this. We might have > >>>>> thousands of requests coming in, and the app is doing a lot more > than only > >>>>> Pig. > >>>>> > >>>>> On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney < > [EMAIL PROTECTED] > >>>>>> wrote: > >>>>> > >>>>>> start a separate Process which runs Pig? > >>>>>> > >>>>>> > >>>>>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > >>>>>> > >>>>>>> Hey guys, > >>>>>>> > >>>>>>> I am trying to do the following: > >>>>>>> > >>>>>>> 1. Launch a pig job asynchronously via Java program > >>>>>>> 2. Get a notification once the job is complete (something similar > to > >>>>>>> Hadoop callback with a servlet) > >>>>>>> > >>>>>>> I looked at PigServer.executeBatch() and it seems to be waiting > until > >>>>> job > >>>>>>> completes.This is not what I would like my app to do. > >>>>>>> > >>>>>>> Any ideas? > >>>>>>> > >>>>>>> Thanks, > >>>>>>> > >>>>>> > >>>>> > >> > > +
Prashant Kommireddi 2013-02-06, 00:30
-
Re: Run a job asyncJonathan Coveney 2013-01-24, 06:56
I think whatever way you slice it, handling thousands of pig jobs
asynchronously is going to be a bear. I mean, this is essentially what the job tracker does, albeit with a lot less information. Either way, Pig is not multi-threaded so having more than one instance of Pig in the same JVM is going to start causing problems (which is why, I imagine, there is no async way to call Pig). So multiple processes is really the only way around it that I know of. At Twitter we have a deployment of mesos, and our long term solution is going to be running all of our pig jobs on mesos, in the short term by deploying daemons that run pig jobs as local processes. 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > Both. Think of it as an app server handling all of these requests. > > Sent from my iPhone > > On Jan 23, 2013, at 9:09 PM, Jonathan Coveney <[EMAIL PROTECTED]> wrote: > > > Thousands of requests, or thousands of Pig jobs? Or both? > > > > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > >> Did not want to have several threads launched for this. We might have > >> thousands of requests coming in, and the app is doing a lot more than > only > >> Pig. > >> > >> On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney <[EMAIL PROTECTED] > >>> wrote: > >> > >>> start a separate Process which runs Pig? > >>> > >>> > >>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > >>> > >>>> Hey guys, > >>>> > >>>> I am trying to do the following: > >>>> > >>>> 1. Launch a pig job asynchronously via Java program > >>>> 2. Get a notification once the job is complete (something similar to > >>>> Hadoop callback with a servlet) > >>>> > >>>> I looked at PigServer.executeBatch() and it seems to be waiting until > >> job > >>>> completes.This is not what I would like my app to do. > >>>> > >>>> Any ideas? > >>>> > >>>> Thanks, > >>>> > >>> > >> > +
Jonathan Coveney 2013-01-24, 06:56
-
Re: Run a job asyncPraveen M 2013-01-24, 15:02
Are there any plans on making the pigserver multi-threaded?
since there is "PigProcessNotificationListener" to subscribe for async callbacks when the pig job completes, is there any real need to keep the pig job submitting thread waiting until the job completes? Is this just a shortcoming today or are there more concrete reasons against providing with a pigserver which can submit to the cluster in mapreduce mode async? Thanks, Praveen On Wed, Jan 23, 2013 at 10:56 PM, Jonathan Coveney <[EMAIL PROTECTED]>wrote: > I think whatever way you slice it, handling thousands of pig jobs > asynchronously is going to be a bear. I mean, this is essentially what the > job tracker does, albeit with a lot less information. > > Either way, Pig is not multi-threaded so having more than one instance of > Pig in the same JVM is going to start causing problems (which is why, I > imagine, there is no async way to call Pig). So multiple processes is > really the only way around it that I know of. > > At Twitter we have a deployment of mesos, and our long term solution is > going to be running all of our pig jobs on mesos, in the short term by > deploying daemons that run pig jobs as local processes. > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > Both. Think of it as an app server handling all of these requests. > > > > Sent from my iPhone > > > > On Jan 23, 2013, at 9:09 PM, Jonathan Coveney <[EMAIL PROTECTED]> > wrote: > > > > > Thousands of requests, or thousands of Pig jobs? Or both? > > > > > > > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > > > >> Did not want to have several threads launched for this. We might have > > >> thousands of requests coming in, and the app is doing a lot more than > > only > > >> Pig. > > >> > > >> On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney <[EMAIL PROTECTED] > > >>> wrote: > > >> > > >>> start a separate Process which runs Pig? > > >>> > > >>> > > >>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > >>> > > >>>> Hey guys, > > >>>> > > >>>> I am trying to do the following: > > >>>> > > >>>> 1. Launch a pig job asynchronously via Java program > > >>>> 2. Get a notification once the job is complete (something similar > to > > >>>> Hadoop callback with a servlet) > > >>>> > > >>>> I looked at PigServer.executeBatch() and it seems to be waiting > until > > >> job > > >>>> completes.This is not what I would like my app to do. > > >>>> > > >>>> Any ideas? > > >>>> > > >>>> Thanks, > > >>>> > > >>> > > >> > > > -- -Praveen +
Praveen M 2013-01-24, 15:02
-
Re: Run a job asyncRamakrishna Nalam 2013-01-25, 03:57
Hi Jonathan,
Pardon if it's a naive question, but Interesting that you say Pig is not multithreaded. We're using Pig 0.10.0, and looking at the code, it seems to do the right things to handle multi threaded requests (ThreadLocal for ScriptState for eg). Would be great if you can point out to the kind of issues there could be. Regards, Rama. On Thu, Jan 24, 2013 at 8:32 PM, Praveen M <[EMAIL PROTECTED]> wrote: > Are there any plans on making the pigserver multi-threaded? > > since there is "PigProcessNotificationListener" to subscribe for async > callbacks when the pig job completes, is there any real need to keep the > pig job submitting thread waiting until the job completes? > > Is this just a shortcoming today or are there more concrete reasons against > providing with a pigserver which can submit to the cluster in mapreduce > mode async? > > Thanks, > Praveen > > > > On Wed, Jan 23, 2013 at 10:56 PM, Jonathan Coveney <[EMAIL PROTECTED] > >wrote: > > > I think whatever way you slice it, handling thousands of pig jobs > > asynchronously is going to be a bear. I mean, this is essentially what > the > > job tracker does, albeit with a lot less information. > > > > Either way, Pig is not multi-threaded so having more than one instance of > > Pig in the same JVM is going to start causing problems (which is why, I > > imagine, there is no async way to call Pig). So multiple processes is > > really the only way around it that I know of. > > > > At Twitter we have a deployment of mesos, and our long term solution is > > going to be running all of our pig jobs on mesos, in the short term by > > deploying daemons that run pig jobs as local processes. > > > > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > > > Both. Think of it as an app server handling all of these requests. > > > > > > Sent from my iPhone > > > > > > On Jan 23, 2013, at 9:09 PM, Jonathan Coveney <[EMAIL PROTECTED]> > > wrote: > > > > > > > Thousands of requests, or thousands of Pig jobs? Or both? > > > > > > > > > > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > > > > > >> Did not want to have several threads launched for this. We might > have > > > >> thousands of requests coming in, and the app is doing a lot more > than > > > only > > > >> Pig. > > > >> > > > >> On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney < > [EMAIL PROTECTED] > > > >>> wrote: > > > >> > > > >>> start a separate Process which runs Pig? > > > >>> > > > >>> > > > >>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > >>> > > > >>>> Hey guys, > > > >>>> > > > >>>> I am trying to do the following: > > > >>>> > > > >>>> 1. Launch a pig job asynchronously via Java program > > > >>>> 2. Get a notification once the job is complete (something > similar > > to > > > >>>> Hadoop callback with a servlet) > > > >>>> > > > >>>> I looked at PigServer.executeBatch() and it seems to be waiting > > until > > > >> job > > > >>>> completes.This is not what I would like my app to do. > > > >>>> > > > >>>> Any ideas? > > > >>>> > > > >>>> Thanks, > > > >>>> > > > >>> > > > >> > > > > > > > > > -- > -Praveen > +
Ramakrishna Nalam 2013-01-25, 03:57
-
Re: Run a job asyncJonathan Coveney 2013-01-25, 04:39
Well, when I say that Pig is not multi-threaded, what I mean is that if you
have multiple threads that run a query via PigServer, there is a great chance of the internals clashing because of the use of static variables within Pig. Pig itself, when running a single query, is multi-threaded. It's just not "multi-threaded" in the sense that multiple instances can safely be run in the same JVM. 2013/1/24 Ramakrishna Nalam <[EMAIL PROTECTED]> > Hi Jonathan, > > Pardon if it's a naive question, but Interesting that you say Pig is not > multithreaded. > We're using Pig 0.10.0, and looking at the code, it seems to do the right > things to handle multi threaded requests (ThreadLocal for ScriptState for > eg). > > Would be great if you can point out to the kind of issues there could be. > > > Regards, > Rama. > > > > On Thu, Jan 24, 2013 at 8:32 PM, Praveen M <[EMAIL PROTECTED]> > wrote: > > > Are there any plans on making the pigserver multi-threaded? > > > > since there is "PigProcessNotificationListener" to subscribe for async > > callbacks when the pig job completes, is there any real need to keep the > > pig job submitting thread waiting until the job completes? > > > > Is this just a shortcoming today or are there more concrete reasons > against > > providing with a pigserver which can submit to the cluster in mapreduce > > mode async? > > > > Thanks, > > Praveen > > > > > > > > On Wed, Jan 23, 2013 at 10:56 PM, Jonathan Coveney <[EMAIL PROTECTED] > > >wrote: > > > > > I think whatever way you slice it, handling thousands of pig jobs > > > asynchronously is going to be a bear. I mean, this is essentially what > > the > > > job tracker does, albeit with a lot less information. > > > > > > Either way, Pig is not multi-threaded so having more than one instance > of > > > Pig in the same JVM is going to start causing problems (which is why, I > > > imagine, there is no async way to call Pig). So multiple processes is > > > really the only way around it that I know of. > > > > > > At Twitter we have a deployment of mesos, and our long term solution is > > > going to be running all of our pig jobs on mesos, in the short term by > > > deploying daemons that run pig jobs as local processes. > > > > > > > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > > > > > Both. Think of it as an app server handling all of these requests. > > > > > > > > Sent from my iPhone > > > > > > > > On Jan 23, 2013, at 9:09 PM, Jonathan Coveney <[EMAIL PROTECTED]> > > > wrote: > > > > > > > > > Thousands of requests, or thousands of Pig jobs? Or both? > > > > > > > > > > > > > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > > > > > > > >> Did not want to have several threads launched for this. We might > > have > > > > >> thousands of requests coming in, and the app is doing a lot more > > than > > > > only > > > > >> Pig. > > > > >> > > > > >> On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney < > > [EMAIL PROTECTED] > > > > >>> wrote: > > > > >> > > > > >>> start a separate Process which runs Pig? > > > > >>> > > > > >>> > > > > >>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > > >>> > > > > >>>> Hey guys, > > > > >>>> > > > > >>>> I am trying to do the following: > > > > >>>> > > > > >>>> 1. Launch a pig job asynchronously via Java program > > > > >>>> 2. Get a notification once the job is complete (something > > similar > > > to > > > > >>>> Hadoop callback with a servlet) > > > > >>>> > > > > >>>> I looked at PigServer.executeBatch() and it seems to be waiting > > > until > > > > >> job > > > > >>>> completes.This is not what I would like my app to do. > > > > >>>> > > > > >>>> Any ideas? > > > > >>>> > > > > >>>> Thanks, > > > > >>>> > > > > >>> > > > > >> > > > > > > > > > > > > > > > -- > > -Praveen > > > +
Jonathan Coveney 2013-01-25, 04:39
-
Re: Run a job asyncRamakrishna Nalam 2013-01-25, 07:18
That clarifies it for me, thanks a lot.
Regards, Rama. On Fri, Jan 25, 2013 at 10:09 AM, Jonathan Coveney <[EMAIL PROTECTED]>wrote: > Well, when I say that Pig is not multi-threaded, what I mean is that if you > have multiple threads that run a query via PigServer, there is a great > chance of the internals clashing because of the use of static variables > within Pig. Pig itself, when running a single query, is multi-threaded. > It's just not "multi-threaded" in the sense that multiple instances can > safely be run in the same JVM. > > > 2013/1/24 Ramakrishna Nalam <[EMAIL PROTECTED]> > > > Hi Jonathan, > > > > Pardon if it's a naive question, but Interesting that you say Pig is not > > multithreaded. > > We're using Pig 0.10.0, and looking at the code, it seems to do the right > > things to handle multi threaded requests (ThreadLocal for ScriptState for > > eg). > > > > Would be great if you can point out to the kind of issues there could be. > > > > > > Regards, > > Rama. > > > > > > > > On Thu, Jan 24, 2013 at 8:32 PM, Praveen M <[EMAIL PROTECTED]> > > wrote: > > > > > Are there any plans on making the pigserver multi-threaded? > > > > > > since there is "PigProcessNotificationListener" to subscribe for async > > > callbacks when the pig job completes, is there any real need to keep > the > > > pig job submitting thread waiting until the job completes? > > > > > > Is this just a shortcoming today or are there more concrete reasons > > against > > > providing with a pigserver which can submit to the cluster in mapreduce > > > mode async? > > > > > > Thanks, > > > Praveen > > > > > > > > > > > > On Wed, Jan 23, 2013 at 10:56 PM, Jonathan Coveney <[EMAIL PROTECTED] > > > >wrote: > > > > > > > I think whatever way you slice it, handling thousands of pig jobs > > > > asynchronously is going to be a bear. I mean, this is essentially > what > > > the > > > > job tracker does, albeit with a lot less information. > > > > > > > > Either way, Pig is not multi-threaded so having more than one > instance > > of > > > > Pig in the same JVM is going to start causing problems (which is > why, I > > > > imagine, there is no async way to call Pig). So multiple processes is > > > > really the only way around it that I know of. > > > > > > > > At Twitter we have a deployment of mesos, and our long term solution > is > > > > going to be running all of our pig jobs on mesos, in the short term > by > > > > deploying daemons that run pig jobs as local processes. > > > > > > > > > > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > > > > > > > Both. Think of it as an app server handling all of these requests. > > > > > > > > > > Sent from my iPhone > > > > > > > > > > On Jan 23, 2013, at 9:09 PM, Jonathan Coveney <[EMAIL PROTECTED]> > > > > wrote: > > > > > > > > > > > Thousands of requests, or thousands of Pig jobs? Or both? > > > > > > > > > > > > > > > > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > > > > > > > > > >> Did not want to have several threads launched for this. We might > > > have > > > > > >> thousands of requests coming in, and the app is doing a lot more > > > than > > > > > only > > > > > >> Pig. > > > > > >> > > > > > >> On Wed, Jan 23, 2013 at 5:44 PM, Jonathan Coveney < > > > [EMAIL PROTECTED] > > > > > >>> wrote: > > > > > >> > > > > > >>> start a separate Process which runs Pig? > > > > > >>> > > > > > >>> > > > > > >>> 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > > > >>> > > > > > >>>> Hey guys, > > > > > >>>> > > > > > >>>> I am trying to do the following: > > > > > >>>> > > > > > >>>> 1. Launch a pig job asynchronously via Java program > > > > > >>>> 2. Get a notification once the job is complete (something > > > similar > > > > to > > > > > >>>> Hadoop callback with a servlet) > > > > > >>>> > > > > > >>>> I looked at PigServer.executeBatch() and it seems to be > waiting > > > > until > > > > > >> job > > > > > >>>> completes.This is not what I would like my app to do. +
Ramakrishna Nalam 2013-01-25, 07:18
-
Re: Run a job asyncCheolsoo Park 2013-01-25, 17:08
>> if you have multiple threads that run a query via PigServer, there is a
great chance of the internals clashing because of the use of static variable within Pig. Recently, I spent some time on this, and what I found is that the Pig front-end is quite thread-safe. Here is how I tested it: 1) Wrote a PigUnit test that runs in MR mode. 2) Executed test cases concurrently in 4 threads using a JUnit extension called temps-fugit: http://tempusfugitlibrary.org/documentation/junit/parallel/ After fixing PIG-3096, I was able to successfully run Pig queries in parallel. It's important to note that only the front-end needs to be thread-safe since that's what is executed in parallel. I arbitrarily selected queries from e2e test cases, so they are probably not complex enough to mimic real-world examples. Nevertheless, my test program ran without a problem for few days. I couldn't continue my experiment because I was pulled out into something else. However, I think that making the front-end thread-safe is an achievable goal. Thanks, Cheolsoo On Thu, Jan 24, 2013 at 11:18 PM, Ramakrishna Nalam <[EMAIL PROTECTED]>wrote: > That clarifies it for me, thanks a lot. > > Regards, > Rama. > > > On Fri, Jan 25, 2013 at 10:09 AM, Jonathan Coveney <[EMAIL PROTECTED] > >wrote: > > > Well, when I say that Pig is not multi-threaded, what I mean is that if > you > > have multiple threads that run a query via PigServer, there is a great > > chance of the internals clashing because of the use of static variables > > within Pig. Pig itself, when running a single query, is multi-threaded. > > It's just not "multi-threaded" in the sense that multiple instances can > > safely be run in the same JVM. > > > > > > 2013/1/24 Ramakrishna Nalam <[EMAIL PROTECTED]> > > > > > Hi Jonathan, > > > > > > Pardon if it's a naive question, but Interesting that you say Pig is > not > > > multithreaded. > > > We're using Pig 0.10.0, and looking at the code, it seems to do the > right > > > things to handle multi threaded requests (ThreadLocal for ScriptState > for > > > eg). > > > > > > Would be great if you can point out to the kind of issues there could > be. > > > > > > > > > Regards, > > > Rama. > > > > > > > > > > > > On Thu, Jan 24, 2013 at 8:32 PM, Praveen M <[EMAIL PROTECTED]> > > > wrote: > > > > > > > Are there any plans on making the pigserver multi-threaded? > > > > > > > > since there is "PigProcessNotificationListener" to subscribe for > async > > > > callbacks when the pig job completes, is there any real need to keep > > the > > > > pig job submitting thread waiting until the job completes? > > > > > > > > Is this just a shortcoming today or are there more concrete reasons > > > against > > > > providing with a pigserver which can submit to the cluster in > mapreduce > > > > mode async? > > > > > > > > Thanks, > > > > Praveen > > > > > > > > > > > > > > > > On Wed, Jan 23, 2013 at 10:56 PM, Jonathan Coveney < > [EMAIL PROTECTED] > > > > >wrote: > > > > > > > > > I think whatever way you slice it, handling thousands of pig jobs > > > > > asynchronously is going to be a bear. I mean, this is essentially > > what > > > > the > > > > > job tracker does, albeit with a lot less information. > > > > > > > > > > Either way, Pig is not multi-threaded so having more than one > > instance > > > of > > > > > Pig in the same JVM is going to start causing problems (which is > > why, I > > > > > imagine, there is no async way to call Pig). So multiple processes > is > > > > > really the only way around it that I know of. > > > > > > > > > > At Twitter we have a deployment of mesos, and our long term > solution > > is > > > > > going to be running all of our pig jobs on mesos, in the short term > > by > > > > > deploying daemons that run pig jobs as local processes. > > > > > > > > > > > > > > > 2013/1/23 Prashant Kommireddi <[EMAIL PROTECTED]> > > > > > > > > > > > Both. Think of it as an app server handling all of these > requests. > > > > > > > +
Cheolsoo Park 2013-01-25, 17:08
-
Re: Run a job asyncJonathan Coveney 2013-01-25, 17:37
user to bcc, +dev
Cheolsoo, Can you make a JIRA for this? I can imagine a slightly heavier test suite, but I like where you started. If it's not far off, then I think it'll be a win to make it thread safe. But we need to make sure to test the most advanced features...UDF's (esp the same name but different udf in different invocations), scripting UDFs (same thing), and so on. 2013/1/25 Cheolsoo Park <[EMAIL PROTECTED]> > >> if you have multiple threads that run a query via PigServer, there is a > great chance of the internals clashing because of the use of static > variable within Pig. > > Recently, I spent some time on this, and what I found is that the Pig > front-end is quite thread-safe. Here is how I tested it: > > 1) Wrote a PigUnit test that runs in MR mode. > 2) Executed test cases concurrently in 4 threads using a JUnit extension > called temps-fugit: > http://tempusfugitlibrary.org/documentation/junit/parallel/ > > After fixing PIG-3096, I was able to successfully run Pig queries in > parallel. It's important to note that only the front-end needs to be > thread-safe since that's what is executed in parallel. > > I arbitrarily selected queries from e2e test cases, so they are probably > not complex enough to mimic real-world examples. Nevertheless, my test > program ran without a problem for few days. I couldn't continue my > experiment because I was pulled out into something else. However, I think > that making the front-end thread-safe is an achievable goal. > > Thanks, > Cheolsoo > > > > On Thu, Jan 24, 2013 at 11:18 PM, Ramakrishna Nalam > <[EMAIL PROTECTED]>wrote: > > > That clarifies it for me, thanks a lot. > > > > Regards, > > Rama. > > > > > > On Fri, Jan 25, 2013 at 10:09 AM, Jonathan Coveney <[EMAIL PROTECTED] > > >wrote: > > > > > Well, when I say that Pig is not multi-threaded, what I mean is that if > > you > > > have multiple threads that run a query via PigServer, there is a great > > > chance of the internals clashing because of the use of static variables > > > within Pig. Pig itself, when running a single query, is multi-threaded. > > > It's just not "multi-threaded" in the sense that multiple instances can > > > safely be run in the same JVM. > > > > > > > > > 2013/1/24 Ramakrishna Nalam <[EMAIL PROTECTED]> > > > > > > > Hi Jonathan, > > > > > > > > Pardon if it's a naive question, but Interesting that you say Pig is > > not > > > > multithreaded. > > > > We're using Pig 0.10.0, and looking at the code, it seems to do the > > right > > > > things to handle multi threaded requests (ThreadLocal for ScriptState > > for > > > > eg). > > > > > > > > Would be great if you can point out to the kind of issues there could > > be. > > > > > > > > > > > > Regards, > > > > Rama. > > > > > > > > > > > > > > > > On Thu, Jan 24, 2013 at 8:32 PM, Praveen M <[EMAIL PROTECTED]> > > > > wrote: > > > > > > > > > Are there any plans on making the pigserver multi-threaded? > > > > > > > > > > since there is "PigProcessNotificationListener" to subscribe for > > async > > > > > callbacks when the pig job completes, is there any real need to > keep > > > the > > > > > pig job submitting thread waiting until the job completes? > > > > > > > > > > Is this just a shortcoming today or are there more concrete reasons > > > > against > > > > > providing with a pigserver which can submit to the cluster in > > mapreduce > > > > > mode async? > > > > > > > > > > Thanks, > > > > > Praveen > > > > > > > > > > > > > > > > > > > > On Wed, Jan 23, 2013 at 10:56 PM, Jonathan Coveney < > > [EMAIL PROTECTED] > > > > > >wrote: > > > > > > > > > > > I think whatever way you slice it, handling thousands of pig jobs > > > > > > asynchronously is going to be a bear. I mean, this is essentially > > > what > > > > > the > > > > > > job tracker does, albeit with a lot less information. > > > > > > > > > > > > Either way, Pig is not multi-threaded so having more than one > > > instance > > > > of > > > > > > Pig in the same JVM is going to start causing problems (which is +
Jonathan Coveney 2013-01-25, 17:37
-
Re: Run a job asyncRohini Palaniswamy 2013-01-26, 00:23
Jon,
Those are good areas to check. Few things I have seen regarding those are 1) JythonScriptEngine -PythonInterpreter is static and is not suitable for multiple runs if the script names are same (hit this issue in PIG-2433 unit tests). 2) QueryParserDriver - There is a static cache with macro name to macro file mapping. So same macro names with different file locations will cause problems. 3) FileLocalizer.relativeRoot - If single cluster no issues. Just need to reinitialize if supporting Multiple clusters. Regards, Rohini On Fri, Jan 25, 2013 at 9:37 AM, Jonathan Coveney <[EMAIL PROTECTED]>wrote: > user to bcc, +dev > > Cheolsoo, > > Can you make a JIRA for this? I can imagine a slightly heavier test suite, > but I like where you started. If it's not far off, then I think it'll be a > win to make it thread safe. But we need to make sure to test the most > advanced features...UDF's (esp the same name but different udf in different > invocations), scripting UDFs (same thing), and so on. > > > 2013/1/25 Cheolsoo Park <[EMAIL PROTECTED]> > > > >> if you have multiple threads that run a query via PigServer, there is > a > > great chance of the internals clashing because of the use of static > > variable within Pig. > > > > Recently, I spent some time on this, and what I found is that the Pig > > front-end is quite thread-safe. Here is how I tested it: > > > > 1) Wrote a PigUnit test that runs in MR mode. > > 2) Executed test cases concurrently in 4 threads using a JUnit extension > > called temps-fugit: > > http://tempusfugitlibrary.org/documentation/junit/parallel/ > > > > After fixing PIG-3096, I was able to successfully run Pig queries in > > parallel. It's important to note that only the front-end needs to be > > thread-safe since that's what is executed in parallel. > > > > I arbitrarily selected queries from e2e test cases, so they are probably > > not complex enough to mimic real-world examples. Nevertheless, my test > > program ran without a problem for few days. I couldn't continue my > > experiment because I was pulled out into something else. However, I think > > that making the front-end thread-safe is an achievable goal. > > > > Thanks, > > Cheolsoo > > > > > > > > On Thu, Jan 24, 2013 at 11:18 PM, Ramakrishna Nalam > > <[EMAIL PROTECTED]>wrote: > > > > > That clarifies it for me, thanks a lot. > > > > > > Regards, > > > Rama. > > > > > > > > > On Fri, Jan 25, 2013 at 10:09 AM, Jonathan Coveney <[EMAIL PROTECTED] > > > >wrote: > > > > > > > Well, when I say that Pig is not multi-threaded, what I mean is that > if > > > you > > > > have multiple threads that run a query via PigServer, there is a > great > > > > chance of the internals clashing because of the use of static > variables > > > > within Pig. Pig itself, when running a single query, is > multi-threaded. > > > > It's just not "multi-threaded" in the sense that multiple instances > can > > > > safely be run in the same JVM. > > > > > > > > > > > > 2013/1/24 Ramakrishna Nalam <[EMAIL PROTECTED]> > > > > > > > > > Hi Jonathan, > > > > > > > > > > Pardon if it's a naive question, but Interesting that you say Pig > is > > > not > > > > > multithreaded. > > > > > We're using Pig 0.10.0, and looking at the code, it seems to do the > > > right > > > > > things to handle multi threaded requests (ThreadLocal for > ScriptState > > > for > > > > > eg). > > > > > > > > > > Would be great if you can point out to the kind of issues there > could > > > be. > > > > > > > > > > > > > > > Regards, > > > > > Rama. > > > > > > > > > > > > > > > > > > > > On Thu, Jan 24, 2013 at 8:32 PM, Praveen M < > [EMAIL PROTECTED]> > > > > > wrote: > > > > > > > > > > > Are there any plans on making the pigserver multi-threaded? > > > > > > > > > > > > since there is "PigProcessNotificationListener" to subscribe for > > > async > > > > > > callbacks when the pig job completes, is there any real need to > > keep > > > > the > > > > > > pig job submitting thread waiting until the job completes? +
Rohini Palaniswamy 2013-01-26, 00:23
-
Re: Run a job asyncCheolsoo Park 2013-01-26, 02:55
Thank you for the suggestions. I will file a jira and add our discussion
there. On Fri, Jan 25, 2013 at 4:23 PM, Rohini Palaniswamy <[EMAIL PROTECTED] > wrote: > Jon, > Those are good areas to check. Few things I have seen regarding those are > > 1) JythonScriptEngine -PythonInterpreter is static and is not suitable for > multiple runs if the script names are same (hit this issue in PIG-2433 unit > tests). > 2) QueryParserDriver - There is a static cache with macro name to macro > file mapping. So same macro names with different file locations will cause > problems. > 3) FileLocalizer.relativeRoot - If single cluster no issues. Just need to > reinitialize if supporting Multiple clusters. > > Regards, > Rohini > > > On Fri, Jan 25, 2013 at 9:37 AM, Jonathan Coveney <[EMAIL PROTECTED] > >wrote: > > > user to bcc, +dev > > > > Cheolsoo, > > > > Can you make a JIRA for this? I can imagine a slightly heavier test > suite, > > but I like where you started. If it's not far off, then I think it'll be > a > > win to make it thread safe. But we need to make sure to test the most > > advanced features...UDF's (esp the same name but different udf in > different > > invocations), scripting UDFs (same thing), and so on. > > > > > > 2013/1/25 Cheolsoo Park <[EMAIL PROTECTED]> > > > > > >> if you have multiple threads that run a query via PigServer, there > is > > a > > > great chance of the internals clashing because of the use of static > > > variable within Pig. > > > > > > Recently, I spent some time on this, and what I found is that the Pig > > > front-end is quite thread-safe. Here is how I tested it: > > > > > > 1) Wrote a PigUnit test that runs in MR mode. > > > 2) Executed test cases concurrently in 4 threads using a JUnit > extension > > > called temps-fugit: > > > http://tempusfugitlibrary.org/documentation/junit/parallel/ > > > > > > After fixing PIG-3096, I was able to successfully run Pig queries in > > > parallel. It's important to note that only the front-end needs to be > > > thread-safe since that's what is executed in parallel. > > > > > > I arbitrarily selected queries from e2e test cases, so they are > probably > > > not complex enough to mimic real-world examples. Nevertheless, my test > > > program ran without a problem for few days. I couldn't continue my > > > experiment because I was pulled out into something else. However, I > think > > > that making the front-end thread-safe is an achievable goal. > > > > > > Thanks, > > > Cheolsoo > > > > > > > > > > > > On Thu, Jan 24, 2013 at 11:18 PM, Ramakrishna Nalam > > > <[EMAIL PROTECTED]>wrote: > > > > > > > That clarifies it for me, thanks a lot. > > > > > > > > Regards, > > > > Rama. > > > > > > > > > > > > On Fri, Jan 25, 2013 at 10:09 AM, Jonathan Coveney < > [EMAIL PROTECTED] > > > > >wrote: > > > > > > > > > Well, when I say that Pig is not multi-threaded, what I mean is > that > > if > > > > you > > > > > have multiple threads that run a query via PigServer, there is a > > great > > > > > chance of the internals clashing because of the use of static > > variables > > > > > within Pig. Pig itself, when running a single query, is > > multi-threaded. > > > > > It's just not "multi-threaded" in the sense that multiple instances > > can > > > > > safely be run in the same JVM. > > > > > > > > > > > > > > > 2013/1/24 Ramakrishna Nalam <[EMAIL PROTECTED]> > > > > > > > > > > > Hi Jonathan, > > > > > > > > > > > > Pardon if it's a naive question, but Interesting that you say Pig > > is > > > > not > > > > > > multithreaded. > > > > > > We're using Pig 0.10.0, and looking at the code, it seems to do > the > > > > right > > > > > > things to handle multi threaded requests (ThreadLocal for > > ScriptState > > > > for > > > > > > eg). > > > > > > > > > > > > Would be great if you can point out to the kind of issues there > > could > > > > be. > > > > > > > > > > > > > > > > > > Regards, > > > > > > Rama. > > > > > > > > > > > > > > > > > > > > > > > > On Thu, Jan 24, 2013 at 8:32 PM, Praveen M < +
Cheolsoo Park 2013-01-26, 02:55
-
Re: Run a job asyncBill Graham 2013-01-24, 01:35
You can create in instance of PigProcessNotificationListener that calls
back when the job finishes. On Wed, Jan 23, 2013 at 4:48 PM, Prashant Kommireddi <[EMAIL PROTECTED]>wrote: > Hey guys, > > I am trying to do the following: > > 1. Launch a pig job asynchronously via Java program > 2. Get a notification once the job is complete (something similar to > Hadoop callback with a servlet) > > I looked at PigServer.executeBatch() and it seems to be waiting until job > completes.This is not what I would like my app to do. > > Any ideas? > > Thanks, > -- *Note that I'm no longer using my Yahoo! email address. Please email me at [EMAIL PROTECTED] going forward.* +
Bill Graham 2013-01-24, 01:35
|