-
Notifications
You must be signed in to change notification settings - Fork 214
PROTON-1442: [Cpp] Support for local transactions #437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
74818fc
to
eb4514b
Compare
3e96834
to
fa9236d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've taken a fairly thorough look. If you have any questions about these review items we should discuss further.
cpp/include/proton/transaction.hpp
Outdated
class | ||
PN_CPP_CLASS_EXTERN transaction_handler { | ||
public: | ||
PN_CPP_EXTERN virtual ~transaction_handler(); | ||
|
||
/// Called when a local transaction is declared. | ||
PN_CPP_EXTERN virtual void on_transaction_declared(transaction); | ||
|
||
/// Called when a local transaction is discharged successfully. | ||
PN_CPP_EXTERN virtual void on_transaction_committed(transaction); | ||
|
||
/// Called when a local transaction is discharged unsuccessfully (aborted). | ||
PN_CPP_EXTERN virtual void on_transaction_aborted(transaction); | ||
|
||
/// Called when a local transaction declare fails. | ||
PN_CPP_EXTERN virtual void on_transaction_declare_failed(transaction); | ||
|
||
/// Called when the commit of a local transaction fails. | ||
PN_CPP_EXTERN virtual void on_transaction_commit_failed(transaction); | ||
}; | ||
|
||
} // namespace proton | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be in a different header file like message and messaging_handler
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So if the API makes transactions hidden in a session then these callbacks either go away or instead become session callbacks: on_session_transaction_committed(session&), etc. I think transaction_declared() goes away entirely and it's purpose is now another use for on_session_open(session&). on_.._declare_failed should be handled by the on_session_error(session&).
fa9236d
to
347cf6e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've not reviewed this comprehensively, but I think I'm now very much leaning towards not making the transaction class visible to the API user at all and having the transaction methods on the session. This is essentially the API in JMS and CMS.
cpp/include/proton/transaction.hpp
Outdated
class | ||
PN_CPP_CLASS_EXTERN transaction_handler { | ||
public: | ||
PN_CPP_EXTERN virtual ~transaction_handler(); | ||
|
||
/// Called when a local transaction is declared. | ||
PN_CPP_EXTERN virtual void on_transaction_declared(transaction); | ||
|
||
/// Called when a local transaction is discharged successfully. | ||
PN_CPP_EXTERN virtual void on_transaction_committed(transaction); | ||
|
||
/// Called when a local transaction is discharged unsuccessfully (aborted). | ||
PN_CPP_EXTERN virtual void on_transaction_aborted(transaction); | ||
|
||
/// Called when a local transaction declare fails. | ||
PN_CPP_EXTERN virtual void on_transaction_declare_failed(transaction); | ||
|
||
/// Called when the commit of a local transaction fails. | ||
PN_CPP_EXTERN virtual void on_transaction_commit_failed(transaction); | ||
}; | ||
|
||
} // namespace proton | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So if the API makes transactions hidden in a session then these callbacks either go away or instead become session callbacks: on_session_transaction_committed(session&), etc. I think transaction_declared() goes away entirely and it's purpose is now another use for on_session_open(session&). on_.._declare_failed should be handled by the on_session_error(session&).
cpp/examples/tx_recv.cpp
Outdated
transaction.accept(d); | ||
current_batch += 1; | ||
if(current_batch == batch_size) { | ||
transaction = proton::transaction(); // null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we should do rather commit here, that way it works as expected and the receiver is closed after expected number of messages received (with the current implementation it's not).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we should do rather commit here, that way it works as expected and the receiver is closed after expected number of messages received (with the current implementation it's not).
above mentioned change:
- transaction = proton::transaction(); // null
+ transaction.commit();
works as expected (against Artemis broker) when using multicast. However, when a pre-defined anycast queue is used, the commit() call ends with client segmentation fault.
cpp/examples/tx_recv.cpp
Outdated
|
||
void on_message(proton::delivery &d, proton::message &msg) override { | ||
std::cout<<"# MESSAGE: " << msg.id() <<": " << msg.body() << std::endl; | ||
transaction.accept(d); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
btw. I'm thinking if transaction.accept() does actually have any effect? I mean, when I comment it out, the program behaves the same. btw. is this transaction accept any different from delivery accept? looks both settles the messages related to the delivery.
Does explicit delivery settling play role in transaction mode? or are they mutually exclusive and only commits and aborts applies? Can ie. single message in transaction be rejected while other messages accepted?
I tried to accept / reject the delivery and it seems to have no effect in transaction mode (while in python, doing so makes the messages to be threat outside of the transaction, just like a normal messages, https://issues.redhat.com/browse/ENTMQCL-513).
4c795ef
to
eb8afbd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lopts of detailed comments here, but the main change I'd like to see is either make coordinator a subclass of target or fold it into a simple boolean option of target.
|
||
void on_message(proton::delivery &d, proton::message &msg) override { | ||
std::cout<<"# MESSAGE: " << msg.id() <<": " << msg.body() << std::endl; | ||
session.txn_accept(d); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
session == d.session()
cpp/src/sender_options.cpp
Outdated
@@ -66,6 +66,7 @@ class sender_options::impl { | |||
option<bool> auto_settle; | |||
option<source_options> source; | |||
option<target_options> target; | |||
option<coordinator_options> coordinator; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed if coordinator is a kind of target
eb8afbd
to
4c795ef
Compare
* Added an extra handler to the python binding so that we can handle transactioned dispositions
* Modified the Python example broker so that it understands transaction requests, prints some useful output about what is happening, but doesn't honor the transaction semantics. It will queue up transactioned messages immediately and also doesn't correctly handle outgoing message releases (but it doesn't for non-transactioned messages either
* Make it compile * Make it fit the existing software structure better
578445f
to
6fd1434
Compare
|
||
private: | ||
// clean up txn internally | ||
void txn_delete(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd be very surprised if this is needed here - I'd think it could only be called from the impl class
@@ -36,6 +36,7 @@ | |||
struct pn_session_t; | |||
|
|||
namespace proton { | |||
class transaction_impl; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this actually needed here?
/// @cond INTERNAL | ||
friend class internal::factory<session>; | ||
friend class session_iterator; | ||
friend class transaction_impl; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd think it's more likely that transaction_impl needs to a friend of session_impl
PN_CPP_EXTERN bool txn_is_empty(); | ||
PN_CPP_EXTERN bool txn_is_declared(); | ||
PN_CPP_EXTERN void txn_commit(); | ||
PN_CPP_EXTERN void txn_abort(); | ||
PN_CPP_EXTERN void txn_declare(); | ||
PN_CPP_EXTERN void txn_handle_outcome(proton::tracker); | ||
PN_CPP_EXTERN proton::tracker txn_send(proton::sender s, proton::message msg); | ||
PN_CPP_EXTERN void txn_accept(delivery &t); | ||
PN_CPP_EXTERN proton::connection txn_connection() const; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aren't these just internal functions? They should only be needed inside session_impl
msg.id(std::atomic_fetch_add(&unique_id, 1)); | ||
msg.body(m); | ||
std::cout << "Sending: " << msg << std::endl; | ||
session.txn_send(sender, msg); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the API we were aiming for would just use a sender object created from the transactioned session.
} | ||
|
||
void transaction_impl::accept(delivery &t) { | ||
t.settle(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs update(t, PN_ACCEPT);
t.settle(); | ||
} | ||
|
||
void transaction_impl::update(tracker &t, uint64_t state) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be delivery not tracker
PROTON-1442
AMQP Transaction Sequence:
Client establishes link to Broker (Transaction resource) to target with transaction coordinator type (usual types are sender/receiver) (ATTACH frame)
Client (Transaction Controller) sends a special message to that link to create transaction (TRANSFER frame)
Broker returns a disposition with the transaction id (DISPOSITION frame)