<?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: How to Pass Data to a Databricks App? in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/143429#M52175</link>
    <description>&lt;P&gt;Did you&amp;nbsp; add the volumes as an app resource to app config ? And also you need to provide the needed privileges for the app service principal or pat&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jan 2026 06:16:11 GMT</pubDate>
    <dc:creator>gokkul</dc:creator>
    <dc:date>2026-01-09T06:16:11Z</dc:date>
    <item>
      <title>How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/101664#M40766</link>
      <description>&lt;P&gt;I am developing a Databricks application using the Streamlit package. I was able to get a "hello world" app deployed successfully, but now I am trying to pass data that exists in the dbfs on the same instance. I try to read a csv saved to the dbfs but get a file not found error. I am assuming there is a virtual environment being setup during deployment and there is an additional step I need to do to configure the path. Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2024 21:47:40 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/101664#M40766</guid>
      <dc:creator>adam_mich</dc:creator>
      <dc:date>2024-12-10T21:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/101668#M40767</link>
      <description>&lt;P&gt;Hello Adam,&lt;/P&gt;
&lt;P&gt;So you are running something similar to:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; import streamlit as st
 import pandas as pd

 # Path to the CSV file in DBFS
 file_path = '/dbfs/path/to/your/file.csv'

 # Read the CSV file
 df = pd.read_csv(file_path)

 # Display the dataframe in Streamlit
 st.write(df)&lt;/LI-CODE&gt;
