Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Kudu Tables

avatar
Rising Star

Hello,

 

Is there a way to find which kudu table is stored in which tablet server ?

 

Thanks 

Amn

1 ACCEPTED SOLUTION

avatar
Expert Contributor

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,

 

View solution in original post

1 REPLY 1

avatar
Expert Contributor

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,