Tagged Questions
The distributed-transactions tag has no wiki summary.
12
votes
5answers
656 views
How do two-phase commits prevent last-second failure?
I am studying how two-phase commit works across a distributed transaction. It is my understanding that in the last part of the phase the transaction coordinator asks each node whether it is ready to ...
8
votes
1answer
456 views
Recommended practice for stopping transactions escalating to distributed when using transactionscope
Using the TransactionScope object to set up an implicit transaction that doesn't need to be passed across function calls is great! However, if a connection is opened whilst another is already open, ...
7
votes
3answers
103 views
Transaction handling multi-tier application
Is there a possibility having transactions across multiple systems?
For exeample:
layer 1 - exposes web services (Deployed to weblogic)
layer 2 - .NET front end (Deployed to IIS)
Can we have ...
6
votes
1answer
675 views
Delivery of JMS message before the transaction is committed
I have a very simple scenario involving a database and a JMS in an application server (Glassfish). The scenario is dead simple:
1. an EJB inserts a row in the database and sends a message.
2. when ...
5
votes
2answers
79 views
how to implement Long running distributed transaction in j2ee
I want to move records from one database to another which are on different machines. the records should be removed from first database and inserted to second database atomically.
can we use xa ?
i ...
4
votes
1answer
253 views
distributed transactions and queues, ruby, erlang, scala
I have a problem that involves several machines, message queues, and transactions. So for example a user clicks on a web page, the click sends a message to another machine which adds a payment to the ...
4
votes
2answers
204 views
Distributed transactions between MySQL and MSSQL
I've tried for nearly a week now to get distributed transactions working. I've some procedures on MSSQL which try to select data from MySQL. My need is to do this in one(!) transaction. At the time ...
4
votes
1answer
487 views
Connection using enlist=false does not close after being manually enlisted in distributed transaction
I have a distributed transaction context using ServiceDomain. Inside it, I open an SQL connection with connection string specifying Enlist=false, so that it is not automatically enlisted in the ...
4
votes
3answers
907 views
NServiceBus: Aren't MSMQ Transactions BAD?
I am learning about NServiceBus and MSMQ. I was told that transactional queues in MSMQ are BAD and using them is really bad for performance. Does anyone know why? I am guessing this comes from the ...
4
votes
1answer
828 views
Reliable test for MSDTC promoting transactions to distributed?
How can I reliably check that MSDTC has promoted a transaction to a distributed transaction?
This is when using TransactionScope in .net.
Currently a co-worker is testing this by shutting down the ...
4
votes
1answer
627 views
Security risk of enabling MSDTC
MSDTC is disabled by default (windows 2003 - onwards) and I want to have it enabled for an application I'm developing that requires distributed transactions from .Net C#.
I don't believe there are ...
3
votes
3answers
138 views
Deadlocks causing 'Server failed to resume the transaction' with NHibernate and distributed transactions
We are having an issue when using NHibernate with distributed transactions.
Consider the following snippet:
//
// There is already an ambient distributed transaction
//
using(var scope = new ...
3
votes
1answer
151 views
managed vs jta session scope in Hibernate
I was going through 'Java Persistence with Hibernate' book and got stuck at Page#494. We do extending a conversation by setting hibernate.current_session_context_class to managed; does that mean now I ...
3
votes
3answers
704 views
NHibernate 3.0: TransactionScope and Auto-Flushing
In NHibernate 3.0, FlushMode.Auto does not work when running under an ambient transaction only (that is, without starting an NHibernate transaction). Should it?
using (TransactionScope scope = new ...
3
votes
2answers
195 views
Oracle global_names DELETE problem
I'm using a database link to execute a DELETE statement on another DB, but the DB link name doesn't conform to global naming, and this requirement cannot change.
Also I have global_names set to false, ...
3
votes
2answers
358 views
How does the banking transactions work “under the hood” - possibly in detail
I'm wondering how does the banking transactions work. It is very hard to find some at least acceptable explanation. I dont mean some basic distributed transaction algorithms for not that serious ...
3
votes
3answers
1k views
TransactionScope: Avoiding Distributed Transactions
I have a parent object (part of a DAL) that contains, amongst other things, a collection (List<t>) of child objects.
When I'm saving the object back to the DB, I enter/update the parent, and ...
3
votes
2answers
600 views
Spring Distributed Transaction Involving RMI calls possible?
Background
I have Spring Client application that provisions a service to two servers using RMI. In the the client I save an entity to the database (easy) and make rmi calls to two servers with ...
3
votes
2answers
354 views
SOA and distributed transactions
When do distributed transactions make sense in a service-oriented architecture?
2
votes
1answer
89 views
Two phase commit question
Got the question from a friend.
"I believe most of people know what 2PC (two-phase commit protocol) is and how to use it in Java or most of modern languages. Basically, it is used to make sure the ...
2
votes
3answers
185 views
how to debug an issue when the cause is not known
We are facing the following exception in weblogic server v10.3.2.0. We are using JRockit JRE 6.0.
We have around 6-7 XA datasources involved in every server request. We face this exception when ...
2
votes
1answer
98 views
Is MySql capable of distributed transactions (off the box) like sql-server's **Begin Distributed Transaction**?
Is MySql capable of distributed transactions?
Like (from a sql-server background) Begin Distributed Transaction ?
2
votes
2answers
197 views
Accessing transaction status in container managed beans
I have a @Stateless EJB using container managed transaction. Is there a way to access the "status" of javax.transaction.UserTransaction? That is, calling UserTransaction.getStatus() inside the bean ...
2
votes
2answers
485 views
Java: XA Transaction propagation within many threads
How can I use a transaction manager (such as Bitronix, JBoss TS or Atomikos) in a Java SE (not JEE or Spring) to support the following use case:
Let's assume we have the following class:
public ...
2
votes
1answer
188 views
Delay / Lag between Commit and select with Distributed Transactions when two connections are enlisted to the transaction in Oracle with ODAC
We have our application calling to two Oracle databases using two connections (which are kept open through out the application). For certain functionality, we use distributed transactions. We have ...
2
votes
5answers
226 views
What is a “distributed transaction”?
The Wikipedia article for Distributed transaction isn't very helpful.
Can you give a high-level description of what a distributed transaction is?
Also, can you give an example of why an application ...
2
votes
2answers
925 views
If I access UserTransaction does this mean that I use 2 phase commit or XA?
UserTransaction ut=lookup....
ut.beginTransaction();
saveToFooDB();
statelessEjb.transactionSupportedMethod(); //saves something to the Foo DB
saveToFooDB();
ut.commit();
If i was doing the above ...
2
votes
2answers
341 views
How do i program a “Distributed Transaction”?
In the past all my db needs were solved by sqlite. Now designing a db that can potentially be large i looked into "Distributed Transaction". How do i program that? I found some results explaining what ...
1
vote
1answer
67 views
Transaction Management (Two Phase commit protocol) in Java EE
I have two EJB Applications: A (deployed on Glassfish 2.1) and B (deployed on GlassFish 3.1). Both applications can communicate through Web Services.
I start a transaction in application A and ...
1
vote
1answer
37 views
WCF Distributed Transactions at serveral servers and one Database
There are two servers are running some services on WCF.
All services are working with a shared database.
All services use transport net.tcp with allowed transaction flows
Problem appeared after we ...
1
vote
2answers
89 views
Distributed Ehcache working using JTA
I am trying to do some bench-marking of Distributed transaction memory using Terracotta Ehcache (Open Source). I am having some problem understanding its working with JTA. In code I have found that ...
1
vote
0answers
69 views
Who to handle transaction management with remote account system based on http post requests/responses?
I have an application that uses its own database and also works with remote accounting system through http post requests/responses base on XML.
I can post debit and credit http post requests.
When ...
1
vote
2answers
718 views
Unable to begin a distributed transaction
i'm trying to run SQL against a linked server, but i get the errors.
BEGIN DISTRIBUTED TRANSACTION
SELECT TOP 1 * FROM Sessions
OLE DB provider "SQLNCLI" for linked server "CMSLIVE" returned ...
1
vote
1answer
78 views
performance overhead of distributed transactions
(When testing an implementation of distributed transactions using Atomikos, I noticed an large overhead (a transaction that took 30 milliseconds without using XA took 160 with XA)
It looks like most ...
1
vote
1answer
98 views
override transaction timeout at a statement level
My ibatis configuration uses an XA datasource and JTA transaction manager.
Is it possible to override the transaction timeout at a statement level.
I tried the options suggested here: Specify IBatis ...
1
vote
1answer
352 views
Does ObjectContext.Connection.BeginTransaction() use MSDTC?
I want confirm if the Transaction that Entity Framework's ObjectContext.Connection.BeginTransaction() method returns uses the support of MSDTC (Microsoft Distributed Transaction Coordinator) or not?
...
1
vote
2answers
116 views
TransactionScope and SQL Server Compact
SQL Server Compact doesn't support distributed transactions. So if there are more than one connection inside TransactionScope - the exception is thrown. Is there any way to setup ADO.NET provider to ...
1
vote
2answers
56 views
WCF service writes log only if client receives results
I'm working on a WCF service to help our new code interoperate with a legacy system. The process goes like this:
Client calls the service with a request for the legacy system.
Service writes the ...
1
vote
1answer
129 views
Distributed Transaction across two EJB server
I was reading an article about 2-PC and distributed transaction in EJB server. It says:
A 2-PC allows transactions to be managed across different servers and
resources (e.g., databases and ...
1
vote
1answer
81 views
Is it possible to use OleDbTransaction to save data in two different databases?
Using C#, is it possible to use OleDbTransaction to execute a insert in two different database vendors, such as Microsoft SQL Server and Oracle?
1
vote
2answers
196 views
Multiple simultaneous connections or connections with different connection strings inside the same transaction are not currently supported
I am Using a transaction scope. Within that transactionscope, i have a mysql database connection. However, I will need to open up a new [yet another] MySQL connection withing the previous transaction ...
1
vote
1answer
127 views
Idioms or algorithms for distributed transactions?
Imagine you have 2 entities on different systems, and need to perform some sort of transaction that alters one or both of them based on information associated with one or both of them, and require ...
1
vote
1answer
92 views
Find the flaws! Performing a long task reliably with the task queue
I'm making a gradebook on google app engine. I keep track of each student's grade per grading period. The grading periods can overlap. Since I may display hundreds of these grades at a time, I ...
1
vote
1answer
210 views
Can I prevent WCF from rolling back the transaction when a fault is thrown?
Consider the following WCF service which participates in a distributed transaction. The normal behavior of WCF is to roll back the transaction if any fault occurs. Is there any way to override that ...
1
vote
1answer
204 views
Are distributed database transactions guaranteed to commit/rollback?
I have application code that inserts a record in a local database and a record in a remote database (via Oracle Database Link). When I commit this distributed transaction is it guaranteed that both ...
1
vote
1answer
244 views
How ACID is the two-phase commit protocol?
I came across a situation where I started doubting whether the two-phase commit protocol really guarantees the ACID properties, especially the 'A' part of it.
Let's look at a theoretical distributed ...
1
vote
2answers
73 views
What is the “correct” way to call transactionally safe from one EAR file to another using Spring?
I have two spring applications A and B, each within an individual EAR file. Now I want to call from A to B and vice versa, maybe even A -> B -> A or more.
The calls have to be transactionally safe.
...
1
vote
1answer
70 views
How to Detect a Transaction Abort in a ServicedComponent?
I'm trying to create a System.EnterpriseServices.ServicedComponent in order to participate in a distributed transaction. My main method looks something like this:
public void DoSomething()
{
try
...
1
vote
2answers
509 views
NHibernate - Distributed transactions and providing your own connection result in exception
NHibernate is throwning an exception when particpating in a distirbuted transaction and you've opened a session by specifying your own connection object.
Unhandled Exception: ...
1
vote
1answer
111 views
Can I use JTA over different EARs which are deployed to different servers?
I'm looking into JTA as I need distributed transactions (across JPA, JMS and EHCache).
I'm trying to understand whether JTA can supply an additional functionality which I'm considering.
If I have 3 ...