Tablet Placement

Refreshing…
{% if last_refreshed %}
Last refreshed: {{ last_refreshed.strftime("%Y-%m-%d %H:%M:%S UTC") }} {% if counts_mode == "counts" %}  •  Counts mode: Include row counts (expensive) {% else %}  •  Counts mode: Placement only (fast) {% endif %}
{% endif %}
🔥 hot shard = ≥50% of rows or ≥2× expected share
{% if not selected_db or not selected_schema or not selected_table %}

Select a database, schema, and table/index to view tablet placement.

{% else %}

Selected: {{ selected_db }} / {{ selected_schema }} / {{ selected_table }} {% if leaders_only %}  •  Leaders only {% endif %}

{% if error %}
Error: {{ error }}
{% else %} {% for node_key, node in nodes.items() %}
{{ node.public_ip }} ({{ node.cloud }}/{{ node.region }}/{{ node.zone }})
host: {{ node.host }} • port: {{ node.port }} • uuid: {{ node.uuid }} • type: {{ node.node_type }}
Leaders: {{ node.leader_count }}
Followers: {{ node.follower_count }}
{% if counts_mode == "counts" %} Rows (sum): {{ node.row_count_total }} {% else %} Rows (sum): {% endif %}
{% for t in node.tablets %} {% endfor %}
tablet_id hash_start hash_end role tablet_row_count % of table
{% if t.is_hot %} 🔥 {% endif %} {{ t.tablet_id }} {{ t.hash_start }} {{ t.hash_end }} {% if t.is_leader %} Leader {% else %} Follower {% endif %} {% if counts_mode == "counts" %} {{ t.row_count }} {% else %} — {% endif %} {% if counts_mode == "counts" %} {{ t.pct_of_table }} {% else %} — {% endif %}
{% endfor %} {% if nodes|length == 0 %}

No tablet placement rows returned.

{% endif %} {% endif %} {% endif %}