Forum Discussion
Alisea_MI
2 years agoResolver II
What Takes Up Storage?
Hi, Community! Our organization has just started to use Lakehouses in Fabric: both centrally by Group It and on the business side. In the MS Fabric Capacity Metrics report, I notice, that ther...
- 2 years ago
Hi Alisea_MI
You could use this from Michael at the Power BI Team to get a list of the Table and their sizes fabric_cat_tools/Model Optimization.ipynb at main · m-kovalsky/fabric_cat_tools · GitHub
And then use this in a notebook.
# Install Fabric CAT Tools %pip install "https://raw.githubusercontent.com/m-kovalsky/fabric_cat_tools/main/fabric_cat_tools-0.3.0-py3-none-any.whl" import fabric_cat_tools as fct df = fct.get_lakehouse_tables( extended = True ) display(df)
GilbertQ
2 years agoSuper User
Hi Alisea_MI
You could use this from Michael at the Power BI Team to get a list of the Table and their sizes fabric_cat_tools/Model Optimization.ipynb at main · m-kovalsky/fabric_cat_tools · GitHub
And then use this in a notebook.
# Install Fabric CAT Tools
%pip install "https://raw.githubusercontent.com/m-kovalsky/fabric_cat_tools/main/fabric_cat_tools-0.3.0-py3-none-any.whl"
import fabric_cat_tools as fct
df = fct.get_lakehouse_tables(
extended = True
)
display(df)