Alavalathi
Alavalathi

Reputation: 753

How to get salt bucket count in Apache Phoenix?

Apache Phoenix recommends salted buckets for improved performance. I wish to get the count of salted buckets for a table I created some time ago.

How can one get the count ?

Upvotes: 2

Views: 1507

Answers (1)

kliew
kliew

Reputation: 3183

select table_name, salt_buckets from SYSTEM.CATALOG where salt_buckets is not null;

Upvotes: 7

Related Questions