Bug 971360
| Summary: | EAP fails to start with transactions configured to be run with JDBCObject store | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Application Platform 6 | Reporter: | Ondrej Chaloupka <ochaloup> |
| Component: | Transaction Manager | Assignee: | Carlo de Wolf <cdewolf> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 6.1.0 | CC: | istudens, myarboro, rsvoboda, tom.jenkinson |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2013-07-30 09:49:25 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
I have a feeling this should be assigned to Stefano? Just to also point out that the feature is currently listed as EAP62_1050 for EAP 6.2. I am not sure about the tech preview state you mention sorry? Yes, I suppose that this should be assigned to Stefano. Just I wasn't sure who will be responsible for the issue in time when I was creating the bz. As Carlo is coordinator I thought being good idea to put the bz on him. Carlo can I reassigned the bz to Stefano? The remark about the tech preview concerns the EAP 6.1.0 as the feature was available there but not tested. It was mentioned in doc for customers not being confused. But as was found out now the feature was not usable at all. *** This bug has been marked as a duplicate of bug 971358 *** Removing flags |
This bug is reported as upstream WILD FLY jira. The functionality of JDBC Object store for transaction manager was added to EAP 6.1 as technical preview. This bugzilla works for tracking the backport of this functionality. I'm putting this bugzilla to Carlo because he should be responsible for backport. This bugzilla could be later canceled when it will be decided that the fix won't be put to EAP 6.1.1. In case that you configure transactions subsystem for running with JDBCObject store the app server fails to start because of (it seems so) a circular dependency. You can expect the exception like: ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 52) JBAS014612: Operation ("add") failed - address: ([("subsystem" => "transactions")]): org.jboss.msc.service.CircularDependencyException: Container jboss-as has a circular dependency: [service jboss.txn.ArjunaObjectStoreEnvironment, service jboss.txn.ArjunaRecoveryManager, service jboss.connector.transactionintegration, service jboss.cached-connection-manager, service jboss.data-source.java:jboss/datasources/JDBCObjectDS] My assumption came from the configuration similar to this: <datasource jta="false" jndi-name="java:jboss/datasources/JDBCObjectDS" pool-name="JDBCObjectDS" enabled="true" use-ccm="false"> <connection-url>jdbc:postgresql://postgresserver.com:5432/user1</connection-url> <driver-class>org.postgresql.Driver</driver-class> <driver>postgresql-9.2-1002.jdbc4.jar</driver> <security> <user-name>user1</user-name> <password>user1</password> </security> </datasource> and the transaction config looks like this <jdbc-store datasource-jndi-name="java:jboss/datasources/JDBCObjectDS" />