<?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 Azure Databricks Streamlit Application - Doubts in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/azure-databricks-streamlit-application-doubts/m-p/141315#M51834</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hi Databricks community, I am currently tasked with creating a stream lit application with the help of data bricks application feature, I have currently created a lake base instance to sync the delta table located at the unity catalog and I have also created the application using stream lit and connected the lake base instance as backend&amp;nbsp; and now I got a doubt, Is it possible to start/stop the lake base instance via the stream lit application Ui, if possible what are all the prerequisite access do I need to get in order to trigger lake base instance from my application and any code snippet that I can refer to?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 06 Dec 2025 12:26:52 GMT</pubDate>
    <dc:creator>RJTECHY210</dc:creator>
    <dc:date>2025-12-06T12:26:52Z</dc:date>
    <item>
      <title>Azure Databricks Streamlit Application - Doubts</title>
      <link>https://community.databricks.com/t5/data-engineering/azure-databricks-streamlit-application-doubts/m-p/141315#M51834</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Databricks community, I am currently tasked with creating a stream lit application with the help of data bricks application feature, I have currently created a lake base instance to sync the delta table located at the unity catalog and I have also created the application using stream lit and connected the lake base instance as backend&amp;nbsp; and now I got a doubt, Is it possible to start/stop the lake base instance via the stream lit application Ui, if possible what are all the prerequisite access do I need to get in order to trigger lake base instance from my application and any code snippet that I can refer to?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2025 12:26:52 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/azure-databricks-streamlit-application-doubts/m-p/141315#M51834</guid>
      <dc:creator>RJTECHY210</dc:creator>
      <dc:date>2025-12-06T12:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Azure Databricks Streamlit Application - Doubts</title>
      <link>https://community.databricks.com/t5/data-engineering/azure-databricks-streamlit-application-doubts/m-p/141332#M51835</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/111877"&gt;@RJTECHY210&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Yes, it's possible. You can use python sdk to achieve what you want. Here's a sample code for a reference:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from databricks.sdk import WorkspaceClient
from databricks.sdk.service.database import DatabaseInstance

# Initialize the Workspace client
w = WorkspaceClient()

# Stop a database instance
instance_name = "my-database-instance"
w.database.update_database_instance(
    name=instance_name,
    database_instance=DatabaseInstance(
        name=instance_name,
        stopped=True
    ),
    update_mask="*"
)
print(f"Stopped database instance: {instance_name}")

# Start a database instance
w.database.update_database_instance(
    name=instance_name,
    database_instance=DatabaseInstance(
        name=instance_name,
        stopped=False
    ),
    update_mask="*"
)
print(f"Started database instance: {instance_name}")&lt;/LI-CODE&gt;&lt;P&gt;Also, don't forget to add proper permission for you databricks apps service principal. To be able to start and stop lakebase instance you need to have &lt;STRONG&gt;can manage&lt;/STRONG&gt;&amp;nbsp;permissions:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="szymon_dybczak_0-1765046635264.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/22143i6B358875044F0548/image-size/medium?v=v2&amp;amp;px=400" role="button" title="szymon_dybczak_0-1765046635264.png" alt="szymon_dybczak_0-1765046635264.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2025 18:44:06 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/azure-databricks-streamlit-application-doubts/m-p/141332#M51835</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-12-06T18:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Azure Databricks Streamlit Application - Doubts</title>
      <link>https://community.databricks.com/t5/data-engineering/azure-databricks-streamlit-application-doubts/m-p/141418#M51836</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;, Thanks for the solution.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 16:24:24 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/azure-databricks-streamlit-application-doubts/m-p/141418#M51836</guid>
      <dc:creator>RJTECHY210</dc:creator>
      <dc:date>2025-12-08T16:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Azure Databricks Streamlit Application - Doubts</title>
      <link>https://community.databricks.com/t5/data-engineering/azure-databricks-streamlit-application-doubts/m-p/141457#M51837</link>
      <description>&lt;P&gt;No problem&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/111877"&gt;@RJTECHY210&lt;/a&gt;&amp;nbsp;, happy coding!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 22:14:00 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/azure-databricks-streamlit-application-doubts/m-p/141457#M51837</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-12-08T22:14:00Z</dc:date>
    </item>
  </channel>
</rss>

