<?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: Delete feature tables through the Python API in Machine Learning</title>
    <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26304#M1469</link>
    <description>&lt;P&gt;Thanks, I see it has been added as an experimental method in version 0.4.1 (Databricks Runtime 10.5 for ML).&lt;/P&gt;&lt;P&gt;There is still no way to control access though, hopefully that will be added too.&lt;/P&gt;</description>
    <pubDate>Fri, 13 May 2022 07:06:47 GMT</pubDate>
    <dc:creator>GabrieleMuciacc</dc:creator>
    <dc:date>2022-05-13T07:06:47Z</dc:date>
    <item>
      <title>Delete feature tables through the Python API</title>
      <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26295#M1460</link>
      <description>&lt;P&gt;The documentation explains how to &lt;A href="https://docs.databricks.com/applications/machine-learning/feature-store/ui.html#delete-a-feature-table" alt="https://docs.databricks.com/applications/machine-learning/feature-store/ui.html#delete-a-feature-table" target="_blank"&gt;delete feature tables through the UI&lt;/A&gt;. Is it possible to do the same using the Python &lt;I&gt;FeatureStoreClient&lt;/I&gt;? I cannot find anything in the docs: &lt;A href="https://docs.databricks.com/_static/documents/feature-store-python-api-reference-0-3-7.pdf" target="test_blank"&gt;https://docs.databricks.com/_static/documents/feature-store-python-api-reference-0-3-7.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Partially related: is it possible to manage &lt;A href="https://docs.databricks.com/applications/machine-learning/feature-store/access-control.html" alt="https://docs.databricks.com/applications/machine-learning/feature-store/access-control.html" target="_blank"&gt;control access&lt;/A&gt; through Python APIs too?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use case: we use ephemeral dev environments for development and we have automated deletion of resources when the environment is torn down. Now we are considering using the feature store, but we don't know how to automate deletion.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 14:02:34 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26295#M1460</guid>
      <dc:creator>GabrieleMuciacc</dc:creator>
      <dc:date>2022-03-08T14:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Delete feature tables through the Python API</title>
      <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26296#M1461</link>
      <description>&lt;P&gt;You can try to delete that table through metastore:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;%sql DROP TABLE IF EXISTS &amp;lt;feature_table_name&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 15:17:31 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26296#M1461</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2022-03-08T15:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Delete feature tables through the Python API</title>
      <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26297#M1462</link>
      <description>&lt;P&gt;Thanks @Hubert Dudek​&amp;nbsp;for the answer. However, this only deletes the underlying Delta table, not the feature table in the store: you end up in an inconsistent state where you cannot  write/read and you cannot re-create the table.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 17:05:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26297#M1462</guid>
      <dc:creator>GabrieleMuciacc</dc:creator>
      <dc:date>2022-03-08T17:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Delete feature tables through the Python API</title>
      <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26298#M1463</link>
      <description>&lt;P&gt;@Kaniz Fatma​&amp;nbsp;@Piper Wilson​&amp;nbsp; maybe someone from Databricks team could check is there any API command or API endpoint or SQL command or  to delete feature tables? I couldn't find any and workaround which I proposed create inconsistent state.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Mar 2022 17:39:12 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26298#M1463</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2022-03-08T17:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Delete feature tables through the Python API</title>
      <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26300#M1465</link>
      <description>&lt;P&gt;Hi @Kaniz Fatma​&amp;nbsp;, unfortunately this is the same link I included in my question and it does not help. I was asking about doing it programmatically.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 10:14:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26300#M1465</guid>
      <dc:creator>GabrieleMuciacc</dc:creator>
      <dc:date>2022-03-09T10:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Delete feature tables through the Python API</title>
      <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26301#M1466</link>
      <description>&lt;P&gt;@Kaniz Fatma​&amp;nbsp;no this is through UI, request is how to do it programatically&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2022 10:41:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26301#M1466</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2022-03-09T10:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Delete feature tables through the Python API</title>
      <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26303#M1468</link>
      <description>&lt;P&gt;I am not 100% familar with this but does this relates to feature store. if yes, API works it seems &lt;A href="https://docs.databricks.com/applications/machine-learning/feature-store/python-api.html" target="test_blank"&gt;https://docs.databricks.com/applications/machine-learning/feature-store/python-api.html&lt;/A&gt;. Please let me know if this help @Gabriele Muciaccia​&amp;nbsp; Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 06:08:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26303#M1468</guid>
      <dc:creator>Atanu</dc:creator>
      <dc:date>2022-05-13T06:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Delete feature tables through the Python API</title>
      <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26304#M1469</link>
      <description>&lt;P&gt;Thanks, I see it has been added as an experimental method in version 0.4.1 (Databricks Runtime 10.5 for ML).&lt;/P&gt;&lt;P&gt;There is still no way to control access though, hopefully that will be added too.&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 07:06:47 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26304#M1469</guid>
      <dc:creator>GabrieleMuciacc</dc:creator>
      <dc:date>2022-05-13T07:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Delete feature tables through the Python API</title>
      <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26306#M1471</link>
      <description>&lt;P&gt;I have selected as best, but @Atanu Sarkar​&amp;nbsp;could you please edit your answer to include feature store and Databricks Runtime versions? Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2022 08:44:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26306#M1471</guid>
      <dc:creator>GabrieleMuciacc</dc:creator>
      <dc:date>2022-05-13T08:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Delete feature tables through the Python API</title>
      <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26307#M1472</link>
      <description>&lt;P&gt;Setting permission to feature table programmatically will be much helpful. Another API I think that will be useful is the search function. and even better, if we can have a databricks (restful) API endpoint for feature store.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2022 08:52:47 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26307#M1472</guid>
      <dc:creator>SonghuaZhang</dc:creator>
      <dc:date>2022-08-03T08:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: Delete feature tables through the Python API</title>
      <link>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26308#M1473</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;from databricks import feature_store
fs = feature_store.FeatureStoreClient() 
fs.drop_table(FEATURE_TABLE_NAME)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;As of Databricks Runtime 10.5 for ML. &lt;A href="https://docs.databricks.com/dev-tools/api/python/latest/feature-store/client.html#databricks.feature_store.client.FeatureStoreClient.drop_table" alt="https://docs.databricks.com/dev-tools/api/python/latest/feature-store/client.html#databricks.feature_store.client.FeatureStoreClient.drop_table" target="_blank"&gt;Docs&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2022 09:40:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/delete-feature-tables-through-the-python-api/m-p/26308#M1473</guid>
      <dc:creator>User16788316720</dc:creator>
      <dc:date>2022-12-20T09:40:32Z</dc:date>
    </item>
  </channel>
</rss>

