Notebook execution keeps showing "Fetching result" endlessly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2025 07:19 PM
Hello,
I am executing a very simple notebook with only two cells. In the first cell, I'm just defining some variables and printing the result.
The second cell is more complex and it basically grabs those variables, parses a yaml file, and prints the results. I don't see any obvious code errors and can rule that out. I also tried the following:
1. de-attach and re-attach serverless compute
2. clear notebook outputs and re-run
3. create an all purpose cluster and re-run
4. create an entirely new notebook and move my code over
and basically any combination of the above three options. The notebook execution shows as "complete" but the results won't display.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2025 02:45 AM
Hi @himoshi Good Day!
1. Could you use print() instead of display()?
2.If you're printing a large YAML or dictionary object directly (e.g. print(parsed_yaml) or display(parsed_yaml)),
try:
print(json.dumps(parsed_yaml, indent=2)[:500]) # Print only first 500 characters
3. Could you also try saving the output to a temp file location and reading it back to see if you are actually getting any results?