This is an automated email from the ASF dual-hosted git repository.

xiangfu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 169797a40b [UI] Show size of table is with replication (#11331)
169797a40b is described below

commit 169797a40b96dca1145788470c8a6f893e257ebf
Author: Jayesh Choudhary <[email protected]>
AuthorDate: Sun Aug 13 15:37:58 2023 +0530

    [UI] Show size of table is with replication (#11331)
---
 pinot-controller/src/main/resources/app/pages/TablesListingPage.tsx | 4 ++--
 pinot-controller/src/main/resources/app/pages/TenantDetails.tsx     | 4 ++--
 pinot-controller/src/main/resources/app/pages/Tenants.tsx           | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/pinot-controller/src/main/resources/app/pages/TablesListingPage.tsx 
b/pinot-controller/src/main/resources/app/pages/TablesListingPage.tsx
index dc2bd66f6e..7a79d2ecda 100644
--- a/pinot-controller/src/main/resources/app/pages/TablesListingPage.tsx
+++ b/pinot-controller/src/main/resources/app/pages/TablesListingPage.tsx
@@ -46,8 +46,8 @@ const useStyles = makeStyles(() => ({
 
 const TableTooltipData = [
   null,
-  'Uncompressed size of all data segments',
-  'Estimated size of all data segments, in case any servers are not reachable 
for actual size',
+  'Uncompressed size of all data segments with replication',
+  'Estimated size of all data segments with replication, in case any servers 
are not reachable for actual size',
   null,
   'GOOD if all replicas of all segments are up',
 ];
diff --git a/pinot-controller/src/main/resources/app/pages/TenantDetails.tsx 
b/pinot-controller/src/main/resources/app/pages/TenantDetails.tsx
index 189278e4af..4719b6c824 100644
--- a/pinot-controller/src/main/resources/app/pages/TenantDetails.tsx
+++ b/pinot-controller/src/main/resources/app/pages/TenantDetails.tsx
@@ -521,13 +521,13 @@ const TenantPageDetails = ({ match }: 
RouteComponentProps<Props>) => {
           <Grid item xs={4}>
             <strong>Table Name:</strong> {tableSummary.tableName}
           </Grid>
-          <Tooltip title="Uncompressed size of all data segments"  arrow 
placement="top-start">
+          <Tooltip title="Uncompressed size of all data segments with 
replication"  arrow placement="top-start">
           <Grid item xs={2}>
             <strong>Reported Size:</strong> 
{Utils.formatBytes(tableSummary.reportedSize)}
           </Grid>
           </Tooltip>
           <Grid item xs={2}></Grid>
-          <Tooltip title="Estimated size of all data segments, in case any 
servers are not reachable for actual size" arrow placement="top-start">
+          <Tooltip title="Estimated size of all data segments with 
replication, in case any servers are not reachable for actual size" arrow 
placement="top-start">
             <Grid item xs={2}>
               <strong>Estimated Size: </strong>
               {Utils.formatBytes(tableSummary.estimatedSize)}
diff --git a/pinot-controller/src/main/resources/app/pages/Tenants.tsx 
b/pinot-controller/src/main/resources/app/pages/Tenants.tsx
index dd39b9a8e7..e9944c478b 100644
--- a/pinot-controller/src/main/resources/app/pages/Tenants.tsx
+++ b/pinot-controller/src/main/resources/app/pages/Tenants.tsx
@@ -41,8 +41,8 @@ type Props = {
 
 const TableTooltipData = [
   null,
-  "Uncompressed size of all data segments",
-  "Estimated size of all data segments, in case any servers are not reachable 
for actual size",
+  "Uncompressed size of all data segments with replication",
+  "Estimated size of all data segments with replication, in case any servers 
are not reachable for actual size",
   null,
   "GOOD if all replicas of all segments are up"
 ];


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to