<?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 Data Pull from S3 in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/data-pull-from-s3/m-p/37707#M26426</link>
    <description>&lt;P&gt;I have some file in S3, I want to process through Databricks, How it possible? Could you please help me regarding the same.&lt;/P&gt;</description>
    <pubDate>Sun, 16 Jul 2023 15:48:54 GMT</pubDate>
    <dc:creator>bchaubey</dc:creator>
    <dc:date>2023-07-16T15:48:54Z</dc:date>
    <item>
      <title>Data Pull from S3</title>
      <link>https://community.databricks.com/t5/data-engineering/data-pull-from-s3/m-p/37707#M26426</link>
      <description>&lt;P&gt;I have some file in S3, I want to process through Databricks, How it possible? Could you please help me regarding the same.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 15:48:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/data-pull-from-s3/m-p/37707#M26426</guid>
      <dc:creator>bchaubey</dc:creator>
      <dc:date>2023-07-16T15:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Data Pull from S3</title>
      <link>https://community.databricks.com/t5/data-engineering/data-pull-from-s3/m-p/37727#M26434</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/3625"&gt;@bchaubey&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;You can access S3 data in databricks by mounting your S3 bucket with databricks .&lt;/P&gt;&lt;P&gt;Please refer below documents that will help you to connect S3 with databricks.&lt;/P&gt;&lt;P&gt;&lt;A href="https://hevodata.com/learn/databricks-s3/" target="_blank"&gt;Databricks S3 Integration: 3 Easy Steps (hevodata.com)&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 06:13:34 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/data-pull-from-s3/m-p/37727#M26434</guid>
      <dc:creator>Ajay-Pandey</dc:creator>
      <dc:date>2023-07-17T06:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Data Pull from S3</title>
      <link>https://community.databricks.com/t5/data-engineering/data-pull-from-s3/m-p/37747#M26440</link>
      <description>&lt;P&gt;Databricks is actually made to connect to data lake (adls/s3) data.&lt;BR /&gt;There are several methods to read data in such a data lake.&amp;nbsp; The easiest way is already mentioned by ajaypanday6781 (using mounts).&lt;BR /&gt;However Databricks advices against using mounts but instead using Unity Catalog.&lt;BR /&gt;&lt;A href="https://docs.databricks.com/storage/amazon-s3.html" target="_self"&gt;https://docs.databricks.com/storage/amazon-s3.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I would try to use the Unity Catalog method if it is possible for you as Unity is free and gives you some nice features.&lt;BR /&gt;The mount method however still works, but cannot be used in combination with Unity.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 07:35:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/data-pull-from-s3/m-p/37747#M26440</guid>
      <dc:creator>-werners-</dc:creator>
      <dc:date>2023-07-17T07:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Data Pull from S3</title>
      <link>https://community.databricks.com/t5/data-engineering/data-pull-from-s3/m-p/37821#M26471</link>
      <description>&lt;P&gt;&amp;nbsp;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/3625"&gt;@bchaubey&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope everything is going great.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Just wanted to check in if you were able to resolve your issue. If yes, would you be happy to mark an answer as best so that other members can find the solution more quickly? If not, please tell us so we can help you.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 04:40:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/data-pull-from-s3/m-p/37821#M26471</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-18T04:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: Data Pull from S3</title>
      <link>https://community.databricks.com/t5/data-engineering/data-pull-from-s3/m-p/37822#M26472</link>
      <description>&lt;LI-CODE lang="python"&gt;access_key = dbutils.secrets.get(scope = "aws", key = "aws-access-key")
secret_key = dbutils.secrets.get(scope = "aws", key = "aws-secret-key")
encoded_secret_key = secret_key.replace("/", "%2F")
aws_bucket_name = "&amp;lt;aws-bucket-name&amp;gt;"
mount_name = "&amp;lt;mount-name&amp;gt;"

dbutils.fs.mount(f"s3a://{access_key}:{encoded_secret_key}@{aws_bucket_name}", f"/mnt/{mount_name}")
display(dbutils.fs.ls(f"/mnt/{mount_name}"))&lt;/LI-CODE&gt;&lt;P&gt;Source: &lt;A href="https://docs.databricks.com/dbfs/mounts.html" target="_blank"&gt;https://docs.databricks.com/dbfs/mounts.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2023 05:05:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/data-pull-from-s3/m-p/37822#M26472</guid>
      <dc:creator>dream</dc:creator>
      <dc:date>2023-07-18T05:05:54Z</dc:date>
    </item>
  </channel>
</rss>

