[hibernate-dev] Cassandra, ORM , Hibernate search, OGM

2012-03-16 Thread Теодор Димов
Hello, i was wondering is it OGM stable enough and will it support cassandra soon ? Saw on github that you are working on it.. thanks. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] Cassandra, ORM , Hibernate search, OGM

2012-03-16 Thread Emmanuel Bernard
Depends what you call soon and if you want to contribute :) But generally, I don't see it ready before a month or two at least. On 16 mars 2012, at 12:40, Теодор Димов wrote: > Hello, i was wondering is it OGM stable enough and will it support > cassandra soon ? Saw on github that you are working

[hibernate-dev] [HV] Release plan for a version compatible with Bean Validation 1.1.0.Alpha1

2012-03-16 Thread Emmanuel Bernard
Hi Hardy, Gunnar and all, I am thinking that we should get the ball rolling on an implementation of Hibernate Validator that supports Bean Validation 1.1.0.Alpha1 so that we can gather feedback. When do you think we can get an HV Alpha supporting the changes? What about a month? Emmanuel _

Re: [hibernate-dev] JtaPlaform classes as internal?

2012-03-16 Thread Steve Ebersole
In case anyone is interested: https://hibernate.onjira.com/browse/HHH-6823 https://hibernate.onjira.com/browse/HHH-5951 On Thu 15 Mar 2012 03:21:56 PM CDT, Steve Ebersole wrote: > I like #2 as well. There is already a JIRA for that. In addition there > is also a JIRA for adding some auto-detect

Re: [hibernate-dev] JtaPlaform classes as internal?

2012-03-16 Thread Emmanuel Bernard
Yes that covers it all. By the way these are perfect issues for somebody wanting to step up but not knowning the Hibernate code base. This is quite isolated. On 16 mars 2012, at 13:56, Steve Ebersole wrote: > In case anyone is interested: > > https://hibernate.onjira.com/browse/HHH-6823 > https

Re: [hibernate-dev] [HV] Release plan for a version compatible with Bean Validation 1.1.0.Alpha1

2012-03-16 Thread Hardy Ferentschik
Hi, On Mar 16, 2012, at 1:29 PM, Emmanuel Bernard wrote: > I am thinking that we should get the ball rolling on an implementation of > Hibernate Validator that supports Bean Validation 1.1.0.Alpha1 so that we can > gather feedback. the biggest problem is that we really want HV 4.3 being comple

[hibernate-dev] Sessions sharing Connections

2012-03-16 Thread Steve Ebersole
Reference https://hibernate.onjira.com/browse/HHH-7020 and https://hibernate.onjira.com/browse/HHH-7090... Essentially, having 2 sessions share a JDBC connection is currently broken. Adam, Lukasz and I discussed this on the mailing list a few months ago and Shawn has been helping me investigat

Re: [hibernate-dev] JtaPlaform classes as internal?

2012-03-16 Thread Steve Ebersole
Good point. I added that flag to the JIRAs On Fri 16 Mar 2012 08:06:53 AM CDT, Emmanuel Bernard wrote: > Yes that covers it all. > By the way these are perfect issues for somebody wanting to step up but not > knowning the Hibernate code base. This is quite isolated. > > On 16 mars 2012, at 13:56

Re: [hibernate-dev] [HV] Release plan for a version compatible with Bean Validation 1.1.0.Alpha1

2012-03-16 Thread Emmanuel Bernard
On 16 mars 2012, at 14:17, Hardy Ferentschik wrote: > We can also try to get a HV 4.3 out asap just focusing on what's really > required. Once it is out we start with HV 5 directly. I'm for that option personally. ___ hibernate-dev mailing list hiber

Re: [hibernate-dev] JtaPlaform classes as internal?

2012-03-16 Thread Scott Marlow
I was just thinking about this related eg discussion http://java.net/projects/jpa-spec/lists/jsr338-experts/archive/2011-10/message/3 from last fall and wonder if the default could be something like: if attempt to use jndi naming and lookup TransactionSynchronizationRegistry works, use the TSR

Re: [hibernate-dev] JtaPlaform classes as internal?

2012-03-16 Thread Steve Ebersole
Unfortunately JtaPlatform covers more than just sync registration... On Fri 16 Mar 2012 09:43:45 AM CDT, Scott Marlow wrote: > I was just thinking about this related eg discussion > http://java.net/projects/jpa-spec/lists/jsr338-experts/archive/2011-10/message/3 > > from last fall and wonder i

Re: [hibernate-dev] JtaPlaform classes as internal?

2012-03-16 Thread Scott Marlow
Yes, but I wonder if we could squash down what we require to what http://docs.oracle.com/javaee/5/api/javax/transaction/TransactionSynchronizationRegistry.html offers. We aren't the only persistence provider still using the Transaction Manager directly either. I still like my original proposa

Re: [hibernate-dev] [infinispan-dev] [jboss-as7-dev] AS7-4007 missing Infinispan dependency for clustered JPA second level cache

2012-03-16 Thread Galder Zamarreño
On Mar 14, 2012, at 7:52 PM, Scott Marlow wrote: > On 03/14/2012 02:13 PM, Manik Surtani wrote: >> >> On 6 Mar 2012, at 14:45, Scott Marlow wrote: >> - Medium term: Have a way to pass in marshalling configurations per cache manager and per-cache (or an abstraction of

Re: [hibernate-dev] [HV] Release plan for a version compatible with Bean Validation 1.1.0.Alpha1

2012-03-16 Thread Gunnar Morling
Am 16.03.2012 15:08 schrieb "Emmanuel Bernard" : > > > On 16 mars 2012, at 14:17, Hardy Ferentschik wrote: > > > We can also try to get a HV 4.3 out asap just focusing on what's really required. Once it is out we start with HV 5 directly. > > I'm for that option personally. > +1 That's also my pr

Re: [hibernate-dev] JtaPlaform classes as internal?

2012-03-16 Thread Steve Ebersole
Well we could with some caveats. 1) If using a TSR-backed JtaPlatform no features leveraging suspend/resume would be available; this includes (limited to?) org.hibernate.engine.transaction.internal.jta.JtaIsolationDelegate 2) Infinispan has its notion of a "TransactionManagerLookup", and hibe

Re: [hibernate-dev] Sessions sharing Connections

2012-03-16 Thread Shawn Clowater
I lean towards the proper fix as I think in its current state the connection() and transactionContext() are not usable at all (especially with the connection leaks). In a perfect world it would have been caught prior to 4 release but that horse has left the barn. The SPIs like you said are new to

Re: [hibernate-dev] Sessions sharing Connections

2012-03-16 Thread Adam Warski
> We could get away with them sharing a JdbcCoordinator as well, but that > opens up (slight) potential concurrency issues if the 2 sessions are > used concurrently. The question really is about the use cases. Are connections supposed to be used concurrently anyway? I think they are usually