<?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: Help With OSError: [Errno 95] Operation not supported: '/Workspace/Repos/Connectors.... in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/119012#M45760</link>
    <description>&lt;P&gt;@Arb&lt;/P&gt;&lt;P&gt;Make sure the below is a file with extension .py and not a notebook. That should resolve the issue.&lt;BR /&gt;&lt;SPAN&gt;/Workspace/Repos/Connectors/Dev/utils/schemas/&lt;/SPAN&gt;&lt;A href="https://comptroller.py/" target="_blank" rel="nofollow noopener noreferrer"&gt;Comptroller.py&lt;/A&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 13 May 2025 08:26:08 GMT</pubDate>
    <dc:creator>HarikaM</dc:creator>
    <dc:date>2025-05-13T08:26:08Z</dc:date>
    <item>
      <title>Help With OSError: [Errno 95] Operation not supported: '/Workspace/Repos/Connectors....</title>
      <link>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/2700#M28</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am experiencing issues with importing from utils repo the schema file I created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the logic we use for all ingestion and all other schemas live in this repo utills/schemas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am unable to access the file I created for a new ingestion pipeline&lt;/P&gt;&lt;P&gt;and get the following error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OSError: [Errno 95] Operation not supported: '/Workspace/Repos/Connectors/Dev/utils/schemas/&lt;A href="https://Comptroller.py" alt="https://Comptroller.py" target="_blank"&gt;Comptroller.py&lt;/A&gt;'&lt;/P&gt;&lt;P&gt;---------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;OSError Traceback (most recent call last)&lt;/P&gt;&lt;P&gt;File &amp;lt;command-2008379283730306&amp;gt;:10&lt;/P&gt;&lt;P&gt; 7 &lt;B&gt;from&lt;/B&gt; &lt;B&gt;pyspark.sql&lt;/B&gt; &lt;B&gt;import&lt;/B&gt; DataFrame &lt;B&gt;as&lt;/B&gt; SparkDataFrame&lt;/P&gt;&lt;P&gt; 8 # from utils.schemas import comptroller as schemas # does not allow me to import &lt;/P&gt;&lt;P&gt; 9 #workaround&lt;/P&gt;&lt;P&gt;---&amp;gt; 10 &lt;B&gt;from&lt;/B&gt; &lt;B&gt;utils.schemas.Comptroller&lt;/B&gt; &lt;B&gt;import&lt;/B&gt; *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File /databricks/python_shell/dbruntime/PythonPackageImportsInstrumentation/__init__.py:172, in _create_import_patch.&amp;lt;locals&amp;gt;.import_patch(name, globals, locals, fromlist, level)&lt;/P&gt;&lt;P&gt; 167 thread_local._nest_level += 1&lt;/P&gt;&lt;P&gt; 169 &lt;B&gt;try&lt;/B&gt;:&lt;/P&gt;&lt;P&gt; 170 # Import the desired module. If you’re seeing this while debugging a failed import,&lt;/P&gt;&lt;P&gt; 171 # look at preceding stack frames for relevant error information.&lt;/P&gt;&lt;P&gt;--&amp;gt; 172 original_result = python_builtin_import(name, globals, locals, fromlist, level)&lt;/P&gt;&lt;P&gt; 174 is_root_import = thread_local._nest_level == 1&lt;/P&gt;&lt;P&gt; 175 # `level` represents the number of leading dots in a relative import statement.&lt;/P&gt;&lt;P&gt; 176 # If it's zero, then this is an absolute import.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File &amp;lt;frozen importlib._bootstrap&amp;gt;:1027, in _find_and_load(name, import_)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File &amp;lt;frozen importlib._bootstrap&amp;gt;:1006, in _find_and_load_unlocked(name, import_)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File &amp;lt;frozen importlib._bootstrap&amp;gt;:688, in _load_unlocked(spec)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File &amp;lt;frozen importlib._bootstrap_external&amp;gt;:879, in exec_module(self, module)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File &amp;lt;frozen importlib._bootstrap_external&amp;gt;:1016, in get_code(self, fullname)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File &amp;lt;frozen importlib._bootstrap_external&amp;gt;:1073, in get_data(self, path)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OSError: [Errno 95] Operation not supported: '/Workspace/Repos/Connectors/Dev/utils/schemas/&lt;A href="https://Comptroller.py" alt="https://Comptroller.py" target="_blank"&gt;Comptroller.py&lt;/A&gt;'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to import a different file from the same location and it worked /utils/schemas/&lt;A href="https://differentflie.py" alt="https://differentflie.py" target="_blank"&gt;differentflie.py&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see all the contents in that file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the schema files are self explanatory and contain only schema for the tables being ingested. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea why this is happening is it a repo sync issue? a permissions issue?&lt;/P&gt;&lt;P&gt;really confused by it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also I am wondering what the difference in the icons mean. &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="icon"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/50i0CBCF4A664D92EDE/image-size/large?v=v2&amp;amp;px=999" role="button" title="icon" alt="icon" /&gt;&lt;/span&gt;I assumed it means that this file was created by me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm a databricks newbie&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 21:26:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/2700#M28</guid>
      <dc:creator>Arby</dc:creator>
      <dc:date>2023-06-22T21:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Help With OSError: [Errno 95] Operation not supported: '/Workspace/Repos/Connectors....</title>
      <link>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/2701#M29</link>
      <description>&lt;P&gt;Hi @Arbi nazar​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Great to meet you, and thanks for your question! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's see if your peers in the community have an answer to your question. Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 07:05:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/2701#M29</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-06-23T07:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Help With OSError: [Errno 95] Operation not supported: '/Workspace/Repos/Connectors....</title>
      <link>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/2703#M31</link>
      <description>&lt;P&gt;@Debayan Mukherjee​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello, thank you for your response. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please let me know if these are the correct commands to access the file from notebook&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can see the files in the repo folder&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I just noticed this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the file I am trying to access the size is 0 but there is contents in there so it shouldn't be 0&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/57i676F575F226D2475/image-size/large?v=v2&amp;amp;px=999" role="button" title="image" alt="image" /&gt;&lt;/span&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 16:45:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/2703#M31</guid>
      <dc:creator>Arby</dc:creator>
      <dc:date>2023-06-23T16:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Help With OSError: [Errno 95] Operation not supported: '/Workspace/Repos/Connectors....</title>
      <link>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/2702#M30</link>
      <description>&lt;P&gt;Hi, Could you please check if you can access the file from a notebook instead? &lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.databricks.com/files/index.html" alt="https://docs.databricks.com/files/index.html" target="_blank"&gt;https://docs.databricks.com/files/index.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tag&amp;nbsp;&lt;A href="https://community.databricks.com/s/profile/0053f000000WWwvAAG" alt="https://community.databricks.com/s/profile/0053f000000WWwvAAG" target="_blank"&gt;@Debayan&lt;/A&gt;​&amp;nbsp;with your next update so that I will get notified.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 07:26:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/2702#M30</guid>
      <dc:creator>Debayan</dc:creator>
      <dc:date>2023-06-23T07:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help With OSError: [Errno 95] Operation not supported: '/Workspace/Repos/Connectors....</title>
      <link>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/74658#M34770</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;Have we found a solution for this problem? I'm facing the same issue as you &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2024 15:34:39 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/74658#M34770</guid>
      <dc:creator>tramtran</dc:creator>
      <dc:date>2024-06-17T15:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help With OSError: [Errno 95] Operation not supported: '/Workspace/Repos/Connectors....</title>
      <link>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/119012#M45760</link>
      <description>&lt;P&gt;@Arb&lt;/P&gt;&lt;P&gt;Make sure the below is a file with extension .py and not a notebook. That should resolve the issue.&lt;BR /&gt;&lt;SPAN&gt;/Workspace/Repos/Connectors/Dev/utils/schemas/&lt;/SPAN&gt;&lt;A href="https://comptroller.py/" target="_blank" rel="nofollow noopener noreferrer"&gt;Comptroller.py&lt;/A&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 08:26:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/help-with-oserror-errno-95-operation-not-supported-workspace/m-p/119012#M45760</guid>
      <dc:creator>HarikaM</dc:creator>
      <dc:date>2025-05-13T08:26:08Z</dc:date>
    </item>
  </channel>
</rss>

