Hello Kudu Jenkins, I'd like you to reexamine a change. Please visit
http://gerrit.cloudera.org:8080/7439 to look at the new patch set (#11). Change subject: Allow tablet shutdown without completing txs ...................................................................... Allow tablet shutdown without completing txs Currently, if a TransactionState object is deleted while it is Applying, Kudu will crash as a way to prevent the failed transaction from persisting incorrect state onto disk. However, this is not always necessary: transactions that fail due to disk failure may want to keep the server alive by marking the tablet as unusable. In this case, there needs to be a way ensure the transactions are released without crashing the server, regardless of state. This patch adds the ability to mark a tablet's MvccManager as shutting down, after which Applies will exit early, responding with an Aborted status. Testing is done by adding the following: - a test in mvcc-test to shut down the manager and delete an Applying transaction, ensuring that there are no errors when it leaves scope. - a test in tablet_replica-test to register a WriteTransaction, shut down the tablet's MvccManager, and begin Applying. The transaction exits early and releases itself from MVCC. This is part of a series of patches to address disk failure. To see how this patch fits in, see section 2.3 of: https://docs.google.com/document/d/1zZk-vb_ETKUuePcZ9ZqoSK2oPvAAaEV1sjDXes8Pxgk/edit Change-Id: I983620f27e7226806a2cca253db7619731914d42 --- M src/kudu/tablet/mvcc-test.cc M src/kudu/tablet/mvcc.cc M src/kudu/tablet/mvcc.h M src/kudu/tablet/tablet.cc M src/kudu/tablet/tablet.h M src/kudu/tablet/tablet_replica-test.cc M src/kudu/tablet/transactions/transaction_driver.cc M src/kudu/tablet/transactions/transaction_driver.h M src/kudu/tablet/transactions/write_transaction.cc M src/kudu/tserver/ts_tablet_manager.cc 10 files changed, 137 insertions(+), 42 deletions(-) git pull ssh://gerrit.cloudera.org:29418/kudu refs/changes/39/7439/11 -- To view, visit http://gerrit.cloudera.org:8080/7439 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-MessageType: newpatchset Gerrit-Change-Id: I983620f27e7226806a2cca253db7619731914d42 Gerrit-PatchSet: 11 Gerrit-Project: kudu Gerrit-Branch: master Gerrit-Owner: Andrew Wong <aw...@cloudera.com> Gerrit-Reviewer: Andrew Wong <aw...@cloudera.com> Gerrit-Reviewer: David Ribeiro Alves <davidral...@gmail.com> Gerrit-Reviewer: Kudu Jenkins Gerrit-Reviewer: Mike Percy <mpe...@apache.org> Gerrit-Reviewer: Tidy Bot Gerrit-Reviewer: Todd Lipcon <t...@apache.org>