Questions tagged [atomikos]

A company that offers transaction management for eXtreme Transaction Processing (XTP), Service Oriented Architecture (SOA) and open source environments

From atomikos.com:

Atomikos offers transaction management for eXtreme Transaction Processing (XTP), Service Oriented Architecture (SOA) and open source environments. Atomikos’ software safeguards critical transactions and prevents costly data loss or corruption in the event of a system failure or crash by automating the cancellation of failed business transactions.

260 questions
0
votes
1 answer

Atomikos transaction timeout when insert into huge table

I'm using atomikos to handle global transaction between 2 different databases. I ran before with more than 1 billion records and this problem just appeared couple days ago. I guess the reason is my table increase the size so it catch atomikos config…
0
votes
0 answers

atomikos' DB pool delay

I recently opened the system by applying spring and TransactionsEssentials atomikos version 5.0.6. However, there is a delay in atomikos' DB pool. Is it possible to improve this phenomenon? The point where the delay occurs is as…
boong
  • 1
  • 1
0
votes
0 answers

Atomikos XA Oracle Datasource connectivity with Kerberos

I am trying to connect to my kerborised DB with Oracle XA datasource using Atomikos. But not able to set the authentication_services and kerberos5_mutual_authentication properties. @Bean public DataSource jtaLocalDatasource() { …
Neel
  • 1
  • 1
0
votes
0 answers

Liferay tomcat(atomikos) threads are blocked

I have an application (Liferay + Tomcat + PostgreSQL). Tomcat also has configuration for Atomikos as transaction manager:
0
votes
1 answer

Reducing transaction timeout in JTA with Atomikos

I'm trying to reduce the default timeout of 300 seconds with JTA + Atomikos. However, it's not working as it keeps taking 300 seconds to time out. What I want to do is: UserTransaction: Set the timeout to 10 seconds. UserTransactionManager: Set…
karansardana
  • 1,039
  • 2
  • 9
  • 8
0
votes
1 answer

NullPointerException with Atomikos and Spring Batch JpaPagingItemReader

I use Atomikos with spring boot, spring batch, spring data jpa, hibernate and Postgresql. I have two datasources configured in XA Datasource with the Atomikos pool. I encounter two difficulties: The first is that I can't disable the Atomikos pool…
0
votes
1 answer

Atomikos with Hibernate(MySQL) have connection error

I setted below properties cause MySQL bug(https://www.atomikos.com/Documentation/KnownProblems#MySQL_XA_bug) com.atomikos.icatch.serial_jta_transactions=false pinGlobalTxToPhysicalConnection="true" but when i test it with multiple request after…
clapmin
  • 51
  • 4
0
votes
1 answer

ActiveMQ - Redelivery policy and Dead letter queue for topic

I'm working with ActiveMQ Artemis 2.17 and Spring Boot 2.5.7. I'm publishing messages on topic and queue and consuming it. All is done through JMS. All queues (anycast or multicast) are durables. My topic (multicast address) has 2 durable queues in…
0
votes
0 answers

XA Transaction Issue

We have a specific requirement to consume one inbound messages from IBM MQ (source), generate around 3k outbound messages and publish all of them one by one to a destination IBM MQ - All this in 1 transaction - Transaction time out duration is 5…
0
votes
0 answers

Java SQLException : Statement already closed

I am working on a program that allows to compare databases, and I have an issue with the statements. It has worked perfectly until I decided to use a connection framework that works with Spring (I have to use it for some reasons). Here is my piece…
Dowymn
  • 1
  • 1
0
votes
1 answer

Spring Boot JTA exception while making JMS call

I'm getting JTA exception while running an example from the Pro Spring 5 book (12. Using Spring Remote, boot-jms project). Here is the entirety of the code (exclude the imports). It only has one file Application.java: @SpringBootApplication public…
0
votes
1 answer

Do we need separate XA transaction manager configuration in an application using JMS and JDBC?

I have a spring boot application using generic maven components - one for IBM MQ configuration and the other for database configuration. Both these maven components were developed by us. We need to setup XA transaction in this application to ensure…
0
votes
1 answer

spring postgresql jpa jta Transaction interleaving not supporting

I used spring jpa(hibernate) atomikos jta transaction.Connection closes in 1 minute after first statement execute on the database side(automatically pgbouncer).But Spring transaction continues. First query execute then call ws or another work do (1…
sss
  • 11
  • 1
0
votes
2 answers

Spring Boot fails to start using Atomikos and JMS MQ connections fails

I have a Spring Boot app using IBM MQ and MySQL DB. I recently added Atomikos to leverage XA support and all works as expected. I have a requirement to be able to start the service even if the JMS connection fails. This worked before I introduced…
0
votes
1 answer

Spring TransactionManagement with Atomikos

I am trying to boot up a spring application with Atomikos maven dependency org.springframework.boot spring-boot-starter-jta-atomikos Am also autowiring as following …