<?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>All Khoros Community Forums Support (Not for Databricks Product Questions) posts</title>
    <link>https://community.databricks.com/t5/khoros-community-forums-support/bd-p/Community-Technical-Support</link>
    <description>All Khoros Community Forums Support (Not for Databricks Product Questions) posts</description>
    <pubDate>Tue, 14 Jul 2026 08:48:45 GMT</pubDate>
    <dc:creator>Community-Technical-Support</dc:creator>
    <dc:date>2026-07-14T08:48:45Z</dc:date>
    <item>
      <title>Re: Need Labs Access for Data Engineering Learning Plan</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/need-labs-access-for-data-engineering-learning-plan/m-p/160736#M234</link>
      <description>&lt;P&gt;&lt;SPAN&gt;The labs referenced in the Data Engineer Learning Plan aren’t included in the free learning plan itself.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Those hands-on labs are available through the Databricks Academy Labs subscription, which provides access to the lab-enabled versions of the courses.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you have a labs subscription, try navigating to the &lt;/SPAN&gt;&lt;SPAN&gt;Course Catalog / Catalogs in My Subscription&lt;/SPAN&gt;&lt;SPAN&gt; section and enroll in the lab-enabled version of the course rather than accessing it through the learning plan.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you’re accessing Databricks Academy through a partner organization or employer, the enrollment path may differ slightly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2026 12:20:09 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/need-labs-access-for-data-engineering-learning-plan/m-p/160736#M234</guid>
      <dc:creator>Yogasathyandrun</dc:creator>
      <dc:date>2026-06-27T12:20:09Z</dc:date>
    </item>
    <item>
      <title>Need Labs Access for Data Engineering Learning Plan</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/need-labs-access-for-data-engineering-learning-plan/m-p/160735#M233</link>
      <description>&lt;P class=""&gt;I am currently going through the &lt;STRONG&gt;Data Engineering Learning Plan&lt;/STRONG&gt;. As I progress through the course, I noticed that it refers to labs, but I'm not sure where I can find or access them.&lt;/P&gt;&lt;P&gt;It would be very helpful if someone could guide me on how to access these labs.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://customer-academy.databricks.com/learn/learning-plans/10/data-engineer-learning-plan" target="_blank" rel="noopener"&gt;https://customer-academy.databricks.com/learn/learning-plans/10/data-engineer-learning-plan&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2026 12:03:15 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/need-labs-access-for-data-engineering-learning-plan/m-p/160735#M233</guid>
      <dc:creator>VijayRam</dc:creator>
      <dc:date>2026-06-27T12:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Inference Lakehouse Monitor , how to create a monitor on more than one prediction</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/inference-lakehouse-monitor-how-to-create-a-monitor-on-more-than/m-p/160615#M232</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This is a known limitation of the Databricks Lakehouse Monitoring API. Here's what you need to know and the workarounds:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Limitation:&lt;BR /&gt;"prediction_col" must be a double type (not a string, and not a list/array)&lt;BR /&gt;Reference :&amp;nbsp;&lt;A title="Medium Reference" href="https://medium.com/marvelous-mlops/streamlining-ml-model-monitoring-with-databricks-lakehouse-and-inference-tables-f0a99ab03291" target="_self"&gt;https://medium.com/marvelous-mlops/streamlining-ml-model-monitoring-with-databricks-lakehouse-and-inference-tables-f0a99ab03291&lt;/A&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A class="" title="https://medium.com/marvelous-mlops/streamlining-ml-model-monitoring-with-databricks-lakehouse-and-inference-tables-f0a99ab03291" href="https://medium.com/marvelous-mlops/streamlining-ml-model-monitoring-with-databricks-lakehouse-and-inference-tables-f0a99ab03291" rel="noreferrer noopener" aria-label="Link https://medium.com/marvelous-mlops/streamlining-ml-model-monitoring-with-databricks-lakehouse-and-inference-tables-f0a99ab03291" target="_blank"&gt;The API only accepts a single scalar column. There's no native support for multi-output predictions like quantile regression.&lt;BR /&gt;Workaround Options:&lt;BR /&gt;&lt;SPAN&gt;1.&amp;nbsp;Create separate monitors per quantile (Recommended) : Unpivot your quantile predictions into separate tables, each with its own scalar "prediction_col", and create one monitor per quantile&amp;nbsp;&lt;/SPAN&gt;&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;e.g., for quantiles [0.1, 0.5, 0.9]&lt;BR /&gt;for quantile, col_name in [("q10", "pred_q10"), ("q50", "pred_q50"), ("q90", "pred_q90")]:&lt;BR /&gt;spark.sql(f"""&lt;BR /&gt;CREATE OR REPLACE TABLE {CATALOG}.{SCHEMA}.inference_log_{quantile}&lt;BR /&gt;AS SELECT *, {col_name} AS prediction FROM {TABLE_NAME}&lt;BR /&gt;""")&lt;BR /&gt;w.quality_monitors.create(&lt;BR /&gt;table_name=f"{CATALOG}.{SCHEMA}.inference_log_{quantile}",&lt;BR /&gt;inference_log=MonitorInferenceLog(&lt;BR /&gt;granularities=GRANULARITIES,&lt;BR /&gt;timestamp_col=TIMESTAMP_COL,&lt;BR /&gt;model_id_col=MODEL_ID_COL,&lt;BR /&gt;prediction_col="prediction", &lt;BR /&gt;problem_type=MonitorInferenceLogProblemType.PROBLEM_TYPE_REGRESSION,&lt;BR /&gt;label_col=LABEL_COL,&lt;BR /&gt;),&lt;BR /&gt;output_schema_name=f"{CATALOG}.{SCHEMA}",&lt;BR /&gt;assets_dir=f"{ASSETS_DIR}/{quantile}",&lt;BR /&gt;)&lt;/STRONG&gt;&lt;/PRE&gt;&lt;P&gt;2. Use "custom_metrics" for the extra quantiles&lt;/P&gt;&lt;P&gt;Keep one quantile as the primary "prediction_col" (e.g., median), and track the others via custom metrics:&lt;/P&gt;&lt;PRE&gt;from databricks.sdk.service.catalog import MonitorMetric, MonitorMetricType&lt;BR /&gt;custom_metrics = [&lt;BR /&gt;MonitorMetric(&lt;BR /&gt;name="mean_pred_q10",&lt;BR /&gt;input_columns=["pred_q10"],&lt;BR /&gt;definition="avg(:pred_q10)",&lt;BR /&gt;output_data_type="double",&lt;BR /&gt;type=MonitorMetricType.CUSTOM_METRIC_TYPE_AGGREGATE,&lt;BR /&gt;),&lt;BR /&gt;MonitorMetric(&lt;BR /&gt;name="mean_pred_q90",&lt;BR /&gt;input_columns=["pred_q90"],&lt;BR /&gt;definition="avg(:pred_q90)",&lt;BR /&gt;output_data_type="double",&lt;BR /&gt;type=MonitorMetricType.CUSTOM_METRIC_TYPE_AGGREGATE,&lt;BR /&gt;),&lt;BR /&gt;]&lt;BR /&gt;&lt;BR /&gt;w.quality_monitors.create(&lt;BR /&gt;table_name=TABLE_NAME,&lt;BR /&gt;inference_log=MonitorInferenceLog(&lt;BR /&gt;prediction_col="pred_q50", ]&lt;BR /&gt;...&lt;BR /&gt;),&lt;BR /&gt;custom_metrics=custom_metrics,&lt;BR /&gt;...&lt;BR /&gt;)&lt;/PRE&gt;&lt;P&gt;3. Use Snapshot analysis instead&lt;/P&gt;&lt;P&gt;If you don't need the inference-specific accuracy metrics (MSE, etc.), switch to a &lt;STRONG&gt;Snapshot monitor.&lt;/STRONG&gt; It will profile all your quantile columns as regular numeric columns and still compute drift/distribution stats across all of them no "prediction_col" constraint.&lt;BR /&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2026 06:03:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/inference-lakehouse-monitor-how-to-create-a-monitor-on-more-than/m-p/160615#M232</guid>
      <dc:creator>Sureshkrishna</dc:creator>
      <dc:date>2026-06-26T06:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Inference Lakehouse Monitor , how to create a monitor on more than one prediction</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/inference-lakehouse-monitor-how-to-create-a-monitor-on-more-than/m-p/156118#M221</link>
      <description>&lt;P&gt;Unfortunately this can only take a single column. To monitor a list of predictions for quantile regression, you need to flatten the list into distinct columns before creating the monitor.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2026 01:27:09 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/inference-lakehouse-monitor-how-to-create-a-monitor-on-more-than/m-p/156118#M221</guid>
      <dc:creator>AustinZaccor</dc:creator>
      <dc:date>2026-05-05T01:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Most appropriate way to re-highlight a post on Databricks Community?</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/most-appropriate-way-to-re-highlight-a-post-on-databricks/m-p/156096#M224</link>
      <description>&lt;P&gt;Perfect, I'll keep this in mind next time. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 16:34:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/most-appropriate-way-to-re-highlight-a-post-on-databricks/m-p/156096#M224</guid>
      <dc:creator>ChristianRRL</dc:creator>
      <dc:date>2026-05-04T16:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Most appropriate way to re-highlight a post on Databricks Community?</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/most-appropriate-way-to-re-highlight-a-post-on-databricks/m-p/156095#M223</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/96188"&gt;@ChristianRRL&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I’d suggest adding a quick comment on your post, it helps bring it back up on the homepage so it gets more visibility.&lt;/P&gt;
