<?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 Auto loader in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/auto-loader/m-p/15436#M9767</link>
    <description>&lt;P&gt;How to get a list of file loaded by auto loader?&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jun 2022 20:08:58 GMT</pubDate>
    <dc:creator>bgarcia</dc:creator>
    <dc:date>2022-06-29T20:08:58Z</dc:date>
    <item>
      <title>Auto loader</title>
      <link>https://community.databricks.com/t5/data-engineering/auto-loader/m-p/15436#M9767</link>
      <description>&lt;P&gt;How to get a list of file loaded by auto loader?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 20:08:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/auto-loader/m-p/15436#M9767</guid>
      <dc:creator>bgarcia</dc:creator>
      <dc:date>2022-06-29T20:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Auto loader</title>
      <link>https://community.databricks.com/t5/data-engineering/auto-loader/m-p/15437#M9768</link>
      <description>&lt;P&gt;If you are using the&amp;nbsp;&lt;B&gt;checkpointLocation&lt;/B&gt;option you can read all the files that were processed by reading the rocksDB logs. Some example code to achieve that, note that you need to point to the path on the checkpoint location that you want to retrieve the loaded files list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;from glob import glob
import codecs
&amp;nbsp;
directory = "&amp;lt;YOUR_PATH_GOES_HERE&amp;gt;/sources/*/rocksdb/logs/"
for file in glob(f"{directory}/*.log"):
    with codecs.open(file, encoding='utf-8', errors='ignore') as f:
        f = f.readlines()
        print(f)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 20:20:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/auto-loader/m-p/15437#M9768</guid>
      <dc:creator>handreassa</dc:creator>
      <dc:date>2022-06-29T20:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: Auto loader</title>
      <link>https://community.databricks.com/t5/data-engineering/auto-loader/m-p/36280#M26087</link>
      <description>&lt;P&gt;It’s great feature and saves time&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 19:21:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/auto-loader/m-p/36280#M26087</guid>
      <dc:creator>Babu_spark</dc:creator>
      <dc:date>2023-06-29T19:21:11Z</dc:date>
    </item>
  </channel>
</rss>

