Generate a table list
To generate a list of tables to backup using the kudu table list
tool
along with grep
can be useful.
Following is an example that generates a list of all tables that start with
my_db.
:kudu table list <master_addresses> | grep "^my_db\.*" | tr '\n' ' '