Hello.
We had a Karaf feature that uses the camel-quartz feature either for direct
quartz endpoint or for periodic file reading. No problem at all...
We have added a new feature with a single quartz endpoint, and it seems
that when this feature is installed, or its bundle stopped or started, the
11, 2022 at 11:50 AM Santiago Acosta
> wrote:
> >
> > Thanks for the info Karen, but I am sad to say we had to move on to use
> > something else (I think VertX which also has integrations with Camel).
> I'll
> > keep this close to the chest when the opportunity t
Acosta
wrote:
>
> Thanks for the info Karen, but I am sad to say we had to move on to use
> something else (I think VertX which also has integrations with Camel). I'll
> keep this close to the chest when the opportunity to use Camel+Quartz comes
> around again.
>
>
Thanks for the info Karen, but I am sad to say we had to move on to use
something else (I think VertX which also has integrations with Camel). I'll
keep this close to the chest when the opportunity to use Camel+Quartz comes
around again.
I'll keep an eye on https://issues.apache.org/j
time of the trigger for your job is set to the time
when the trigger is created, not when the Quartz scheduler is actually
started.
Based on your logs and the Camel Quartz code, the trigger is created
between the following 2 log messages, so between 19:54:47,514 and 47,545.
> ...:47,514 I
;QUARTZ")
.process(processorName) // trivial, creates arrays with 2-3
random Int
.marshal()
.json(JsonLibrary.Jackson)
.to("mock:end")
Am I missing some specific Camel-Quartz configuration that would cause
these misfires?
Hi Team,
I am facing the issue where quartz doesn't start up. Is there anything
wrong with my below config?
I have also requirement where i have to suspend the job at specific time
and resume it again.
I have configured the policy using quartz as described in the link
https://camel.apache.org/m
Hi
Can you maybe post more details, such as Camel version, and snippets
of your route setup etc. And maybe a bit more about what error happens
that you see that exscapes the thread pool, and maybe point to which
thread pool exactly. This may incline us to help faster and help look
into this.
On Tu
Another Question on top of Camel Threadpools. Is there a way to monitor the
routes? This should help to keep a tab on the routes and get a notification
when anything happens. We have added onException block on Exception.class. By
looking at the thread dump, I can see that the pool is alive. But
Hi
I’m having a strange issue where the route is not polling and moving the files
at all. Want to understand the Quartz Scheduler’s Thread pool behavior. If I
understand correctly when a route is created with a schedule, it created a
thread pool with default number of thread (10). BY any chance
every 3 seconds,
trying to understand how it works, tried lot of options and fed up with
this, Can some one please help me, My requirement is it should move the
files once and wait for 5 minutes and them move again.
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-Quartz
and include him in the next release of
> camel-quartz ?
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://camel.465427.n5.nabble.com/camel-quartz-failed-camel-
> route-creation-when-database-is-unreach
Hi,
Given the best practice is not to change the APIs, can you raise a JIRA that
contain this solution and include him in the next release of camel-quartz ?
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-failed-camel-route-creation-when-database-is-unreachable
Thanks Claus,
Can you raise a JIRA that contain this solution ?
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-failed-camel-route-creation-when-database-is-unreachable-tp5789552p5789852.html
Sent from the Camel - Users mailing list archive at Nabble.com.
> }
> }
> }
>
> if (LOG.isInfoEnabled()) {
> LOG.info("Job {} (triggerType={}, jobClass={}) is
> scheduled. Next fire
> date is {}", new Object[] {
.nabble.com/camel-quartz-failed-camel-route-creation-when-database-is-unreachable-tp5789552p5789827.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Hi Everyone,
Can you validate this proposal
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-failed-camel-route-creation-when-database-is-unreachable-tp5789552p5789822.html
Sent from the Camel - Users mailing list archive at Nabble.com.
number.incrementAndGet();
}
jobAdded.set(true);
}
*You confirm this proposal?*
CustomQuartzComponent.java
<http://camel.465427.n5.nabble.com/file/n5789552/CustomQuartzComponent.java>
CustomQuartzEndpoint.java
<http://camel.46542
Hello. I’m using camel quartz2 in cluster mode. Route starts from default
quartz endpoint like :
in advance,
Arghya
--
View this message in context:
http://camel.465427.n5.nabble.com/StartUp-issue-in-camel-quartz-tp5783314.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Hi,
My application consist of a few osgi modules and is running on Karaf
environment. Each of those modules uses a camel-quartz component so for each
module is created a quartz's scheduler. In effect a lot of threads is
created becouse each scheduler consist of thread pool (default 10 th
Hi,
I'm trying to evaluate whether Camel Quartz meets our requirements so
this may be an obvious question.
So my aim is to have Camel Quartz read the job schedule from the JobStore,
in a cluster. Then have a web client write the schedules/triggers to the
JobStore. So have the creation of
m"
À: users@camel.apache.org
Envoyé: Mercredi 12 Août 2015 23:11:41
Objet: Re: Camel quartz memory leak
I have resolved the issue.. It is an issue with quartz component. Quartz was
being shutdown but the webapp didn't wait for quartz to finish before it
shutdown so Tomcat decided t
null;
}
}
Note the boolean argument to shutdown is the vital part. If you remove that
true to call the no-arg version or set it to false, your webapp won't wait
for quartz to shudown before it shuts down.
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-quartz-m
Thanks for your replies. I am able to manage it by using mbeans in jmx.
Programatically getting mbeanserverconnection and stopping the cron route.
--
View this message in context:
http://camel.465427.n5.nabble.com/Is-there-any-way-to-unschedule-the-Camel-quartz-job-tp5767916p5770635.html
Sent
When you stop the route, the schedule won’t be shutdown.
But if you stop the camel context, the schedule will be shutdown if there is no
CamelJob there.
Are there more than one camel-quartz endpoints in your camel route?
--
Willem Jiang
Red Hat, Inc.
Web: http://www.redhat.com
Blog: http
I am using camel 2.15.1. Stopping the route using JMX, againg restarting it
using JMX. Also the same getting same error if I restart entire camel
context.
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-quartz-memory-leak-tp5768063p5768275.html
Sent from the Camel
Hi
What version of Camel do you use? And how do you restart the route?
On Wed, Jun 10, 2015 at 11:33 AM, Akram wrote:
> I am using camel quartz to run a job every minute. But whenever i restart the
> quartz route I get the message:
>
> appears to have started a thread named [MySche
I am using camel quartz to run a job every minute. But whenever i restart the
quartz route I get the message:
appears to have started a thread named [MyScheduler_Worker-1] but has failed
to stop it.This is very likely to create a memory leak. Stack trace of
thread: java.lang.Object.wait(Native
_NAME).toString()));
> }else{
> exchange.getOut().setBody(ROUTE_NAME+" is already in stopped
> state");
>
> }
> }/
>
> Quartz route is not stopping and Scheduled job is still running.
>
>
>
> --
> View this message in conte
E_NAME).toString()));
}else{
exchange.getOut().setBody(ROUTE_NAME+" is already in stopped
state");
}
}/
Quartz route is not stopping and Scheduled job is still running.
--
View this message in context:
http://camel.465427.n5.nabble.com/Is-there-any-way-to-unschedule-the-C
ge in context:
http://camel.465427.n5.nabble.com/Is-there-any-way-to-unschedule-the-Camel-quartz-job-tp5767916.html
Sent from the Camel - Users mailing list archive at Nabble.com.
uartzcomponent it self and override the method
> createSchedulerFactory.
>
> Kind regards,
>
> Richard
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/How-to-set-decrypted-db-password-for-camel-quartz-component-tp5764559p57646
ed-db-password-for-camel-quartz-component-tp5764559p5764628.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Hi All
I am using camel quartz component with Oracle database to fetch and save
schedulers. My database username and password are in property file and that
property file is set for the component in following way,
The problem: Database password is encrypted and using above
t;/>
>
>
>
> I am using Java configuration rather than XML for my bean declarations.
> Therefore, should I be setting the value of the
> "CamelQuartzCamelContext-camelContext" key to be an autowired instance of my
> CamelContext?
>
> I a
I am using Java configuration rather than XML for my bean declarations.
Therefore, should I be setting the value of the
"CamelQuartzCamelContext-camelContext" key to be an autowired instance of my
CamelContext?
I am new to Camel/Quartz so apologies if my question is diffic
el.465427.n5.nabble.com/Null-Pointer-exception-with-camel-quartz-simple-trigger-fireNow-tp5751692p5751737.html
Sent from the Camel - Users mailing list archive at Nabble.com.
camel.465427.n5.nabble.com/Null-Pointer-exception-with-camel-quartz-simple-trigger-fireNow-tp5751692p5751734.html
Sent from the Camel - Users mailing list archive at Nabble.com.
[Body is null]].
> Caused by: [java.lang.NullPointerException - while trying to invoke the
> method java.lang.Object.toString() of an object returned from
> java.util.Map$Entry.getValue()]|
>
>
> In QuartzEndpoint.java, we see the error being thrown as follows.
>
&g
try.getValue()]|
In QuartzEndpoint.java, we see the error being thrown as follows.
http://grepcode.com/file/repo1.maven.org/maven2/org.apache.camel/camel-quartz/2.12.3/org/apache/camel/component/quartz/QuartzEndpoint.java?av=f
public void onJobExecute(final JobExecutionContext jobExecutionContext)
throws
Hi,
I have a simple route in Java DSL that uses a cron scheduler. The
scheduler fires every minute (for my testing) and I am attempting to
have it call a bean, also in the same bundle, that uses an exported
service that is already deployed.
Here is the blueprint.xml that sets that up:
ity=true
Why it isn't mentioned in document? I found it in source code.
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-Quartz-in-datasource-cluster-when-Jobs-added-with-no-trigger-must-be-durable-tp5744830.html
Sent from the Camel - Users mailing list archive at Nabble.com.
l.DefaultCamelContext.doStartOrResumeRoutes(DefaultCamelContext.java:1758)
>
> at
> org.apache.camel.impl.DefaultCamelContext.doStartCamel(DefaultCamelContext.java:1633)
>
> at
> org.apache.camel.impl.DefaultCamelContext.doStart(DefaultCamelContext.java:1500)
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-quartz-misfires-and-route-not-getting-run-triggered-after-exception-ObjectAlreadyExistsExceptin-tp5739997p5743238.html
Sent from the Camel - Users mailing list archive at Nabble.com.
is message in context:
http://camel.465427.n5.nabble.com/Camel-quartz-misfires-and-route-not-getting-run-triggered-after-exception-ObjectAlreadyExistsExceptin-tp5739997p5743232.html
Sent from the Camel - Users mailing list archive at Nabble.com.
>
> org.quartz.simpl.SimpleThreadPool
>
>
>
> 50
>
>
>
> org.quartz.plugins.history.LoggingTriggerHistoryPlugin
>
>
>
> Trigger {1}.{0} fired job {6}.{5} at {4,date,-MM-dd HH:mm:ss}
>
>
resulting trigger instructioncode
{9}
http://camel.apache.org/schema/blueprint"; >
I'm not completely out of the woods getting this setup, but I'm past the
hurdle of the datasource lookup. Here was my solution (note, replace "xyz"
as needed, and notice that I have "isClustered" set to "false" - this may
not be what you want):
This is inside of ServiceMix/Fuse. Also, it is pa
you run inside OSGi but assign the id of by yourself
(e.g. context4), have you seen the blue-box about this here
http://camel.apache.org/quartz
Babak
lakshmi.prashant wrote
> Hi,
>
> I am running camel quartz (2.10.4) & quartz has been set-up in clustered
> mode. The clocks in
ed" when we get a
> > response from the Web Service call.
> >
> > I could solve this by introducing a new interim status and have the DB
> > update the "unprocessed" records to the new interim status but just
> wanted
> > to check to see if there
uot;processed" when we get a
> response from the Web Service call.
>
> I could solve this by introducing a new interim status and have the DB
> update the "unprocessed" records to the new interim status but just wanted
> to check to see if there was any other way of
the "unprocessed" records to the new interim status but just wanted
to check to see if there was any other way of solving this as I have less
control over the DB
Thanks
Joe
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-Quartz-Query-tp5740206.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Hi, I am running camel quartz (2.10.4) & quartz has been set-up in clustered
mode. The clocks in the cluster are synchronized. I have set-up a trigger
to run every 1 minute, via the camel-quartz end-point in my route. a) it
works fine if quartz is not set up in clustered mode (uses RAMJobs
Hi
As its Quartz which does the DataSource lookup then wonder how it does
the lookup?
Though I assume spring users with quartz may have defined their data
sources as spring .
So maybe you can find some information how to tell quartz to lookup in
spring etc. Then spring-dm in OSGi ought to work wit
Hi,
I have already referred to the datasource (OSGI service) in the beans.xml:
a) And I had already tried referring to the datasource using the reference
id, in quartz properties:
*dataSource*
b) Also, I had earlier tried to refer the da
they are OSGi based.
On Sat, Aug 31, 2013 at 5:20 PM, lakshmi.prashant
wrote:
> Hi,
>
> I am trying to set up quartz in clustered mode to work with camel quartz in
> my camel route.
>
> (i.e) we have deployed the bundle with the camel route having camel quartz
> endpoint, in
Hi,
I am trying to set up quartz in clustered mode to work with camel quartz in
my camel route.
(i.e) we have deployed the bundle with the camel route having camel quartz
endpoint, in all the cluster nodes. But I would like to have my camel route
triggered only in one of the nodes in the cluster
node clustering for
> our camel routes. There was some issues while using the default Quartz
> version, we felt should upgrade to the latest Quartz version.
>
>
>
> -
> Ravishankar Singaram
> Technical Lead
> Amadeus Software Labs
> --
> View this message in con
.
-
Ravishankar Singaram
Technical Lead
Amadeus Software Labs
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-and-support-for-quartz-2-x-tp5712613p5737113.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Unfortunately simply overriding the quartz version will not work.
The quartz class org.quartz.CronTrigger was changed to an interface in v2.x
and the QuartzComponent in camel-quartz is currently instantiating this:
org.apache.camel.component.quartz.QuartzComponent
protected CronTrigger
Thanks,
> Patrick Bray
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/camel-quartz-and-support-for-quartz-
> 2-x-tp5712613p5733444.html Sent from the Camel - Users mailing list
> archive at Nabble.com.
--
Claus Ibsen
-
www.ca
;
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/camel-quartz-and-support-for-quartz-2-x-tp5712613p5733444.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
--
Claus Ibsen
-
www.camelone.org: The open source in
562.page).
Thanks,
Patrick Bray
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-and-support-for-quartz-2-x-tp5712613p5733444.html
Sent from the Camel - Users mailing list archive at Nabble.com.
JBoss 7 does not have Quartz in its modules.
Is this problem related to this issue
https://issues.apache.org/jira/browse/CAMEL-6067?
thanx
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-Quartz-and-JobStore-tp5732853p5733043.html
Sent from the Camel - Users mailing
Hello Chris Wolf,
I don't think it could be a conflict problem since that the properties are
been set correctly
Anyway i'm going to check
Thanks for reply
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-Quartz-and-JobStore-tp5732853p5732982.html
Sent from
t:
http://camel.465427.n5.nabble.com/Camel-Quartz-and-JobStore-tp5732853p5732978.html
Sent from the Camel - Users mailing list archive at Nabble.com.
n Mon, May 20, 2013 at 5:41 PM, mpaivafontes wrote:
> Hello,
>
> I'm trying to use the misfire property from Camel-Quartz persisting the data
> at the database ( SQL server ) with JobStore from Quartz but i'm facing a
> strange problem after the restart of the appli
, will the Quartz component automatically use this profile
> therefore only creating 1 Quartz Consumer worker thread for my route?
>
> Any insights are much appreciated.
>
> Thanks,
> Edwin
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.
.n5.nabble.com/ThreadPoolProfile-for-Camel-Quartz-Component-tp5732976.html
Sent from the Camel - Users mailing list archive at Nabble.com.
context:
http://camel.465427.n5.nabble.com/Camel-Quartz-and-JobStore-tp5732853p5732971.html
Sent from the Camel - Users mailing list archive at Nabble.com.
the app the data get deleted after
each route shutdown.
Any other idea what might be ?
Thanks
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-Quartz-and-JobStore-tp5732853p5732897.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Hi
Can you try setting stateful=true
On Mon, May 20, 2013 at 11:41 PM, mpaivafontes wrote:
> Hello,
>
> I'm trying to use the misfire property from Camel-Quartz persisting the data
> at the database ( SQL server ) with JobStore from Quartz but i'm facing a
> strange
Hello,
I'm trying to use the misfire property from Camel-Quartz persisting the data
at the database ( SQL server ) with JobStore from Quartz but i'm facing a
strange problem after the restart of the application.
For some reason after the restart, all data disappear for some reas
oot
> at level org/quartz/quartz.properties.
>
> Regards,
> Daniel
> Twitter: @dannemano
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Incorrect-info-in-Camel-Quartz-component-tp5732246.html
> Sent from the Camel - Users mailin
rrect-info-in-Camel-Quartz-component-tp5732246.html
Sent from the Camel - Users mailing list archive at Nabble.com.
ectly into the database,
you should use the Quartz API.
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-quartz-component-query-tp5728942p5729086.html
Sent from the Camel - Users mailing list archive at Nabble.com.
with the quartz database store. Can I now add ad-hoc new
> triggers to the database at runtime which will result in the route getting
> executed
>
> Thanks
> Joe
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-quartz-com
store. Can I now add ad-hoc new
triggers to the database at runtime which will result in the route getting
executed
Thanks
Joe
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-quartz-component-query-tp5728942.html
Sent from the Camel - Users mailing list archive at
Camel releases
related to this, hitting the cache limit.
This should be fixed in next releases of Camel.
> Thanx again
>
> []s
>
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-Quartz-Bug-tp5726285p5726392.html
> Sent from the
Thanx Christian. You are right. Set Exchange.MAXIMUM_ENDPOINT_CACHE_SIZE
property before camel1.start() is the key to solve my problem.
This is not a bug after all.
Thanx again
[]s
--
View this message in context:
http://camel.465427.n5.nabble.com/Camel-Quartz-Bug-tp5726285p5726392.html
ggered Jobs: 1200
> Fired Jobs: 200
> camel-quartz-test.txt
> <http://camel.465427.n5.nabble.com/file/n5726337/camel-quartz-test.txt>
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-Quartz-Bug-tp5726285p5726337.html
> Sent from
artz.impl.StdSchedulerFactory - Quartz scheduler
version: 1.8.5/
The worse case of this fail I see starting 1200 jobs: camel-quartz always
fire only 200 of these jobs. Doesn´t matter the thread pool size .
Thanks again.
Nice weekend
--
View this message in context:
http://camel.465427.n5.nabble.c
On Sat, Jan 26, 2013 at 9:37 AM, Claus Ibsen wrote:
> On Fri, Jan 25, 2013 at 8:55 PM, garrydias wrote:
>> ... a little more info:
>>
>> When I start 999 camel quartz routes I have 999 triggers fired .
>>
>> Is 999 the limit. Why? There´s some extra configurat
On Fri, Jan 25, 2013 at 8:55 PM, garrydias wrote:
> ... a little more info:
>
> When I start 999 camel quartz routes I have 999 triggers fired .
>
> Is 999 the limit. Why? There´s some extra configuration of something?
>
Hi
I think you should look at the Quartz Sched
Friends,
I think there´s a bug in camel-quartz component.
When I start 500 camel quartz routes I have 500 triggers fired.
When I start 600 camel quartz routes I have 600 triggers fired.
When I start 700 camel quartz routes I have 700 triggers fired.
When I start 800 camel quartz routes I have
nse from webservice, the camel
> -
> quartz setup is entirely hanging
> 2. In some cases, in camel log the message says the URL has been posted,
> but
> I am not able to see the request on the Jetty server log.
>
> In either of teh scenario, the camel - quartz hangs.
>
>
lli
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992p5716261.html
Sent from the Camel - Users mailing list archive at Nabble.com.
context:
http://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992p5716260.html
Sent from the Camel - Users mailing list archive at Nabble.com.
can you tell me how to stop camel routes please. Its urgent to me.
-
Sudhakar Kaithepalli
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992p5716245.html
Sent from the Camel - Users mailing list archive at Nabble.com.
rigger.repeatCount="+SimpleTrigger.REPEAT_INDEFINITELY)
>
> Thanks and Regards
>
> -
> Sudhakar Kaithepalli
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992p5716240.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992p5716240.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Exchange?
>
>
> -
> Sudhakar Kaithepalli
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992p5716063.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
Hi...
How to get file size, which is there in ftp server using camel Exchange?
-
Sudhakar Kaithepalli
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992p5716063.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Sudhakar Kaithepalli
-
Sudhakar Kaithepalli
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992p5716030.html
Sent from the Camel - Users mailing list archive at Nabble.com.
files then only we can start actual
> task..
> This is my requirement..
>
> Thanks and Regards.
> Sudhakar Kaithepalli
>
>
> -
> Sudhakar Kaithepalli
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/camel-qua
Regards.
Sudhakar Kaithepalli
-
Sudhakar Kaithepalli
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992p5716001.html
Sent from the Camel - Users mailing list archive at Nabble.com.
Hi Pontus ...
ThankQ for ur reply Pontus ..
-
Sudhakar Kaithepalli
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992p5715999.html
Sent from the Camel - Users mailing list archive at Nabble.com.
> Sudhakar K
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
s and volume
means file size...
Thanks
Sudhakar K
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-quartz-schedulers-tp5715992.html
Sent from the Camel - Users mailing list archive at Nabble.com.
/camel-quartz-and-support-for-quartz-2-x-tp5712613p5713518.html
Sent from the Camel - Users mailing list archive at Nabble.com.
1 - 100 of 172 matches
Mail list logo