All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.ignite.transactions.spring.SpringTransactionManager Maven / Gradle / Ivy

Go to download

Apache Ignite® is a Distributed Database For High-Performance Computing With In-Memory Speed.

There is a newer version: 2.16.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.ignite.transactions.spring;

import java.util.concurrent.TimeUnit;
import org.apache.ignite.Ignite;
import org.apache.ignite.IgniteException;
import org.apache.ignite.IgniteLogger;
import org.apache.ignite.IgniteSpring;
import org.apache.ignite.Ignition;
import org.apache.ignite.configuration.IgniteConfiguration;
import org.apache.ignite.transactions.Transaction;
import org.apache.ignite.transactions.TransactionConcurrency;
import org.apache.ignite.transactions.TransactionIsolation;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.transaction.CannotCreateTransactionException;
import org.springframework.transaction.InvalidIsolationLevelException;
import org.springframework.transaction.PlatformTransactionManager;
import org.springframework.transaction.TransactionDefinition;
import org.springframework.transaction.TransactionException;
import org.springframework.transaction.TransactionSystemException;
import org.springframework.transaction.support.AbstractPlatformTransactionManager;
import org.springframework.transaction.support.DefaultTransactionStatus;
import org.springframework.transaction.support.ResourceTransactionManager;
import org.springframework.transaction.support.TransactionSynchronizationManager;

