|
View:
New views
11 Messages
—
Rating Filter:
Alert me
|
|
|
Job SchedulerI am looking for an open source job scheduler to
manager our scheduled jobs. Ideally, it would be a web app that would
allow you to upload a pom or jar files and set the class and / or method to
execute. Anyone have a suggestion for this? I have also thought about doing this using tests (or a
plugin) in Maven and our continuous integration server, Continuum.
Has anybody done anything like this?
_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members |
|||||||||||
|
|
Re: Job SchedulerHello Kerry,
I use Quartz Scheduler. It is available from Open Symphony under an Apache 2 License. http://www.opensymphony.com/quartz/ I have used Job Server in the past http://www.grandlogic.com/content/html_docs/products-jobserver.shtml John On Mon, May 11, 2009 at 10:46 AM, Kerry Wilson <kerry@...> wrote:
-- John Yeary -- http://javaevangelist.blogspot.com "Far better it is to dare might things, to win glorious triumphs, even though checkered by failure, than to take rank with those poor spirits who neither enjoy much nor suffer much, because they live in the grey twilight that knows not victory nor defeat." -- Theodore Roosevelt _______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members |
|||||||||||
|
|
Re: Job SchedulerWhat kind of jobs?
Quartz from Open Symphony (http://www.opensymphony.com/quartz/) is the de-facto standard for scheduling jobs in Java. On May 11, 2009, at 10:46 AM, Kerry Wilson wrote:
_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members |
|||||||||||
|
|
Re: Job SchedulerHave you looked at Quartz? http://www.opensymphony.com/quartz/ Andrew Goodspeed
I am looking for an open source job scheduler to manager our scheduled jobs. Ideally, it would be a web app that would allow you to upload a pom or jar files and set the class and / or method to execute. Anyone have a suggestion for this? I have also thought about doing this using tests (or a plugin) in Maven and our continuous integration server, Continuum. Has anybody done anything like this? kerry r wilson http://www.allthingswilson.com_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members _______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members |
|||||||||||
|
|
Re: Job SchedulerHow about Quartz http://www.opensymphony.com/quartz/ ?
Quartz is a full-featured, open source job scheduling system that can be integrated with, or used along side virtually any J2EE or J2SE application - from the smallest stand-alone application to the largest e-commerce system. Quartz can be used to create simple or complex schedules for executing tens, hundreds, or even tens-of-thousands of jobs; jobs whose tasks are defined as standard Java components or EJBs. The Quartz Scheduler includes many enterprise-class features, such as JTA transactions and clustering. Quartz is freely usable, licensed under the Apache 2.0 license. - Quadir On Mon, May 11, 2009 at 10:46 AM, Kerry Wilson <kerry@...> wrote:
-- ************************************************************************************ 3.185 Everyone shall taste death. And only on the Day of Resurrection shall you be paid your wages in full. And whoever is removed away from the Fire and admitted to Paradise, he indeed is successful. The life of this world is only the enjoyment of deception. 3.186 You shall certainly be tried and tested in your wealth and properties and in your personal selves, and you shall certainly hear much that will grieve you from those who received the Scripture before you (Jews and Christians) and from those who ascribe partners to Allâh, but if you persevere patiently, and become Al-Muttaqûn (the pious) then verily, that will be a determining factor in all affairs, and that is from the great matters, [which you must hold on with all your efforts]. -- Qur'an Chapter 3 Verses 185-186 ************************************************************************************ _______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members |
|||||||||||
|
|
Re: Job SchedulerHello,
I have heard good things about Quartz before but never used it. How good is it at enterprise level? Thanks and Regards, VENKATA RAM MAMIDENNA Senior Consultant CSC GBS I p: +1 781 290 1614 I p: +1 770 677 3324 | c: +1 404 642 4616 I vmamidenna@... I www.csc.com This is a PRIVATE message. If you are not the intended recipient, please delete without copying and kindly advise us by e-mail of the mistake in delivery. NOTE: Regardless of content, this e-mail shall not operate to bind CSC to any order or other contract unless pursuant to explicit written agreement or government initiative expressly permitting the use of e-mail for such purpose. John Yeary <johnyeary@gmail. com> To ajug-members@... 05/11/2009 11:02 cc AM Subject Re: [ajug-members] Job Scheduler Please respond to ajug-members@ajug .org Hello Kerry, I use Quartz Scheduler. It is available from Open Symphony under an Apache 2 License. http://www.opensymphony.com/quartz/ I have used Job Server in the past http://www.grandlogic.com/content/html_docs/products-jobserver.shtml John On Mon, May 11, 2009 at 10:46 AM, Kerry Wilson <kerry@...> wrote: I am looking for an open source job scheduler to manager our scheduled jobs. Ideally, it would be a web app that would allow you to upload a pom or jar files and set the class and / or method to execute. Anyone have a suggestion for this? I have also thought about doing this using tests (or a plugin) in Maven and our continuous integration server, Continuum. Has anybody done anything like this? kerry r wilson http://www.allthingswilson.com _______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members -- John Yeary -- http://javaevangelist.blogspot.com "Far better it is to dare might things, to win glorious triumphs, even though checkered by failure, than to take rank with those poor spirits who neither enjoy much nor suffer much, because they live in the grey twilight that knows not victory nor defeat." -- Theodore Roosevelt _______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members _______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members |
|||||||||||
|
|
Re: Job SchedulerThanks, I use Quartz currently. The
ideal solution would use Quartz for scheduling. I am looking for something
'higher level' before I roll my own.
kw
From: AGoodspeed@...
Sent: Monday, May 11, 2009 10:24 AM
To: ajug-members@...
Subject: Re: [ajug-members] Job Scheduler Have you looked at Quartz? http://www.opensymphony.com/quartz/ Andrew Goodspeed
I am looking for an open source job scheduler to manager our scheduled jobs. Ideally, it would be a web app that would allow you to upload a pom or jar files and set the class and / or method to execute. Anyone have a suggestion for this? I have also thought about doing this using tests (or a plugin) in Maven and our continuous integration server, Continuum. Has anybody done anything like this? kerry r wilson http://www.allthingswilson.com_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members
_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members _______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members |
|||||||||||
|
|
Re: Job Scheduler> I have heard good things about Quartz before but never used it. How
> good is > it at enterprise level? Superb. -Jeremy > > Thanks and Regards, > > VENKATA RAM MAMIDENNA > Senior Consultant > CSC > > GBS I p: +1 781 290 1614 I p: +1 770 677 3324 | c: +1 404 642 > 4616 I > vmamidenna@... I www.csc.com > > This is a PRIVATE message. If you are not the intended recipient, > please > delete without copying and kindly advise us by e-mail of the mistake > in > delivery. > NOTE: Regardless of content, this e-mail shall not operate to bind > CSC to > any order or other contract unless pursuant to explicit written > agreement > or government initiative expressly permitting the use of e-mail for > such > purpose. > > > > John Yeary > <johnyeary@gmail. > > com> To > ajug-members@... > 05/11/2009 > 11:02 cc > AM > > Subject > Re: [ajug-members] Job Scheduler > Please respond to > ajug-members@ajug > .org > > > > > > > > Hello Kerry, > > I use Quartz Scheduler. It is available from Open Symphony under an > Apache > 2 License. http://www.opensymphony.com/quartz/ > > I have used Job Server in the past > http://www.grandlogic.com/content/html_docs/products-jobserver.shtml > > John > > On Mon, May 11, 2009 at 10:46 AM, Kerry Wilson <kerry@... > > > wrote: > I am looking for an open source job scheduler to manager our > scheduled > jobs. Ideally, it would be a web app that would allow you to > upload a > pom or jar files and set the class and / or method to execute. > Anyone > have a suggestion for this? I have also thought about doing this > using > tests (or a plugin) in Maven and our continuous integration server, > Continuum. Has anybody done anything like this? > > kerry r wilson > http://www.allthingswilson.com > > _______________________________________________ > ajug-members mailing list > ajug-members@... > http://www.ajug.org/mailman/listinfo/ajug-members > > > > > -- > John Yeary > -- > http://javaevangelist.blogspot.com > > "Far better it is to dare might things, to win glorious triumphs, even > though checkered by failure, > > than to take rank with those poor spirits who neither enjoy much nor > suffer > much, because they live in the grey > > twilight that knows not victory nor defeat." -- Theodore Roosevelt > _______________________________________________ > ajug-members mailing list > ajug-members@... > http://www.ajug.org/mailman/listinfo/ajug-members > > > > _______________________________________________ > ajug-members mailing list > ajug-members@... > http://www.ajug.org/mailman/listinfo/ajug-members _______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members |
|||||||||||
|
|
Re: Job SchedulerIs anyone using Hudson? I just checked it out and on the surface it looks
like what I need. https://hudson.dev.java.net kw -------------------------------------------------- From: "Venkata Mamidenna" <vmamidenna@...> Sent: Monday, May 11, 2009 11:03 AM To: <ajug-members@...> Cc: <ajug-members@...> Subject: Re: [ajug-members] Job Scheduler > Hello, > > I have heard good things about Quartz before but never used it. How good > is > it at enterprise level? > > Thanks and Regards, > > VENKATA RAM MAMIDENNA > Senior Consultant > CSC > > GBS I p: +1 781 290 1614 I p: +1 770 677 3324 | c: +1 404 642 4616 I > vmamidenna@... I www.csc.com > > This is a PRIVATE message. If you are not the intended recipient, please > delete without copying and kindly advise us by e-mail of the mistake in > delivery. > NOTE: Regardless of content, this e-mail shall not operate to bind CSC to > any order or other contract unless pursuant to explicit written agreement > or government initiative expressly permitting the use of e-mail for such > purpose. > > > > John Yeary > <johnyeary@gmail. > com> To > ajug-members@... > 05/11/2009 11:02 cc > AM > Subject > Re: [ajug-members] Job Scheduler > Please respond to > ajug-members@ajug > .org > > > > > > > > Hello Kerry, > > I use Quartz Scheduler. It is available from Open Symphony under an Apache > 2 License. http://www.opensymphony.com/quartz/ > > I have used Job Server in the past > http://www.grandlogic.com/content/html_docs/products-jobserver.shtml > > John > > On Mon, May 11, 2009 at 10:46 AM, Kerry Wilson <kerry@...> > wrote: > I am looking for an open source job scheduler to manager our scheduled > jobs. Ideally, it would be a web app that would allow you to upload a > pom or jar files and set the class and / or method to execute. Anyone > have a suggestion for this? I have also thought about doing this using > tests (or a plugin) in Maven and our continuous integration server, > Continuum. Has anybody done anything like this? > > kerry r wilson > http://www.allthingswilson.com > > _______________________________________________ > ajug-members mailing list > ajug-members@... > http://www.ajug.org/mailman/listinfo/ajug-members > > > > > -- > John Yeary > -- > http://javaevangelist.blogspot.com > > "Far better it is to dare might things, to win glorious triumphs, even > though checkered by failure, > > than to take rank with those poor spirits who neither enjoy much nor > suffer > much, because they live in the grey > > twilight that knows not victory nor defeat." -- Theodore Roosevelt > _______________________________________________ > ajug-members mailing list > ajug-members@... > http://www.ajug.org/mailman/listinfo/ajug-members > > > > _______________________________________________ > ajug-members mailing list > ajug-members@... > http://www.ajug.org/mailman/listinfo/ajug-members _______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members |
|||||||||||
|
|
Re: Job SchedulerHudson is great. We have used it as our CI tool for a couple of years now.
On Mon, May 11, 2009 at 3:57 PM, Kerry Wilson <kerry@...> wrote: > Is anyone using Hudson? I just checked it out and on the surface it looks > like what I need. > > https://hudson.dev.java.net > > kw -- Björn Gustafsson _______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members |
|||||||||||
|
|
Re: Job SchedulerRamesh > From: kerry@... > To: ajug-members@... > Date: Mon, 11 May 2009 14:57:05 -0500 > Subject: Re: [ajug-members] Job Scheduler > > Is anyone using Hudson? I just checked it out and on the surface it looks > like what I need. > > https://hudson.dev.java.net > > kw > > -------------------------------------------------- > From: "Venkata Mamidenna" <vmamidenna@...> > Sent: Monday, May 11, 2009 11:03 AM > To: <ajug-members@...> > Cc: <ajug-members@...> > Subject: Re: [ajug-members] Job Scheduler > > > Hello, > > > > I have heard good things about Quartz before but never used it. How good > > is > > it at enterprise level? > > > > Thanks and Regards, > > > > VENKATA RAM MAMIDENNA > > Senior Consultant > > CSC > > > > GBS I p: +1 781 290 1614 I p: +1 770 677 3324 | c: +1 404 642 4616 I > > vmamidenna@... I www.csc.com > > > > This is a PRIVATE message. If you are not the intended recipient, please > > delete without copying and kindly advise us by e-mail of the mistake in > > delivery. > > NOTE: Regardless of content, this e-mail shall not operate to bind CSC to > > any order or other contract unless pursuant to explicit written agreement > > or government initiative expressly permitting the use of e-mail for such > > purpose. > > > > > > > > John Yeary > > <johnyeary@gmail. > > com> To > > ajug-members@... > > 05/11/2009 11:02 cc > > AM > > Subject > > Re: [ajug-members] Job Scheduler > > Please respond to > > ajug-members@ajug > > .org > > > > > > > > > > > > > > > > Hello Kerry, > > > > I use Quartz Scheduler. It is available from Open Symphony under an Apache > > 2 License. http://www.opensymphony.com/quartz/ > > > > I have used Job Server in the past > > http://www.grandlogic.com/content/html_docs/products-jobserver.shtml > > > > John > > > > On Mon, May 11, 2009 at 10:46 AM, Kerry Wilson <kerry@...> > > wrote: > > I am looking for an open source job scheduler to manager our scheduled > > jobs. Ideally, it would be a web app that would allow you to upload a > > pom or jar files and set the class and / or method to execute. Anyone > > have a suggestion for this? I have also thought about doing this using > > tests (or a plugin) in Maven and our continuous integration server, > > Continuum. Has anybody done anything like this? > > > > kerry r wilson > > http://www.allthingswilson.com > > > > _______________________________________________ > > ajug-members mailing list > > ajug-members@... > > http://www.ajug.org/mailman/listinfo/ajug-members > > > > > > > > > > -- > > John Yeary > > -- > > http://javaevangelist.blogspot.com > > > > "Far better it is to dare might things, to win glorious triumphs, even > > though checkered by failure, > > > > than to take rank with those poor spirits who neither enjoy much nor > > suffer > > much, because they live in the grey > > > > twilight that knows not victory nor defeat." -- Theodore Roosevelt > > _______________________________________________ > > ajug-members mailing list > > ajug-members@... > > http://www.ajug.org/mailman/listinfo/ajug-members > > > > > > > > _______________________________________________ > > ajug-members mailing list > > ajug-members@... > > http://www.ajug.org/mailman/listinfo/ajug-members > > > _______________________________________________ > ajug-members mailing list > ajug-members@... > http://www.ajug.org/mailman/listinfo/ajug-members MSN Battles We pitch one stalwart against the other and give you the power. Who will you vote for? Share photos while you chat with Windows Live Messenger. _______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members |
| Free embeddable forum powered by Nabble | Forum Help |