Forum Discussion
Anonymous
2 years agoNot applicable
Copilot Context Issue in Fabric Notebook
Hi all, In Fabric, I'm trying to use Copilot in a Notebook. I have a DataFrame df that I created by reading a table from my lakehouse. When I try to run the following code asking Copilot to summa...
- Anonymous2 years ago
RESOLVED
The issue was that the Lakehouse I was loading a table from had too many tables (only 20 tables, each with ~100,000 rows).
For anyone else encountering this issue, try:
- Creating a new larger Spark pool (they're currently medium by default, x-large fixed my issue). See your Workspace settings.
- Reducing the size of your Lakehouse by deleting tables (not an option for my case)
- Creating a new Lakehouse to reference with the table you're trying to load (worked for me when my new Lakehouse was in a different Workspace)
lbendlin
2 years agoSuper User
you're not accidentally omitting the second percent sign?
%%describe df
Anonymous
2 years agoNot applicable
Thanks for the quick response! No, I tried that first but for some reason that magic command prefers a single %:
UsageError: Cell magic `%%describe` not found (But line magic `%describe` exists, did you mean that instead?).