/**
 * Implementation of Spring transaction abstraction based on Ignite transaction.
 * 

Overview

* Spring transaction abstraction allows to enable declarative transaction management * and concentrate on business logic rather than transaction life-cycle. * For more information, refer to * * Spring Transaction Abstraction documentation. *

How To Enable Transaction support

* To enable declarative transaction management on Ignite cache in your Spring application, * you will need to do the following: *
    *
  • * Start an Ignite node with proper configuration in embedded mode * (i.e., in the same JVM where the application is running). It can * already have predefined caches, but it's not required - caches * will be created automatically on first access if needed. *
  • *
  • * Configure {@code SpringTransactionManager} as a transaction manager * in the Spring application context. *
  • *
* {@code SpringTransactionManager} can start a node itself on its startup * based on provided Ignite configuration. You can provide path to a * Spring configuration XML file, like below (path can be absolute or * relative to {@code IGNITE_HOME}): *
 * <beans xmlns="http://www.springframework.org/schema/beans"
 *        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 *        xmlns:tx="http://www.springframework.org/schema/tx"
 *        xsi:schemaLocation="
 *            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
 *            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
 *     <-- Provide configuration file path. -->
 *     <bean id="transactionManager" class="org.apache.ignite.transactions.spring.SpringTransactionManager">
 *         <property name="configurationPath" value="examples/config/spring-transaction.xml"/>
 *     </bean>
 *
 *     <-- Use annotation-driven transaction configuration. -->
 *     <tx:annotation-driven/>
 * </beans>
 * 
* Or you can provide a {@link IgniteConfiguration} bean, like below: *
 * <beans xmlns="http://www.springframework.org/schema/beans"
 *        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 *        xmlns:tx="http://www.springframework.org/schema/tx"
 *        xsi:schemaLocation="
 *            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
 *            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
 *     <-- Provide configuration bean. -->
 *     <bean id="transactionManager" class="org.apache.ignite.transactions.spring.SpringTransactionManager">
 *         <property name="configuration">
 *             <bean id="gridCfg" class="org.apache.ignite.configuration.IgniteConfiguration">
 *                 ...
 *             </bean>
 *         </property>
 *     </bean>
 *
 *     <-- Use annotation-driven transaction configuration. -->
 *     <tx:annotation-driven/>
 * </beans>
 * 
* Note that providing both configuration path and configuration bean is illegal * and results in {@link IllegalArgumentException}. * * If you already have Ignite node running within your application, * simply provide correct Ignite instance name, like below (if there is no Grid * instance with such name, exception will be thrown): *
 * <beans xmlns="http://www.springframework.org/schema/beans"
 *        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 *        xmlns:tx="http://www.springframework.org/schema/tx"
 *        xsi:schemaLocation="
 *            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
 *            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
 *     <-- Provide Ignite instance name. -->
 *     <bean id="transactionManager" class="org.apache.ignite.transactions.spring.SpringTransactionManager">
 *         <property name="igniteInstanceName" value="myGrid"/>
 *     </bean>
 *
 *     <-- Use annotation-driven transaction configuration. -->
 *     <tx:annotation-driven/>
 * </beans>
 * 
* This can be used, for example, when you are running your application * in a J2EE Web container and use {@ignitelink org.apache.ignite.startup.servlet.ServletContextListenerStartup} * for node startup. * * If neither {@link #setConfigurationPath(String) configurationPath}, * {@link #setConfiguration(IgniteConfiguration) configuration}, nor * {@link #setIgniteInstanceName(String) igniteInstanceName} are provided, transaction manager * will try to use default Grid instance (the one with the {@code null} * name). If it doesn't exist, exception will be thrown. * * {@code SpringTransactionManager} can be configured to support Ignite transaction concurrency. * For this you need to provide {@code SpringTransactionManager} with transactionConcurrency property. * If this property is not set then default transaction concurrency will be used *
 * <beans xmlns="http://www.springframework.org/schema/beans"
 *        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 *        xmlns:tx="http://www.springframework.org/schema/tx"
 *        xsi:schemaLocation="
 *            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
 *            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
 *     <-- Provide Ignite instance name. -->
 *     <bean id="transactionManager" class="org.apache.ignite.transactions.spring.SpringTransactionManager">
 *         <property name="igniteInstanceName" value="myGrid"/>
 *         <property name="transactionConcurrency" value="OPTIMISTIC"/>
 *     </bean>
 *
 *     <-- Use annotation-driven transaction configuration. -->
 *     <tx:annotation-driven/>
 * </beans>
 * 
* * In case you need to support both "OPTIMISTIC" and "PESSIMISTIC" transaction concurrency in you application, * you need to create two transaction managers with different transaction concurrency *
 * <beans xmlns="http://www.springframework.org/schema/beans"
 *        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 *        xmlns:tx="http://www.springframework.org/schema/tx"
 *        xsi:schemaLocation="
 *            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
 *            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
 *     <bean id="optimisticTransactionManager" class="org.apache.ignite.transactions.spring.SpringTransactionManager">
 *         <property name="igniteInstanceName" value="myGrid"/>
 *         <property name="transactionConcurrency" value="OPTIMISTIC"/>
 *     </bean>
 *
 *     <bean id="pessimisticTransactionManager" class="org.apache.ignite.transactions.spring.SpringTransactionManager">
 *         <property name="igniteInstanceName" value="myGrid"/>
 *         <property name="transactionConcurrency" value="PESSIMISTIC"/>
 *     </bean>
 *
 *     <-- Use annotation-driven transaction configuration. -->
 *     <tx:annotation-driven/>
 * </beans>
 * 
* Then use them with qualifiers in your application: *
 * public class TransactionalService {
 *     {@literal @}Transactional("optimisticTransactionManager")
 *     public void doOptimistically() {
 *         ...
 *     }
 *
 *     {@literal @}Transactional("pessimisticTransactionManager")
 *     public void doPessimistically() {
 *         ...
 *     }
 * }
 * 
*/ public class SpringTransactionManager extends AbstractPlatformTransactionManager implements ResourceTransactionManager, PlatformTransactionManager, InitializingBean, ApplicationContextAware { /** * Logger. */ private IgniteLogger log; /** * Transaction concurrency level. */ private TransactionConcurrency transactionConcurrency; /** * Grid configuration file path. */ private String cfgPath; /** * Ignite configuration. */ private IgniteConfiguration cfg; /** * Ignite instance name. */ private String igniteInstanceName; /** * Ignite instance. */ private Ignite ignite; /** Spring context */ private ApplicationContext springCtx; /** {@inheritDoc} */ @Override public void setApplicationContext(ApplicationContext ctx) { this.springCtx = ctx; } /** * Constructs the transaction manager with no target Ignite instance. An * instance must be set before use. */ public SpringTransactionManager() { setNestedTransactionAllowed(false); } /** * Gets transaction concurrency level. * * @return Transaction concurrency level. */ public TransactionConcurrency getTransactionConcurrency() { return transactionConcurrency; } /** * Sets transaction concurrency level. * * @param transactionConcurrency transaction concurrency level. */ public void setTransactionConcurrency(TransactionConcurrency transactionConcurrency) { this.transactionConcurrency = transactionConcurrency; } /** * Gets configuration file path. * * @return Grid configuration file path. */ public String getConfigurationPath() { return cfgPath; } /** * Sets configuration file path. * * @param cfgPath Grid configuration file path. */ public void setConfigurationPath(String cfgPath) { this.cfgPath = cfgPath; } /** * Gets configuration bean. * * @return Grid configuration bean. */ public IgniteConfiguration getConfiguration() { return cfg; } /** * Sets configuration bean. * * @param cfg Grid configuration bean. */ public void setConfiguration(IgniteConfiguration cfg) { this.cfg = cfg; } /** * Gets grid name. * * @return Grid name. * @deprecated Use {@link #getIgniteInstanceName()}. */ @Deprecated public String getGridName() { return getIgniteInstanceName(); } /** * Sets grid name. * * @param gridName Grid name. * @deprecated Use {@link #setIgniteInstanceName(String)}. */ @Deprecated public void setGridName(String gridName) { setIgniteInstanceName(gridName); } /** * Gets Ignite instance name. * * @return Ignite instance name. */ public String getIgniteInstanceName() { return igniteInstanceName; } /** * Sets Ignite instance name. * * @param igniteInstanceName Ignite instance name. */ public void setIgniteInstanceName(String igniteInstanceName) { this.igniteInstanceName = igniteInstanceName; } /** {@inheritDoc} */ @Override public void afterPropertiesSet() throws Exception { assert ignite == null; if (cfgPath != null && cfg != null) { throw new IllegalArgumentException("Both 'configurationPath' and 'configuration' are " + "provided. Set only one of these properties if you need to start a Ignite node inside of " + "SpringCacheManager. If you already have a node running, omit both of them and set" + "'igniteInstanceName' property."); } if (cfgPath != null) ignite = IgniteSpring.start(cfgPath, springCtx); else if (cfg != null) ignite = IgniteSpring.start(cfg, springCtx); else ignite = Ignition.ignite(igniteInstanceName); if (transactionConcurrency == null) transactionConcurrency = ignite.configuration().getTransactionConfiguration().getDefaultTxConcurrency(); log = ignite.log(); } /** {@inheritDoc} */ @Override protected Object doGetTransaction() throws TransactionException { IgniteTransactionObject txObj = new IgniteTransactionObject(); txObj.setTransactionHolder( (IgniteTransactionHolder)TransactionSynchronizationManager.getResource(this.ignite), false); return txObj; } /** {@inheritDoc} */ @Override protected void doBegin(Object transaction, TransactionDefinition definition) throws TransactionException { if (definition.getIsolationLevel() == TransactionDefinition.ISOLATION_READ_UNCOMMITTED) throw new InvalidIsolationLevelException("Ignite does not support READ_UNCOMMITTED isolation level."); IgniteTransactionObject txObj = (IgniteTransactionObject)transaction; Transaction tx = null; try { if (txObj.getTransactionHolder() == null || txObj.getTransactionHolder().isSynchronizedWithTransaction()) { long timeout = ignite.configuration().getTransactionConfiguration().getDefaultTxTimeout(); if (definition.getTimeout() > 0) timeout = TimeUnit.SECONDS.toMillis(definition.getTimeout()); Transaction newTx = ignite.transactions().txStart(transactionConcurrency, convertToIgniteIsolationLevel(definition.getIsolationLevel()), timeout, 0); if (log.isDebugEnabled()) log.debug("Started Ignite transaction: " + newTx); txObj.setTransactionHolder(new IgniteTransactionHolder(newTx), true); } txObj.getTransactionHolder().setSynchronizedWithTransaction(true); txObj.getTransactionHolder().setTransactionActive(true); tx = txObj.getTransactionHolder().getTransaction(); // Bind the session holder to the thread. if (txObj.isNewTransactionHolder()) TransactionSynchronizationManager.bindResource(this.ignite, txObj.getTransactionHolder()); } catch (Exception ex) { if (tx != null) tx.close(); throw new CannotCreateTransactionException("Could not create Ignite transaction", ex); } } /** {@inheritDoc} */ @Override protected void doCommit(DefaultTransactionStatus status) throws TransactionException { IgniteTransactionObject txObj = (IgniteTransactionObject)status.getTransaction(); Transaction tx = txObj.getTransactionHolder().getTransaction(); if (status.isDebug() && log.isDebugEnabled()) log.debug("Committing Ignite transaction: " + tx); try { tx.commit(); } catch (IgniteException e) { throw new TransactionSystemException("Could not commit Ignite transaction", e); } } /** {@inheritDoc} */ @Override protected void doRollback(DefaultTransactionStatus status) throws TransactionException { IgniteTransactionObject txObj = (IgniteTransactionObject)status.getTransaction(); Transaction tx = txObj.getTransactionHolder().getTransaction(); if (status.isDebug() && log.isDebugEnabled()) log.debug("Rolling back Ignite transaction: " + tx); try { tx.rollback(); } catch (IgniteException e) { throw new TransactionSystemException("Could not rollback Ignite transaction", e); } } /** {@inheritDoc} */ @Override protected void doSetRollbackOnly(DefaultTransactionStatus status) throws TransactionException { IgniteTransactionObject txObj = (IgniteTransactionObject)status.getTransaction(); Transaction tx = txObj.getTransactionHolder().getTransaction(); assert tx != null; if (status.isDebug() && log.isDebugEnabled()) log.debug("Setting Ignite transaction rollback-only: " + tx); tx.setRollbackOnly(); } /** {@inheritDoc} */ @Override protected void doCleanupAfterCompletion(Object transaction) { IgniteTransactionObject txObj = (IgniteTransactionObject)transaction; // Remove the transaction holder from the thread, if exposed. if (txObj.isNewTransactionHolder()) { Transaction tx = txObj.getTransactionHolder().getTransaction(); TransactionSynchronizationManager.unbindResource(this.ignite); if (log.isDebugEnabled()) log.debug("Releasing Ignite transaction: " + tx); } txObj.getTransactionHolder().clear(); } /** {@inheritDoc} */ @Override protected boolean isExistingTransaction(Object transaction) throws TransactionException { IgniteTransactionObject txObj = (IgniteTransactionObject)transaction; return (txObj.getTransactionHolder() != null && txObj.getTransactionHolder().isTransactionActive()); } /** {@inheritDoc} */ @Override public Object getResourceFactory() { return this.ignite; } /** * @param isolationLevel Spring isolation level. * @return Ignite isolation level. */ private TransactionIsolation convertToIgniteIsolationLevel(int isolationLevel) { TransactionIsolation isolation = ignite.configuration().getTransactionConfiguration().getDefaultTxIsolation(); switch (isolationLevel) { case TransactionDefinition.ISOLATION_READ_COMMITTED: isolation = TransactionIsolation.READ_COMMITTED; break; case TransactionDefinition.ISOLATION_REPEATABLE_READ: isolation = TransactionIsolation.REPEATABLE_READ; break; case TransactionDefinition.ISOLATION_SERIALIZABLE: isolation = TransactionIsolation.SERIALIZABLE; } return isolation; } /** * An object representing a managed Ignite transaction. */ private static class IgniteTransactionObject { /** */ private IgniteTransactionHolder transactionHolder; /** */ private boolean newTransactionHolder; /** * Sets the resource holder being used to hold Ignite resources in the * transaction. * * @param transactionHolder the transaction resource holder * @param newHolder true if the holder was created for this transaction, * false if it already existed */ private void setTransactionHolder(IgniteTransactionHolder transactionHolder, boolean newHolder) { this.transactionHolder = transactionHolder; this.newTransactionHolder = newHolder; } /** * Returns the resource holder being used to hold Ignite resources in the * transaction. * * @return the transaction resource holder */ private IgniteTransactionHolder getTransactionHolder() { return transactionHolder; } /** * Returns true if the transaction holder was created for the current * transaction and false if it existed prior to the transaction. * * @return true if the holder was created for this transaction, false if it * already existed */ private boolean isNewTransactionHolder() { return newTransactionHolder; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy