<?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: Databricks DBR 18.1 access workspace files error in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151126#M53587</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/154226"&gt;@der&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I have checked internally. No specific changes to workspace files access were introduced as part of DBR 18.1. The error seems to indicate that the mount/backend is unhealthy or blocked (network/NSG/cluster config), not that your Python code is wrong.&lt;/P&gt;
&lt;P&gt;Can you try the below...&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;import os, getpass, subprocess, textwrap

user = getpass.getuser()
path = f"/Workspace/Users/{user}"

# Does listing the directory itself fail?
print("Listing:", path)
print(subprocess.run(["ls", "-l", path], text=True, capture_output=True))&lt;/LI-CODE&gt;
&lt;P&gt;If "ls" itself throws the same error, the /Workspace mount is broken on this cluster.&lt;/P&gt;
&lt;P&gt;You can also spin up a new cluster with minimal config (no custom VNet/NSG changes, no init scripts, no extra drivers) and run the same open("/Workspace/...") there.&amp;nbsp;&lt;SPAN&gt;If it works on the clean cluster but not on the original one, it’s a &lt;/SPAN&gt;cluster/network configuration issue.&lt;/P&gt;
&lt;P&gt;A robust workaround is to store configs on DBFS instead of raw /Workspace/Users/.. However, if you must use the workspace files...&amp;nbsp;the officially supported way is through the Workspace Files API / WorkspaceClient().files, rather than relying on FUSE paths. Use the SDK to download the file to local disk, then json.load it.&lt;/P&gt;
&lt;P&gt;If the above doesn't resolve your issue,&amp;nbsp;this is a good candidate for a Databricks support case. As you already have it, attach the trace ID, cluster ID, workspace URL, and confirm that any customer‑managed NSGs allow egress to workspace APIs (including /api/2.0/workspace-files/*).&lt;/P&gt;
&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Mar 2026 10:11:02 GMT</pubDate>
    <dc:creator>Ashwin_DSA</dc:creator>
    <dc:date>2026-03-17T10:11:02Z</dc:date>
    <item>
      <title>Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151114#M53585</link>
      <description>&lt;LI-CODE lang="python"&gt;import json

with open("/Workspace/Users/&amp;lt;USER&amp;gt;/config.json", "r") as f:
    config = json.load(f)
    print(config)&lt;/LI-CODE&gt;&lt;P&gt;Throws following error&lt;/P&gt;&lt;PRE&gt;OSError: [Errno 5] Input/output error: '/Workspace/Users/&amp;lt;USER&amp;gt;/config.json'&lt;BR /&gt;[Trace ID: 00-874e2bc3d747c3611c0c4adf64f48620-ed365d30ae67cc7f-00]&lt;BR /&gt;---------------------------------------------------------------------------&lt;BR /&gt;OSError Traceback (most recent call last)&lt;BR /&gt;File &amp;lt;command-6408169302940046&amp;gt;, line 3&lt;BR /&gt;1 import json&lt;BR /&gt;----&amp;gt; 3 with open("/Workspace/Users/&amp;lt;USER&amp;gt;/config.json", "r") as f:&lt;BR /&gt;4 config = json.load(f)&lt;BR /&gt;6 print(config)&lt;BR /&gt;&lt;BR /&gt;File /databricks/python/lib/python3.12/site-packages/IPython/core/interactiveshell.py:324, in _modified_open(file, *args, **kwargs)&lt;BR /&gt;317 if file in {0, 1, 2}:&lt;BR /&gt;318 raise ValueError(&lt;BR /&gt;319 f"IPython won't let you open fd={file} by default "&lt;BR /&gt;320 "as it is likely to crash IPython. If you know what you are doing, "&lt;BR /&gt;321 "you can use builtins' open."&lt;BR /&gt;322 )&lt;BR /&gt;--&amp;gt; 324 return io_open(file, *args, **kwargs)&lt;BR /&gt;&lt;BR /&gt;OSError: [Errno 5] Input/output error: '/Workspace/Users/&amp;lt;USER&amp;gt;/config.json'&lt;/PRE&gt;&lt;P&gt;Did something changed with DBR 18.1 and workspace files access?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see no limitation in documentation&lt;BR /&gt;&lt;A href="https://docs.databricks.com/aws/en/files/#work-with-workspace-files" target="_blank"&gt;https://docs.databricks.com/aws/en/files/#work-with-workspace-files&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 08:11:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151114#M53585</guid>
      <dc:creator>der</dc:creator>
      <dc:date>2026-03-17T08:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151126#M53587</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/154226"&gt;@der&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I have checked internally. No specific changes to workspace files access were introduced as part of DBR 18.1. The error seems to indicate that the mount/backend is unhealthy or blocked (network/NSG/cluster config), not that your Python code is wrong.&lt;/P&gt;
&lt;P&gt;Can you try the below...&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;import os, getpass, subprocess, textwrap

user = getpass.getuser()
path = f"/Workspace/Users/{user}"

# Does listing the directory itself fail?
print("Listing:", path)
print(subprocess.run(["ls", "-l", path], text=True, capture_output=True))&lt;/LI-CODE&gt;
&lt;P&gt;If "ls" itself throws the same error, the /Workspace mount is broken on this cluster.&lt;/P&gt;
&lt;P&gt;You can also spin up a new cluster with minimal config (no custom VNet/NSG changes, no init scripts, no extra drivers) and run the same open("/Workspace/...") there.&amp;nbsp;&lt;SPAN&gt;If it works on the clean cluster but not on the original one, it’s a &lt;/SPAN&gt;cluster/network configuration issue.&lt;/P&gt;
&lt;P&gt;A robust workaround is to store configs on DBFS instead of raw /Workspace/Users/.. However, if you must use the workspace files...&amp;nbsp;the officially supported way is through the Workspace Files API / WorkspaceClient().files, rather than relying on FUSE paths. Use the SDK to download the file to local disk, then json.load it.&lt;/P&gt;
&lt;P&gt;If the above doesn't resolve your issue,&amp;nbsp;this is a good candidate for a Databricks support case. As you already have it, attach the trace ID, cluster ID, workspace URL, and confirm that any customer‑managed NSGs allow egress to workspace APIs (including /api/2.0/workspace-files/*).&lt;/P&gt;
&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 10:11:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151126#M53587</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-17T10:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151130#M53590</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/216690"&gt;@Ashwin_DSA&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I restarted the cluster and it worked again. If you do it multiple times, most times it works and sometimes it fails.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":worried_face:"&gt;😟&lt;/span&gt; We see this issue only with DBR 18.1 (Standard with Photon, Dedicated without Photon)&lt;/P&gt;&lt;P&gt;DBFS is deactivated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 10:54:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151130#M53590</guid>
      <dc:creator>der</dc:creator>
      <dc:date>2026-03-17T10:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151140#M53595</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/154226"&gt;@der&lt;/a&gt;,&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;Can you run the same notebook on a test cluster in the same workspace with&amp;nbsp;&lt;SPAN&gt;DBR &lt;/SPAN&gt;18.0&lt;SPAN&gt; (or &lt;/SPAN&gt;17.3 LTS&lt;SPAN&gt;) with&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;same access mode, DBFS still disabled?&amp;nbsp;&lt;/SPAN&gt;If the issue disappears there and only occurs on 18.1, that’s strong evidence for an 18.1‑specific issue.&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;If you hit the error on 18.1.. just c&lt;SPAN&gt;apture the &lt;/SPAN&gt;trace ID&lt;SPAN&gt; from the stack trace and i&lt;/SPAN&gt;&lt;SPAN&gt;mmediately run the below in a Python cell.&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;import os, getpass, subprocess

user = getpass.getuser()
base = f"/Workspace/Users/{user}"

print("ls base:")
print(subprocess.run(["ls", "-l", base], text=True, capture_output=True))

print("ls file:")
print(subprocess.run(["ls", "-l", "/Workspace/Users/&amp;lt;USER&amp;gt;/config.json"], text=True, capture_output=True))&lt;/LI-CODE&gt;
&lt;P&gt;In a %sh cell, check for FUSE / workspace-files errors:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;dmesg | tail -n 50 || true&lt;/LI-CODE&gt;
&lt;P&gt;You can then open a support ticket with the&amp;nbsp;Workspace URL and region,&amp;nbsp;Cluster ID, DBR: 18.1, access mode, DBFS disabled, the full Python stack trace with trace ID(s),&amp;nbsp;Output of the ls / dmesg checks above on a failing run and also provide confirmation that the same code on 18.0 or 17.3 LTS does not show Errno 5.&lt;/P&gt;
&lt;P&gt;That gives support/engineering exactly what they need to confirm a regression in 18.1’s WSFS/FUSE behaviour.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 13:46:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151140#M53595</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-17T13:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151141#M53596</link>
      <description>&lt;P&gt;We have similar issue with accessing Workspace files exactly in DBR 18.1 ( previous DBR 17.xx&amp;nbsp; have worked even with relative paths OK ).&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import yaml
import os

def settings():
    try:
        script_dir = os.path.dirname(os.path.abspath(__file__))
    except NameError:
        script_dir = os.getcwd() 
    config_path = os.path.normpath(
        os.path.join(script_dir, "..", "config", "config.yml")
    )&lt;/LI-CODE&gt;&lt;P&gt;at the end&amp;nbsp;&lt;SPAN&gt;OSError: [Errno 5] Input/output error: '/Workspace/code/config/config.yml' [Trace ID: 00-188a04ab49de4ed3b4ab6e0e3ba17e58-b94fcf438d525fb0-00]&lt;BR /&gt;&lt;/SPAN&gt;Looks file cannot be opened even&amp;nbsp; it's FDQN is resolved correctly&lt;BR /&gt;maybe some strict rules was introduced in DBR 18.xx&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 13:47:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151141#M53596</guid>
      <dc:creator>Youry</dc:creator>
      <dc:date>2026-03-17T13:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151147#M53599</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/167003"&gt;@Youry&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you for sharing this. I will try to flag it internally, but I highly recommend that you raise a support ticket to ensure it gets prioritised.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 14:42:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151147#M53599</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-17T14:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151149#M53600</link>
      <description>&lt;P&gt;I will try this code next time if it happens. Keep you updated&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 15:19:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151149#M53600</guid>
      <dc:creator>der</dc:creator>
      <dc:date>2026-03-17T15:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151157#M53604</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/154226"&gt;@der&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/167003"&gt;@Youry&lt;/a&gt;&amp;nbsp;- FYI. I've now flagged this internally as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 16:04:06 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151157#M53604</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-17T16:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151212#M53613</link>
      <description>&lt;P&gt;Thanks !&amp;nbsp;&lt;BR /&gt;however if the only documented option is to use&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;Workspace Files API&amp;nbsp; then probably have to adjust code accordingly. FYI We're using Workspace/code/ as part of CI/CD process - code and configs as well are landed into subdirectory by pipeline. Moving part of it to DBFS adds complexity&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2026 07:04:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151212#M53613</guid>
      <dc:creator>Youry</dc:creator>
      <dc:date>2026-03-18T07:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151227#M53615</link>
      <description>&lt;P&gt;Today I see the issue again on a dedicated cluster with DBR 18.1 with &lt;A href="https://learn.microsoft.com/en-gb/azure/databricks/dbfs/disable-dbfs-root-mounts" target="_self"&gt;deactivated DBFS on workspace level&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Accessing File with Python result into:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;FileNotFoundError: &lt;/SPAN&gt;&lt;SPAN&gt;[Errno 2] No such file or directory&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;Both subprocess run can access main folder "base" and the config.json "file"&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;dmesg command does not work (even with sudo)&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;sudo dmesg | tail &lt;/SPAN&gt;&lt;SPAN&gt;-n&lt;/SPAN&gt;&lt;SPAN&gt; 50 || true&lt;BR /&gt;&lt;SPAN&gt;dmesg: read kernel buffer failed: Operation not permitted&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;dbutils works too&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;dbutils.fs.&lt;/SPAN&gt;&lt;SPAN&gt;ls&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"file:/Workspace/Users/&amp;lt;USER&amp;gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;and also native listing of the directory works&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; os&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;files &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; os.&lt;/SPAN&gt;&lt;SPAN&gt;listdir&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"/Workspace/Users/&amp;lt;USER&amp;gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;So it looks for me like there is something wrong or not working in&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;/databricks/python/lib/python3.12/site-packages/IPython/core/interactiveshell.py with &lt;STRONG&gt;workspace files&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;File /databricks/python/lib/python3.12/site-packages/IPython/core/interactiveshell.py:324, in _modified_open(file, *args, **kwargs)
    317 if file in {0, 1, 2}:
    318     raise ValueError(
    319         f"IPython won't let you open fd={file} by default "
    320         "as it is likely to crash IPython. If you know what you are doing, "
    321         "you can use builtins' open."
    322     )
--&amp;gt; 324 return io_open(file, *args, **kwargs)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2026 09:48:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151227#M53615</guid>
      <dc:creator>der</dc:creator>
      <dc:date>2026-03-18T09:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151326#M53626</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/167003"&gt;@Youry&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Understood. Did you happen to raise a support ticket? If so, could you please share the reference number? It will help me to escalate the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2026 19:20:56 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151326#M53626</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-18T19:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151673#M53680</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/216690"&gt;@Ashwin_DSA&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a support ticket and will provide you the reference number as soon as i get it.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2026 07:31:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151673#M53680</guid>
      <dc:creator>der</dc:creator>
      <dc:date>2026-03-23T07:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks DBR 18.1 access workspace files error</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151685#M53684</link>
      <description>&lt;P&gt;This happens to us on&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN&gt;18.0.3, but I haven't seen it on &amp;lt; 18.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2026 09:39:44 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-dbr-18-1-access-workspace-files-error/m-p/151685#M53684</guid>
      <dc:creator>Malthe</dc:creator>
      <dc:date>2026-03-23T09:39:44Z</dc:date>
    </item>
  </channel>
</rss>

