Show Estimated Table Row Size in UI
Show estimate table row size in the UI next to each table. This would help from an efficiency standpoint of understanding which larger tables might make sense to break into separate connectors and help determine when tables might take longer to replicate at first due to size.
Most databases store table and row size in information schemas which I believe Fivetran already uses to identify table structure. Example MySQL below.
SELECT table_name, table_rows
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_SCHEMA = '[db]'
and table_name in ('table1','table2');
0
Please sign in to leave a comment.
Comments
0 comments