Re: Bamboo vs. Jenkins for Cayenne, other projects

2016-09-09 Thread Aristedes Maniatis
On 10/09/2016 12:00am, rzeig...@asuragen.com wrote: > Sorry for the slightly off-topic post, but the combined wisdom and experience > of this group is substantial. > > Cayenne is using Apache’s JIRA + Apache’s Jenkins installs despite the > availability of Bamboo infrastructure at Apache. My

Re: Bamboo vs. Jenkins for Cayenne, other projects

2016-09-09 Thread Andrus Adamchik
And I didn't know that Apache provides Bamboo :) I use Bamboo at work. It has marginally better UI than Jenkins. I am fine with either. Andrus > On Sep 9, 2016, at 6:15 PM, John Huss wrote: > > Personally I have never heard of Bamboo. I'm guessing we are still using >

Bamboo vs. Jenkins for Cayenne, other projects

2016-09-09 Thread rzeigler
Sorry for the slightly off-topic post, but the combined wisdom and experience of this group is substantial. Cayenne is using Apache’s JIRA + Apache’s Jenkins installs despite the availability of Bamboo infrastructure at Apache. My question: what (if any) are the reasons Cayenne has stayed with

Re: Bamboo vs. Jenkins for Cayenne, other projects

2016-09-09 Thread John Huss
Personally I have never heard of Bamboo. I'm guessing we are still using Jenkins because change takes effort, and Jenkins works. On Fri, Sep 9, 2016 at 10:12 AM wrote: > Sorry for the slightly off-topic post, but the combined wisdom and > experience of this group is

Re: Monitoring long running queries

2016-09-09 Thread John Huss
Also, this doesn't really work for SQLTemplate queries - it will print the log and the time taken, but the SQL is just "null". Not sure if it works for EJBQL queries. On Fri, Sep 9, 2016 at 9:06 AM John Huss wrote: > You can set the property in the module when creating

Re: Monitoring long running queries

2016-09-09 Thread Ken Anderson
We would like that too! Ken Anderson CTO Amphora, Inc. Mobile: +1 914 262 8540 www.amphorainc.com On 9/9/16, 9:42 AM, "Hugi Thordarson" wrote: Hi all, in EOF we could make the application log a warning if a DB query was taking

Re: Monitoring long running queries

2016-09-09 Thread John Huss
You can set the property in the module when creating your ServerRuntime: new Module() { @Override public void configure(Binder binder) { MapBuilder props = binder.bindMap(Constants.PROPERTIES_MAP); props.put(Constants.JDBC_MAX_QUEUE_WAIT_TIME, 8000); // 8 seconds } } This only will report

Monitoring long running queries

2016-09-09 Thread Hugi Thordarson
Hi all, in EOF we could make the application log a warning if a DB query was taking more than a specified amount of time to complete. Is there any location where I could plug into Cayenne to do something similar? We’re deploying a reporting system for a large-ish database and I know some