&lt;P&gt;And it is resulting in this file not found issue?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2024 22:39:23 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/101668#M40767</guid>
      <dc:creator>Walter_C</dc:creator>
      <dc:date>2024-12-10T22:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/101768#M40821</link>
      <description>&lt;P&gt;Yes, exactly. To add more context, the read_csv() line works if I just run it in a notebook with the same path, but it does not work once I try and deploy the application.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 13:44:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/101768#M40821</guid>
      <dc:creator>adam_mich</dc:creator>
      <dc:date>2024-12-11T13:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/101776#M40826</link>
      <description>&lt;P&gt;What if you try to list the file using&amp;nbsp;dbutils.fs.ls("dbfs:/mnt/path/to/data") does it list it?&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 14:35:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/101776#M40826</guid>
      <dc:creator>Walter_C</dc:creator>
      <dc:date>2024-12-11T14:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/101780#M40827</link>
      <description>&lt;P&gt;Well, I can't even use dbutils in the app. When I try that, I get a NameError name 'dbutils' is not defined error. Again, this just works in a notebook but not the app.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I try and do this:&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;os.listdir('/dbfs/'), it again does not find that directory.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 11 Dec 2024 15:02:28 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/101780#M40827</guid>
      <dc:creator>adam_mich</dc:creator>
      <dc:date>2024-12-11T15:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/102972#M41287</link>
      <description>&lt;P&gt;Have you found a solution? As far as I can see, the apps run in an environment where DBFS is not mounted.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2024 09:41:39 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/102972#M41287</guid>
      <dc:creator>matteodefelice</dc:creator>
      <dc:date>2024-12-23T09:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/103013#M41295</link>
      <description>&lt;P&gt;The environment where the app runs does not have the following directories in the root folder:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;['/media', '/libx32', '/var', '/sbin', '/bin', '/srv', '/proc', '/opt', '/home', '/etc', '/lib', '/usr', '/boot', '/tmp', '/root', '/sys', '/run', '/dev', '/lib64', '/lib32', '/mnt', '/app', '/databricks']&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;And `/mnt` is empty.&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 23 Dec 2024 12:22:26 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/103013#M41295</guid>
      <dc:creator>matteodefelice</dc:creator>
      <dc:date>2024-12-23T12:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/105537#M42173</link>
      <description>&lt;P&gt;Hello Walter,&lt;/P&gt;&lt;P&gt;did you have the possibility to look into this?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 08:48:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/105537#M42173</guid>
      <dc:creator>matteodefelice</dc:creator>
      <dc:date>2025-01-14T08:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/105542#M42176</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;Ensure that the environment where Streamlit is running has access to the DBFS paths. This is typically handled by Databricks, but if you are running Streamlit outside of Databricks, you may need to configure access to DBFS.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;If you are running Streamlit outside of Databricks, consider using Databricks Connect to interact with Databricks resources&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 09:42:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/105542#M42176</guid>
      <dc:creator>saurabh18cs</dc:creator>
      <dc:date>2025-01-14T09:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/105544#M42178</link>
      <description>&lt;P&gt;That's the point. I am running streamlit from a Databricks App, so I was wondering if they can propose the "right" way to access DBFS. Or if they think that the way to exchange data should be using an SQL Warehouse.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 09:48:39 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/105544#M42178</guid>
      <dc:creator>matteodefelice</dc:creator>
      <dc:date>2025-01-14T09:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/106133#M42399</link>
      <description>&lt;P&gt;I have the identical problem in Databricks Apps.&amp;nbsp; I have tried...&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Reading from DBFS path using mount version `/dbfs/myfolder/myfile` and protocol `dbfs:/myfolder/myfile`&lt;/LI&gt;&lt;LI&gt;Reading from Unity Volumes `/Volumes/mycatalog/mydatabase/myfolder/myfile`&lt;UL&gt;&lt;LI&gt;Also made sure that the App principal had rights to read from the specific Unity Volume&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Reading from S3 path `s3://mybucket/mypath/myfile`&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;None of these methods worked for me and cannot use Apps until I have a solution for this.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2025 19:39:15 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/106133#M42399</guid>
      <dc:creator>txti</dc:creator>
      <dc:date>2025-01-17T19:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/124044#M47119</link>
      <description>&lt;P&gt;I’m also trying to find a solution. I’ve created folders and placed files in them, which I'm accessing from a Streamlit app. The app launches without any issues, but it’s unable to access the files stored in DBFS. I’d really appreciate it if you could share your solution. Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jul 2025 16:01:45 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/124044#M47119</guid>
      <dc:creator>old_student</dc:creator>
      <dc:date>2025-07-04T16:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/124062#M47122</link>
      <description>&lt;P&gt;Why can't you have the files loaded from UC volumes and reference them from the Apps?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jul 2025 23:33:37 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/124062#M47122</guid>
      <dc:creator>Sharanya13</dc:creator>
      <dc:date>2025-07-04T23:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/127860#M48111</link>
      <description>&lt;P&gt;I would love to know why apps cannot reference UC volumes as well.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Aug 2025 00:40:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/127860#M48111</guid>
      <dc:creator>bferrell</dc:creator>
      <dc:date>2025-08-09T00:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/137268#M50717</link>
      <description>&lt;P&gt;I don’t understand, there still seems to be no solution for this.&lt;BR /&gt;If we can’t read/write files from DBFS, volumes, or workspace, what’s the point?&lt;/P&gt;&lt;P&gt;Yes, SQL connectors work, but what if we need to do anything beyond that?&lt;BR /&gt;Even saving a simple edited file becomes impossible.&lt;/P&gt;&lt;P&gt;These issues have been reported for over 8 months and still no progress.&lt;BR /&gt;Why is this still unresolved?&lt;/P&gt;</description>
      <pubDate>Sun, 02 Nov 2025 00:11:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/137268#M50717</guid>
      <dc:creator>Snentley</dc:creator>
      <dc:date>2025-11-02T00:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/137272#M50718</link>
      <description>&lt;P&gt;I used Azure Blob Storage, and this resolved the issue. Our app now contains Python files in the Databricks app environment that have access to Azure Blob Storage using Azure credentials.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Nov 2025 07:01:43 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/137272#M50718</guid>
      <dc:creator>old_student</dc:creator>
      <dc:date>2025-11-02T07:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/137273#M50719</link>
      <description>&lt;P&gt;I used Azure Blob Storage, and this resolved the issue. Our app now contains Python files in the Databricks environment app that have access to Azure Blob Storage using Azure credentials.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Nov 2025 07:05:28 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/137273#M50719</guid>
      <dc:creator>old_student</dc:creator>
      <dc:date>2025-11-02T07:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/143429#M52175</link>
      <description>&lt;P&gt;Did you&amp;nbsp; add the volumes as an app resource to app config ? And also you need to provide the needed privileges for the app service principal or pat&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2026 06:16:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/143429#M52175</guid>
      <dc:creator>gokkul</dc:creator>
      <dc:date>2026-01-09T06:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to Pass Data to a Databricks App?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/148910#M52990</link>
      <description>&lt;P&gt;How did you use blob storage and how did it worked?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 15:53:20 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-pass-data-to-a-databricks-app/m-p/148910#M52990</guid>
      <dc:creator>swarnavenu</dc:creator>
      <dc:date>2026-02-20T15:53:20Z</dc:date>
    </item>
  </channel>
</rss>

