<?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: Fetching data from Databricks server with delta sharing limits to 100 records in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/fetching-data-from-databricks-server-with-delta-sharing-limits/m-p/131453#M49094</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/183759"&gt;@uddipak&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Maybe internally load_as_pandas has some default limit? Can you try to set limit explicitly?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import delta_sharing

client = delta_sharing.SharingClient("...")
client.list_all_tables() # this works fine
.
.
.
delta_sharing.load_as_pandas(table_url, limit=1000)
print(len(pandas_df)) # this prints 100
print(pandas_df.head(1000)) # this prints 100 records&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 09 Sep 2025 18:44:26 GMT</pubDate>
    <dc:creator>szymon_dybczak</dc:creator>
    <dc:date>2025-09-09T18:44:26Z</dc:date>
    <item>
      <title>Fetching data from Databricks server with delta sharing limits to 100 records</title>
      <link>https://community.databricks.com/t5/data-engineering/fetching-data-from-databricks-server-with-delta-sharing-limits/m-p/131447#M49093</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to fetch a table from a Databricks instance hosted in Azure using delta sharing python library. The delta sharing library always returns a dataframe of length 100 when fetching table data. I tested all the tables shared with me. The instance is managed by a different team and they have confirmed there is no configuration which would limit the data shared.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import delta_sharing

client = delta_sharing.SharingClient("...")
client.list_all_tables() # this works fine
.
.
.
delta_sharing.load_as_pandas(table_url)
print(len(pandas_df)) # this prints 100
print(pandas_df.head(1000)) # this prints 100 records&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Is there any mistake in the code or is there some issue in configuring the Databricks delta sharing server?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 17:24:46 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/fetching-data-from-databricks-server-with-delta-sharing-limits/m-p/131447#M49093</guid>
      <dc:creator>uddipak</dc:creator>
      <dc:date>2025-09-09T17:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching data from Databricks server with delta sharing limits to 100 records</title>
      <link>https://community.databricks.com/t5/data-engineering/fetching-data-from-databricks-server-with-delta-sharing-limits/m-p/131453#M49094</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/183759"&gt;@uddipak&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Maybe internally load_as_pandas has some default limit? Can you try to set limit explicitly?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import delta_sharing

client = delta_sharing.SharingClient("...")
client.list_all_tables() # this works fine
.
.
.
delta_sharing.load_as_pandas(table_url, limit=1000)
print(len(pandas_df)) # this prints 100
print(pandas_df.head(1000)) # this prints 100 records&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 09 Sep 2025 18:44:26 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/fetching-data-from-databricks-server-with-delta-sharing-limits/m-p/131453#M49094</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-09T18:44:26Z</dc:date>
    </item>
  </channel>
</rss>

