<?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: feature store in Get Started Discussions</title>
    <link>https://community.databricks.com/t5/get-started-discussions/feature-store/m-p/120911#M10147</link>
    <description>&lt;DIV class="paragraph"&gt;Here are some things to consider:&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;The best practice for designing a feature store in your scenario depends on balancing scalability, maintainability, and the dynamic nature of some dimensions like doctor names. Here's an outlined recommendation based on the provided context:&lt;/DIV&gt;
&lt;OL start="1"&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Separate Feature Tables for Each Dimension&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;Create feature tables for each dimension rather than one monolithic feature table containing all data. This approach can improve update performance, especially for fast-changing features like doctor names, as only specific tables need updates rather than the entire dataset.&lt;/LI&gt;
&lt;LI&gt;Feature tables can be efficiently managed by defining them with primary keys that identify entities uniquely, such as doctor IDs or patient IDs.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Dynamic Feature Handling and One-Hot Encoding&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;To handle dynamic columns (like doctor names), you can implement logic to redefine or backfill features when dimensions change. For example, introduce new columns or update existing ones as needed.&lt;/LI&gt;
&lt;LI&gt;One-hot encoding can be applied for categorical dimensions, but be cautious of cardinality. High-cardinality columns might increase dimensionality and reduce efficiency in models. Consider alternatives to one-hot encoding for such cases, such as embeddings.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Joins and Aggregates at the Feature Store Level&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;Perform joins and aggregations at the feature store level rather than delegating these tasks to models. This centralizes transformations and ensures alignment for both training and inference, eliminating potential offline/online data skew.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Time-Series Features and Versioning&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;For features that vary over time, create time-series feature tables and use techniques like "as-of" joins to retrieve values relevant to specific timestamps. Consider using Delta Lake's built-in versioning for auditability and historical retrievability.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Governance and Collaboration&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;Enforce best practices such as keeping features discoverable, reusable, and accessible for all teams while ensuring automated lineage tracking for governance. Separate sensitive features (e.g., patient data) from less sensitive ones for better control.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;DIV class="paragraph"&gt;Overall, splitting features into separate tables and handling dynamic dimensions programmatically ensures scalability and maintainability. Centralizing joins and aggregations avoids redundant design at the model level, while governance safeguards transformations against future changes. This approach aligns with Databricks Feature Store best practices while addressing your concerns about evolving dimensions like doctor names.&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;Cheers, Lou.&lt;/DIV&gt;</description>
    <pubDate>Wed, 04 Jun 2025 11:31:06 GMT</pubDate>
    <dc:creator>Louis_Frolio</dc:creator>
    <dc:date>2025-06-04T11:31:06Z</dc:date>
    <item>
      <title>feature store</title>
      <link>https://community.databricks.com/t5/get-started-discussions/feature-store/m-p/120887#M10146</link>
      <description>&lt;P&gt;&lt;SPAN&gt;i need to build for data science team feature store that will return one big df after one hot encoding for almost each dimension,join and group by.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;should I create one feature store for final output that contain all the relevant data or create feature store for each dim and do the joi and aggregation in feature store fir final output?&lt;/P&gt;&lt;P&gt;I worry since some of the columns indicate doctor name (hot encoding) and they can change once in a while.&amp;nbsp;&lt;/P&gt;&lt;P&gt;what is the best practice?&lt;/P&gt;&lt;P&gt;thanks it can really help me and it seems you have ton of experience&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 07:58:38 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/feature-store/m-p/120887#M10146</guid>
      <dc:creator>pargit2</dc:creator>
      <dc:date>2025-06-04T07:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: feature store</title>
      <link>https://community.databricks.com/t5/get-started-discussions/feature-store/m-p/120911#M10147</link>
      <description>&lt;DIV class="paragraph"&gt;Here are some things to consider:&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;The best practice for designing a feature store in your scenario depends on balancing scalability, maintainability, and the dynamic nature of some dimensions like doctor names. Here's an outlined recommendation based on the provided context:&lt;/DIV&gt;
&lt;OL start="1"&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Separate Feature Tables for Each Dimension&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;Create feature tables for each dimension rather than one monolithic feature table containing all data. This approach can improve update performance, especially for fast-changing features like doctor names, as only specific tables need updates rather than the entire dataset.&lt;/LI&gt;
&lt;LI&gt;Feature tables can be efficiently managed by defining them with primary keys that identify entities uniquely, such as doctor IDs or patient IDs.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Dynamic Feature Handling and One-Hot Encoding&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;To handle dynamic columns (like doctor names), you can implement logic to redefine or backfill features when dimensions change. For example, introduce new columns or update existing ones as needed.&lt;/LI&gt;
&lt;LI&gt;One-hot encoding can be applied for categorical dimensions, but be cautious of cardinality. High-cardinality columns might increase dimensionality and reduce efficiency in models. Consider alternatives to one-hot encoding for such cases, such as embeddings.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Joins and Aggregates at the Feature Store Level&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;Perform joins and aggregations at the feature store level rather than delegating these tasks to models. This centralizes transformations and ensures alignment for both training and inference, eliminating potential offline/online data skew.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Time-Series Features and Versioning&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;For features that vary over time, create time-series feature tables and use techniques like "as-of" joins to retrieve values relevant to specific timestamps. Consider using Delta Lake's built-in versioning for auditability and historical retrievability.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV class="paragraph"&gt;&lt;STRONG&gt;Governance and Collaboration&lt;/STRONG&gt;:
&lt;UL&gt;
&lt;LI&gt;Enforce best practices such as keeping features discoverable, reusable, and accessible for all teams while ensuring automated lineage tracking for governance. Separate sensitive features (e.g., patient data) from less sensitive ones for better control.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;DIV class="paragraph"&gt;Overall, splitting features into separate tables and handling dynamic dimensions programmatically ensures scalability and maintainability. Centralizing joins and aggregations avoids redundant design at the model level, while governance safeguards transformations against future changes. This approach aligns with Databricks Feature Store best practices while addressing your concerns about evolving dimensions like doctor names.&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph"&gt;Cheers, Lou.&lt;/DIV&gt;</description>
      <pubDate>Wed, 04 Jun 2025 11:31:06 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/feature-store/m-p/120911#M10147</guid>
      <dc:creator>Louis_Frolio</dc:creator>
      <dc:date>2025-06-04T11:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: feature store</title>
      <link>https://community.databricks.com/t5/get-started-discussions/feature-store/m-p/120960#M10148</link>
      <description>&lt;P&gt;hi Lou,&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;just to verify you suggest building a feature store for each dim and fact and then one united(join everything up)?&lt;/P&gt;&lt;P&gt;and you suggest to avoid one hot encoding and use embedding instead.&lt;/P&gt;&lt;P&gt;I hope I got you right.&lt;/P&gt;&lt;P&gt;and one more thing I work on data engineering workspace and our data science team has a different workspace.&lt;/P&gt;&lt;P&gt;should I build only the tables (bronze,silver,gold)in de workspace and build the feature stores in their workspace?&lt;/P&gt;&lt;P&gt;I understand that I can't share feature store using delta sharing,Is there a way to share it?&lt;/P&gt;&lt;P&gt;what is your recommendation?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Adi&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 18:05:40 GMT</pubDate>
      <guid>https://community.databricks.com/t5/get-started-discussions/feature-store/m-p/120960#M10148</guid>
      <dc:creator>pargit2</dc:creator>
      <dc:date>2025-06-04T18:05:40Z</dc:date>
    </item>
  </channel>
</rss>

