Andrew Wong has submitted this change and it was merged. ( http://gerrit.cloudera.org:8080/16124 )
Change subject: KUDU-2612 p4: mechanism to create a transaction status table ...................................................................... KUDU-2612 p4: mechanism to create a transaction status table This plumbs table type into the master, and exercises the code paths by adding a TxnSystemClient that can set the table type when creating tables (as opposed to KuduClient, which cannot send such requests). This patch adds the ability to create a transaction status table named "kudu_system.kudu_transactions", which foregoes fine-grained authorization checks and HMS synchronization. Coarse-grained access to this table is table is granted only to the service- or super-user. For the sake of the create-table and add-partition functionality (which will likely come from the Kudu service rather than a user), the CreateTable and AlterTable master RPC endpoints now permit access to the service user. This TxnSystemClient can be used by leader masters in the future to create the initial transaction status table, but for now is useful for testing the plumbing of table type. Change-Id: I29b9009fa228a7749295b50516991613a28d58fa Reviewed-on: http://gerrit.cloudera.org:8080/16124 Reviewed-by: Alexey Serbin <[email protected]> Tested-by: Kudu Jenkins --- M src/kudu/client/client.cc M src/kudu/client/client.h M src/kudu/client/table_creator-internal.h M src/kudu/integration-tests/CMakeLists.txt M src/kudu/integration-tests/master_authz-itest.cc M src/kudu/integration-tests/master_hms-itest.cc A src/kudu/integration-tests/txn_status_table-itest.cc M src/kudu/master/CMakeLists.txt M src/kudu/master/catalog_manager.cc M src/kudu/master/catalog_manager.h M src/kudu/master/master.proto M src/kudu/server/server_base.cc M src/kudu/server/server_base.h M src/kudu/tablet/tablet_metadata.cc M src/kudu/transactions/CMakeLists.txt M src/kudu/transactions/txn_status_tablet.cc M src/kudu/transactions/txn_status_tablet.h A src/kudu/transactions/txn_system_client.cc A src/kudu/transactions/txn_system_client.h M src/kudu/tserver/tablet_service.cc 20 files changed, 673 insertions(+), 50 deletions(-) Approvals: Alexey Serbin: Looks good to me, approved Kudu Jenkins: Verified -- To view, visit http://gerrit.cloudera.org:8080/16124 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-Project: kudu Gerrit-Branch: master Gerrit-MessageType: merged Gerrit-Change-Id: I29b9009fa228a7749295b50516991613a28d58fa Gerrit-Change-Number: 16124 Gerrit-PatchSet: 12 Gerrit-Owner: Andrew Wong <[email protected]> Gerrit-Reviewer: Alexey Serbin <[email protected]> Gerrit-Reviewer: Andrew Wong <[email protected]> Gerrit-Reviewer: Attila Bukor <[email protected]> Gerrit-Reviewer: Grant Henke <[email protected]> Gerrit-Reviewer: Kudu Jenkins (120) Gerrit-Reviewer: Tidy Bot (241)
