<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Output Not Displaying in Databricks Notebook on All-Purpose Compute Cluster in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/output-not-displaying-in-databricks-notebook-on-all-purpose/m-p/138581#M50972</link>
    <description>&lt;P&gt;Hi Sahil, I’ve tried using multiple versions (17.3, 17.1,15.4 and 14.3) and also cleared the state and outputs, but I’m still facing the same issue. The code you shared is producing the result as it’s not displaying the complete table. The table I’m using is just a sample with 100 rows. I’ve tested the same CSV file in another workspace, and it displays all the rows there without any issues.&lt;/P&gt;</description>
    <pubDate>Tue, 11 Nov 2025 11:54:11 GMT</pubDate>
    <dc:creator>bruce17</dc:creator>
    <dc:date>2025-11-11T11:54:11Z</dc:date>
    <item>
      <title>Output Not Displaying in Databricks Notebook on All-Purpose Compute Cluster</title>
      <link>https://community.databricks.com/t5/data-engineering/output-not-displaying-in-databricks-notebook-on-all-purpose/m-p/138420#M50926</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I’m encountering an issue where output from standard Python commands such as print() or display(df) is not showing up correctly when running notebooks on an All-Purpose Compute cluster.&lt;/P&gt;&lt;P&gt;Cluster Details&lt;/P&gt;&lt;P&gt;Cluster Type: All-Purpose Compute&lt;/P&gt;&lt;P&gt;Runtime Version: 17.3 LTS (includes Apache Spark 4.0.0, Scala 2.13)&lt;/P&gt;&lt;P&gt;Worker Type: Standard_D4ds_v5&lt;/P&gt;&lt;P&gt;Policy: Shared Compute&lt;/P&gt;&lt;P&gt;Issue Description&lt;/P&gt;&lt;P&gt;When executing cells containing PySpark code or loops, for example:&lt;/P&gt;&lt;P&gt;abfss_path = "abfss://fs-dev@stdev01.dfs.core.windows.net/dev/customers-100.csv"&lt;BR /&gt;df = spark.read.option("header", "true").csv(abfss_path)&lt;BR /&gt;display(df)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;…the notebook executes successfully, but no output is shown in the cell, even though commands like df.show() or df.count() return results as expected.&lt;/P&gt;&lt;P&gt;Similarly, print() statements sometimes do not render any output.&lt;/P&gt;&lt;P&gt;The issue occurs only on All-Purpose Compute clusters — it works fine on Serverless clusters.&lt;/P&gt;&lt;P&gt;Observed Behavior&lt;/P&gt;&lt;P&gt;The cell shows “Executed” status, but no visible output.&lt;/P&gt;&lt;P&gt;If we add dbutils.notebook.exit() at the end, the returned result appears, but intermediate print() or display() outputs are missing.&lt;/P&gt;&lt;P&gt;Expected Behavior&lt;/P&gt;&lt;P&gt;The print() statements and display(df) outputs should appear in real time (or at least after cell execution), consistent with behavior observed in Serverless clusters or earlier runtimes.&lt;/P&gt;&lt;P&gt;Request&lt;/P&gt;&lt;P&gt;If there’s a configuration setting, known issue, or recommended workaround to resolve this behavior, please advise.&lt;/P&gt;&lt;P&gt;Thank you for your support!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Nov 2025 13:57:20 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/output-not-displaying-in-databricks-notebook-on-all-purpose/m-p/138420#M50926</guid>
      <dc:creator>bruce17</dc:creator>
      <dc:date>2025-11-10T13:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Output Not Displaying in Databricks Notebook on All-Purpose Compute Cluster</title>
      <link>https://community.databricks.com/t5/data-engineering/output-not-displaying-in-databricks-notebook-on-all-purpose/m-p/138473#M50934</link>
      <description>&lt;P&gt;Hi Surya,&lt;/P&gt;
&lt;P&gt;Do you face this issue only with DBR 17.3 all-purpose clusters? Did you try with lower DBRs? If not, please try and let me know.&lt;/P&gt;
&lt;P&gt;Also, from the Run menu, try “Clear state and outputs,” then re‑run the cell on the same cluster to rule out stale REPL/UI state.&lt;/P&gt;
&lt;P&gt;Finally, capture a minimal repro and check using this code:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;import time

print("Start", flush=True)
for i in range(5):
  print(f"step {i}", flush=True)
  time.sleep(0.5)

abfss_path = "abfss://fs-dev@stdev01.dfs.core.windows.net/dev/customers-100.csv"
df = spark.read.option("header", "true").csv(abfss_path)
display(df.limit(20))
print("Done", flush=True)&lt;/LI-CODE&gt;
&lt;P&gt;If this shows “Executed” but no output, look in Driver logs to confirm prints are present there; that pinpoints a UI rendering/cell output size path versus code/compute&lt;/P&gt;</description>
      <pubDate>Mon, 10 Nov 2025 20:43:38 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/output-not-displaying-in-databricks-notebook-on-all-purpose/m-p/138473#M50934</guid>
      <dc:creator>Sahil_Kumar</dc:creator>
      <dc:date>2025-11-10T20:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: Output Not Displaying in Databricks Notebook on All-Purpose Compute Cluster</title>
      <link>https://community.databricks.com/t5/data-engineering/output-not-displaying-in-databricks-notebook-on-all-purpose/m-p/138581#M50972</link>
      <description>&lt;P&gt;Hi Sahil, I’ve tried using multiple versions (17.3, 17.1,15.4 and 14.3) and also cleared the state and outputs, but I’m still facing the same issue. The code you shared is producing the result as it’s not displaying the complete table. The table I’m using is just a sample with 100 rows. I’ve tested the same CSV file in another workspace, and it displays all the rows there without any issues.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 11:54:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/output-not-displaying-in-databricks-notebook-on-all-purpose/m-p/138581#M50972</guid>
      <dc:creator>bruce17</dc:creator>
      <dc:date>2025-11-11T11:54:11Z</dc:date>
    </item>
  </channel>
</rss>