&lt;P&gt;Also, this post would be a better fit for the&amp;nbsp;&lt;A href="https://community.databricks.com/t5/khoros-community-forums-support/bd-p/Community-Technical-Support" target="_blank"&gt;Community Forums Support &lt;/A&gt;page, since the discussion is about the community itself.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 16:30:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/most-appropriate-way-to-re-highlight-a-post-on-databricks/m-p/156095#M223</guid>
      <dc:creator>Advika</dc:creator>
      <dc:date>2026-05-04T16:30:41Z</dc:date>
    </item>
    <item>
      <title>Most appropriate way to re-highlight a post on Databricks Community?</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/most-appropriate-way-to-re-highlight-a-post-on-databricks/m-p/156092#M222</link>
      <description>&lt;P&gt;Hi there, wasn't really sure what the best way/place to post this. Please feel free to give me feedback on how to best do this in the future!&lt;/P&gt;&lt;P&gt;I posted a topic on Friday, and I think since it was right before the weekend my post may have been buried. Normally what would be the best way to bring attention to a post that hasn't been reviewed yet?&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://community.databricks.com/t5/data-engineering/declarative-automation-bundle-reusable-job-cluster-configuration/td-p/155976" target="_blank"&gt;Declarative Automation Bundle - Reusable job_clust... - Databricks Community - 155976&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 04 May 2026 16:10:56 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/most-appropriate-way-to-re-highlight-a-post-on-databricks/m-p/156092#M222</guid>
      <dc:creator>ChristianRRL</dc:creator>
      <dc:date>2026-05-04T16:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: What does 50% even mean?</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/what-does-50-even-mean/m-p/155895#M229</link>
      <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 19:15:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/what-does-50-even-mean/m-p/155895#M229</guid>
      <dc:creator>Steve_Lyle_BPCS</dc:creator>
      <dc:date>2026-04-30T19:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: What does 50% even mean?</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/what-does-50-even-mean/m-p/155894#M228</link>
      <description>&lt;P&gt;Thanks for sharing this feedback,&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/98864"&gt;@Steve_Lyle_BPCS&lt;/a&gt;.&lt;BR /&gt;I hear your point on the lack of context and clarity. I will take this back to the team to refine this experience. Appreciate you raising it.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 19:13:48 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/what-does-50-even-mean/m-p/155894#M228</guid>
      <dc:creator>Advika</dc:creator>
      <dc:date>2026-04-30T19:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: What does 50% even mean?</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/what-does-50-even-mean/m-p/155883#M227</link>
      <description>&lt;P&gt;Of course you understand I did click through on that before this post.&amp;nbsp; Have you?&amp;nbsp; When you do you land on your profile without any indication of what is expected. In fact, good design would mean any average user can land on the profile through _any_different_path_ and would "get" what is intended by the 50% rating.&amp;nbsp;&lt;BR /&gt;But the real point of the post is, as currently designed, "50%" without context of "why".&amp;nbsp; Except perhaps a _really_ disassociated and visually trivialized link.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 14:27:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/what-does-50-even-mean/m-p/155883#M227</guid>
      <dc:creator>Steve_Lyle_BPCS</dc:creator>
      <dc:date>2026-04-30T14:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: What does 50% even mean?</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/what-does-50-even-mean/m-p/155880#M226</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/98864"&gt;@Steve_Lyle_BPCS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;It measures your profile completness. For example if you add something to your profile, i.e biography, image, linkedin profile your overall score should increase&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="szymon_dybczak_0-1777558386470.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/26543i2261DE9713C2C743/image-size/medium?v=v2&amp;amp;px=400" role="button" title="szymon_dybczak_0-1777558386470.png" alt="szymon_dybczak_0-1777558386470.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If my answer was helpful, please consider marking it as accepted solution.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 14:14:20 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/what-does-50-even-mean/m-p/155880#M226</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2026-04-30T14:14:20Z</dc:date>
    </item>
    <item>
      <title>What does 50% even mean?</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/what-does-50-even-mean/m-p/155878#M225</link>
      <description>&lt;P&gt;What's even being measured?&amp;nbsp; What is the data? What got me to 50% on the path to what target?&amp;nbsp; What's it take to get to 100%? What is the story this is telling?&lt;BR /&gt;This is "THE" data &amp;amp; analytics company isn't it?&amp;nbsp; Cobbler's kids situation?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 14:10:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/what-does-50-even-mean/m-p/155878#M225</guid>
      <dc:creator>Steve_Lyle_BPCS</dc:creator>
      <dc:date>2026-04-30T14:10:29Z</dc:date>
    </item>
    <item>
      <title>What challenges do developers face when building a scalable Food Donation App platform?</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/what-challenges-do-developers-face-when-building-a-scalable-food/m-p/151131#M216</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Building &lt;/SPAN&gt;&lt;SPAN class=""&gt;a &lt;/SPAN&gt;&lt;SPAN class=""&gt;scalable &lt;/SPAN&gt;&lt;SPAN class=""&gt;Food &lt;/SPAN&gt;&lt;SPAN class=""&gt;Donation &lt;/SPAN&gt;&lt;SPAN class=""&gt;App &lt;/SPAN&gt;&lt;SPAN class=""&gt;platform &lt;/SPAN&gt;&lt;SPAN class=""&gt;comes &lt;/SPAN&gt;&lt;SPAN class=""&gt;with &lt;/SPAN&gt;&lt;SPAN class=""&gt;several &lt;/SPAN&gt;&lt;SPAN class=""&gt;technical &lt;/SPAN&gt;&lt;SPAN class=""&gt;and &lt;/SPAN&gt;&lt;SPAN class=""&gt;operational &lt;/SPAN&gt;&lt;SPAN class=""&gt;challenges. &lt;/SPAN&gt;&lt;SPAN class=""&gt;Developers &lt;/SPAN&gt;&lt;SPAN class=""&gt;must &lt;/SPAN&gt;&lt;SPAN class=""&gt;design &lt;/SPAN&gt;&lt;SPAN class=""&gt;a &lt;/SPAN&gt;&lt;SPAN class=""&gt;system &lt;/SPAN&gt;&lt;SPAN class=""&gt;that &lt;/SPAN&gt;&lt;SPAN class=""&gt;can &lt;/SPAN&gt;&lt;SPAN class=""&gt;efficiently &lt;/SPAN&gt;&lt;SPAN class=""&gt;connect &lt;/SPAN&gt;&lt;SPAN class=""&gt;donors, &lt;/SPAN&gt;&lt;SPAN class=""&gt;volunteers, &lt;/SPAN&gt;&lt;SPAN class=""&gt;NGOs, &lt;/SPAN&gt;&lt;SPAN class=""&gt;and &lt;/SPAN&gt;&lt;SPAN class=""&gt;recipients &lt;/SPAN&gt;&lt;SPAN class=""&gt;while &lt;/SPAN&gt;&lt;SPAN class=""&gt;handling &lt;/SPAN&gt;&lt;SPAN class=""&gt;real-&lt;/SPAN&gt;&lt;SPAN class=""&gt;time &lt;/SPAN&gt;&lt;SPAN class=""&gt;updates &lt;/SPAN&gt;&lt;SPAN class=""&gt;for &lt;/SPAN&gt;&lt;SPAN class=""&gt;food &lt;/SPAN&gt;&lt;SPAN class=""&gt;availability &lt;/SPAN&gt;&lt;SPAN class=""&gt;and &lt;/SPAN&gt;&lt;SPAN class=""&gt;pickups. &lt;/SPAN&gt;&lt;SPAN class=""&gt;Ensuring &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;food &lt;/SPAN&gt;&lt;SPAN class=""&gt;safety &lt;/SPAN&gt;&lt;SPAN class=""&gt;tracking&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;accurate &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;location-&lt;/SPAN&gt;&lt;SPAN class=""&gt;based &lt;/SPAN&gt;&lt;SPAN class=""&gt;matching&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;and &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;timely &lt;/SPAN&gt;&lt;SPAN class=""&gt;notifications&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;SPAN class=""&gt;can &lt;/SPAN&gt;&lt;SPAN class=""&gt;be &lt;/SPAN&gt;&lt;SPAN class=""&gt;complex &lt;/SPAN&gt;&lt;SPAN class=""&gt;when &lt;/SPAN&gt;&lt;SPAN class=""&gt;the &lt;/SPAN&gt;&lt;SPAN class=""&gt;number &lt;/SPAN&gt;&lt;SPAN class=""&gt;of &lt;/SPAN&gt;&lt;SPAN class=""&gt;users &lt;/SPAN&gt;&lt;SPAN class=""&gt;grows. &lt;/SPAN&gt;&lt;SPAN class=""&gt;Another &lt;/SPAN&gt;&lt;SPAN class=""&gt;challenge &lt;/SPAN&gt;&lt;SPAN class=""&gt;is &lt;/SPAN&gt;&lt;SPAN class=""&gt;building &lt;/SPAN&gt;&lt;SPAN class=""&gt;a &lt;/SPAN&gt;&lt;SPAN class=""&gt;reliable &lt;/SPAN&gt;&lt;SPAN class=""&gt;backend &lt;/SPAN&gt;&lt;SPAN class=""&gt;that &lt;/SPAN&gt;&lt;SPAN class=""&gt;supports &lt;/SPAN&gt;&lt;SPAN class=""&gt;high &lt;/SPAN&gt;&lt;SPAN class=""&gt;traffic, &lt;/SPAN&gt;&lt;SPAN class=""&gt;secure &lt;/SPAN&gt;&lt;SPAN class=""&gt;data &lt;/SPAN&gt;&lt;SPAN class=""&gt;management, &lt;/SPAN&gt;&lt;SPAN class=""&gt;and &lt;/SPAN&gt;&lt;SPAN class=""&gt;smooth &lt;/SPAN&gt;&lt;SPAN class=""&gt;integrations &lt;/SPAN&gt;&lt;SPAN class=""&gt;with &lt;/SPAN&gt;&lt;SPAN class=""&gt;maps, &lt;/SPAN&gt;&lt;SPAN class=""&gt;payment &lt;/SPAN&gt;&lt;SPAN class=""&gt;gateways, &lt;/SPAN&gt;&lt;SPAN class=""&gt;or &lt;/SPAN&gt;&lt;SPAN class=""&gt;third-&lt;/SPAN&gt;&lt;SPAN class=""&gt;party &lt;/SPAN&gt;&lt;SPAN class=""&gt;services. &lt;/SPAN&gt;&lt;SPAN class=""&gt;Developers &lt;/SPAN&gt;&lt;SPAN class=""&gt;also &lt;/SPAN&gt;&lt;SPAN class=""&gt;need &lt;/SPAN&gt;&lt;SPAN class=""&gt;to &lt;/SPAN&gt;&lt;SPAN class=""&gt;focus &lt;/SPAN&gt;&lt;SPAN class=""&gt;on &lt;/SPAN&gt;&lt;SPAN class=""&gt;user-&lt;/SPAN&gt;&lt;SPAN class=""&gt;friendly &lt;/SPAN&gt;&lt;SPAN class=""&gt;design &lt;/SPAN&gt;&lt;SPAN class=""&gt;to &lt;/SPAN&gt;&lt;SPAN class=""&gt;encourage &lt;/SPAN&gt;&lt;SPAN class=""&gt;participation. &lt;/SPAN&gt;&lt;SPAN class=""&gt;What &lt;/SPAN&gt;&lt;SPAN class=""&gt;technologies, &lt;/SPAN&gt;&lt;SPAN class=""&gt;architectures, &lt;/SPAN&gt;&lt;SPAN class=""&gt;or &lt;/SPAN&gt;&lt;SPAN class=""&gt;strategies &lt;/SPAN&gt;&lt;SPAN class=""&gt;do &lt;/SPAN&gt;&lt;SPAN class=""&gt;you &lt;/SPAN&gt;&lt;SPAN class=""&gt;think &lt;/SPAN&gt;&lt;SPAN class=""&gt;can &lt;/SPAN&gt;&lt;SPAN class=""&gt;help &lt;/SPAN&gt;&lt;SPAN class=""&gt;overcome &lt;/SPAN&gt;&lt;SPAN class=""&gt;these &lt;/SPAN&gt;&lt;SPAN class=""&gt;challenges &lt;/SPAN&gt;&lt;SPAN class=""&gt;and &lt;/SPAN&gt;&lt;SPAN class=""&gt;ensure &lt;/SPAN&gt;&lt;SPAN class=""&gt;the &lt;/SPAN&gt;&lt;SPAN class=""&gt;platform &lt;/SPAN&gt;&lt;SPAN class=""&gt;scales &lt;/SPAN&gt;&lt;SPAN class=""&gt;effectively?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 11:44:49 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/what-challenges-do-developers-face-when-building-a-scalable-food/m-p/151131#M216</guid>
      <dc:creator>jameswood32</dc:creator>
      <dc:date>2026-03-17T11:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to edit my post</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/unable-to-edit-my-post/m-p/151034#M215</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/105089"&gt;@Saf4Databricks&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;This is expected behaviour. The Edit option is available only for a limited time after a post is published. If you’d like to add additional details or share an update, please add a reply to your post.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 09:40:56 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/unable-to-edit-my-post/m-p/151034#M215</guid>
      <dc:creator>Advika</dc:creator>
      <dc:date>2026-03-16T09:40:56Z</dc:date>
    </item>
    <item>
      <title>Unable to edit my post</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/unable-to-edit-my-post/m-p/150863#M214</link>
      <description>&lt;P&gt;We are unable to edit our post. It works sometimes but not always. For example, when I click on the drop down menu on the top right corner of the post, the drop down menu does not give the "Edit" option as shown in the image below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Edit option not available" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/24803iDB89DB87EAD60009/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Edit_option_not_Available.png" alt="Edit option not available" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Edit option not available&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Mar 2026 02:48:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/unable-to-edit-my-post/m-p/150863#M214</guid>
      <dc:creator>Saf4Databricks</dc:creator>
      <dc:date>2026-03-14T02:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Community - Can't post images and other quality degradations</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/databricks-community-can-t-post-images-and-other-quality/m-p/149985#M210</link>
      <description>&lt;P&gt;Thank you for sharing the examples,&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/96188"&gt;@ChristianRRL&lt;/a&gt;!&lt;BR /&gt;We’ll continue to monitor this behaviour&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2026 11:31:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/databricks-community-can-t-post-images-and-other-quality/m-p/149985#M210</guid>
      <dc:creator>Advika</dc:creator>
      <dc:date>2026-03-06T11:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Community - Can't post images and other quality degradations</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/databricks-community-can-t-post-images-and-other-quality/m-p/149939#M209</link>
      <description>&lt;P&gt;Thank you for looking into this! Hopefully the copy-paste issue can be resolved soon, it's quite annoying.&lt;/P&gt;&lt;P&gt;Relating to the bullet point issue, I haven't been able to replicate it recently and agree that it may have been a one-time issue as&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/216690"&gt;@Ashwin_DSA&lt;/a&gt;&amp;nbsp;noted. But I'll provide a couple of quick examples below:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example 1: Correct/typical behavior&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;testing bullet 1&lt;/LI&gt;&lt;LI&gt;testing bullet 2&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Example 2: Unexpected/one-time behavior (simulated)&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;testing bullet 1&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;testing bullet 2&lt;/P&gt;&lt;P&gt;In this example, although I didn't experience it at the time of this writing, a few days ago the bullets functionality was being very glitchy acting closer to example 2.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2026 22:35:26 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/databricks-community-can-t-post-images-and-other-quality/m-p/149939#M209</guid>
      <dc:creator>ChristianRRL</dc:creator>
      <dc:date>2026-03-05T22:35:26Z</dc:date>
    </item>
    <item>
      <title>Re: Publish a Technical Blog</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/publish-a-technical-blog/m-p/149900#M213</link>
      <description>&lt;P class=""&gt;Hi,&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;I hope you are doing well.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;I would like to contribute and publish a technical blog on the Databricks Community portal. However, I am not sure about the process and appropriate platform.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;I would appreciate your guidance on where to start, the submission process, and any recommended topics or guidelines to follow.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;Thank you for your time and support.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Prosenjeet Saha&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2026 12:50:38 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/publish-a-technical-blog/m-p/149900#M213</guid>
      <dc:creator>Prosenjeet33</dc:creator>
      <dc:date>2026-03-05T12:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Community - Can't post images and other quality degradations</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/databricks-community-can-t-post-images-and-other-quality/m-p/149784#M208</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/96188"&gt;@ChristianRRL&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;Thank you for taking the time to share this.&lt;BR /&gt;We’re currently looking into the image copy-paste issue. In the meantime, please use the &lt;STRONG&gt;Insert Photo&lt;/STRONG&gt; option in the editor or attach the image file directly to the post.&lt;/P&gt;
