Created on 07-15-2021 01:49 AM - edited 09-16-2022 07:42 AM
Hello,
Is there a way to find which kudu table is stored in which tablet server ?
Thanks
Amn
Created 07-15-2021 06:18 AM
Hi @Amn_468
In Kudu Table is divided into multiple tablets and those tables are distributed across the cluster. So the table data will be stored across multiple TS (kudu nodes)
You can get that info from Kudu master WebUI
CM->Kudu ->Webui -> Tables ->select table
curl -i -k --negotiate -u : "http://Abcde-host:8051/tables"
Also, You can run ksck command to get that info :-
https://kudu.apache.org/docs/command_line_tools_reference.html#table-list
Does that answer your question, if yes please feel free to mark the post as solution accepted and give a thumbs up.
regards,
Created 07-15-2021 06:18 AM
Hi @Amn_468
In Kudu Table is divided into multiple tablets and those tables are distributed across the cluster. So the table data will be stored across multiple TS (kudu nodes)
You can get that info from Kudu master WebUI
CM->Kudu ->Webui -> Tables ->select table
curl -i -k --negotiate -u : "http://Abcde-host:8051/tables"
Also, You can run ksck command to get that info :-
https://kudu.apache.org/docs/command_line_tools_reference.html#table-list
Does that answer your question, if yes please feel free to mark the post as solution accepted and give a thumbs up.
regards,