Code Monkey home page Code Monkey logo

Comments (5)

fwbrasil avatar fwbrasil commented on August 22, 2024

Hi Grant.

The transaction control is done using a ThreadLocal. Actors normally runs in another thread, so maybe this is the problem.

In your example, the Actor message is sent inside of the transactional block that creates the entity. If the message is received before the end of the transaction, the entity will be empty to the Actor.

Try to review the transaction demarcation of your application. As a general rule, is not good to send messages to Actors inside transactional blocks.

from activate.

gbeaty avatar gbeaty commented on August 22, 2024

In my actual app I was not purposefully sending messages inside a transaction (although my messages are idempotent so I suppose it wouldn't break anything).

However the problematic code was being executing as part of an object's initializtion. This must have sometimes been run inside the context of another transaction, because when I explicitly initialize the object during application start, the errors go away.

In hindsight the problem is pretty obvious, but I didn't know there was a transaction running in the current thread. It would be great if there was an explicit error message when this occurs. The one thing I miss from Slick is its implicit / type-checked transactions.

Anyway, thanks. This one had me pretty frustrated.

from activate.

gbeaty avatar gbeaty commented on August 22, 2024

Would transactional(requiresNew) be the right thing to use when you don't know if a another transaction might be in the thread's scope?

from activate.

fwbrasil avatar fwbrasil commented on August 22, 2024

Is is possible to use a normal transactional{ }, since it uses the required propagation by default. The propagation will create a new transaction if needed. Take a look at:

http://activate-framework.org/documentation/transaction/#propagations

The ThreadLocal approach allows to write code without having to receive the implicit transaction on each method that uses persistence. I consider this approach better, since it avoids boilerplate code and makes the persistence more transparent to the business code.

About the message send inside normal transactional blocks. It must be avoided because it is a side effect. If the STM transaction retries, the message will be sent again. An alternative is to use the "manual" transaction control if you have side effects:

http://activate-framework.org/documentation/transaction/#manual_transaction_control

Remember that with this kind of transactional block, the STM does not retry the transaction and can throw a ConcurrentTransactionException.

Please, confirm if I can close the issue.

Regards,

Flavio

from activate.

gbeaty avatar gbeaty commented on August 22, 2024

Yes, close away and thanks for the help.

from activate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.