&lt;P&gt;Regarding the bullet points and tab/indentation behaviour, please share more details about what felt inconsistent. If this is related to spacing and indentation when adding bullets or sub-bullets, that is part of the current editor styling behaviour. However, we’d like to better understand your experience so we can explore ways to make the posting flow smoother.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2026 17:10:01 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/databricks-community-can-t-post-images-and-other-quality/m-p/149784#M208</guid>
      <dc:creator>Advika</dc:creator>
      <dc:date>2026-03-04T17:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Community - Can't post images and other quality degradations</title>
      <link>https://community.databricks.com/t5/khoros-community-forums-support/databricks-community-can-t-post-images-and-other-quality/m-p/149733#M207</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/96188"&gt;@ChristianRRL&lt;/a&gt;&amp;nbsp;- Thanks for pointing this out.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had some issues with bullet points earlier, but I thought it was a one-time occurrence. After trying to paste an image, I understand what you mean. I have raised this concern internally to find out if there have been any recent changes to the platform. I will keep you updated on the outcome.&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;EM&gt;&lt;STRONG&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2026 20:57:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/khoros-community-forums-support/databricks-community-can-t-post-images-and-other-quality/m-p/149733#M207</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-03T20:57:35Z</dc:date>
    </item>
  </channel>
</rss>

