<?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>rss.livelink.threads-in-node</title>
    <link>https://community.databricks.com/t5/databricks-platform-discussions/ct-p/databricks-platform-discussion</link>
    <description>rss.livelink.threads-in-node</description>
    <pubDate>Mon, 07 Sep 2026 20:04:06 GMT</pubDate>
    <dc:creator>databricks-platform-discussion</dc:creator>
    <dc:date>2026-09-07T20:04:06Z</dc:date>
    <item>
      <title>Tuning with Optuna and MlflowSparkStudy</title>
      <link>https://community.databricks.com/t5/machine-learning/tuning-with-optuna-and-mlflowsparkstudy/m-p/167830#M4698</link>
      <description>&lt;P&gt;I am following the guide for tuning a model with Optuna and MlflowSparkStudy. My compute is configured with autoscaling enabled, with 1–2 Spark workers, each with 8 cores and 32 GB of memory. I set n_jobs=2 and trials=100, in &lt;STRONG&gt;mlflow_study.optimize()&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;I have a few questions about how MlflowSparkStudy distributes the workload:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;How should I think about n_jobs in mlflow_study.optimize() vs. num_threads/n_jobs in LightGBM?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For example, with 1–2 Spark workers and 8 cores per worker, would it make sense to set mlflow_study.optimize(n_jobs=2) and LightGBM n_jobs=7? My dataset is large, so ideally I would like to run only &lt;STRONG&gt;one model-training job per Spark worker&lt;/STRONG&gt; and use the remaining cores on that worker for the LightGBM training.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Does MlflowSparkStudy automatically trigger or make use of Spark autoscaling?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If I configure my cluster with a minimum of 1 worker and a maximum of 2 workers, will MlflowSparkStudy cause Spark to scale up to 2 workers as needed when running multiple trials in parallel?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;What is the recommended way to make a large DataFrame available to each Spark worker?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Currently, I have a Pandas DataFrame that I pass to the objective function used by mlflow_study.optimize(). Should I broadcast the DataFrame, cache it in Spark, or use another approach to avoid repeatedly transferring the data to each worker for every trial?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any guidance on the recommended configuration or best practices would be greatly appreciated.&lt;/P&gt;&lt;P&gt;#mlflow #optuna #&lt;SPAN&gt;MlflowSparkStudy&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/azure/databricks/machine-learning/automl-hyperparam-tuning/optuna" target="_self"&gt;https://learn.microsoft.com/en-us/azure/databricks/machine-learning/automl-hyperparam-tuning/optuna&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2026 19:24:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/tuning-with-optuna-and-mlflowsparkstudy/m-p/167830#M4698</guid>
      <dc:creator>AdamIH123</dc:creator>
      <dc:date>2026-09-07T19:24:05Z</dc:date>
    </item>
    <item>
      <title>How to extract table-level execution time and resource allocation within a multi-table Job?</title>
      <link>https://community.databricks.com/t5/data-engineering/how-to-extract-table-level-execution-time-and-resource/m-p/167727#M55767</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I am working on calculating accurate compute costs and execution times for individual tables within our Databricks environment, but I am running into an issue with metric granularity.&lt;/P&gt;&lt;P&gt;Currently, we are fetching execution data based on job_id. The problem is that a single job_id often executes multiple tables of varying sizes. Right now, our logic can only derive an average execution time across the entire job, which is highly inaccurate for attributing costs to a specific table.&lt;/P&gt;&lt;P&gt;To get precise, table-level cost metrics, we need to move away from job-level averages. Specifically, I am trying to find a way to extract:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Table-Specific Timestamps:&lt;/STRONG&gt; The exact execution start_time and end_time for an individual table running within a larger job.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Granular Resource Allocation:&lt;/STRONG&gt; The exact number of compute resources (DBUs, allocated vs. free resources) consumed &lt;I&gt;specifically during the time&lt;/I&gt; that individual table is actively running.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Are there specific System Tables (e.g., within system.information_schema or system.access), REST API endpoints, or Spark listener configurations that expose this level of granular, table-specific execution data? and also below am attaching my query.&lt;/P&gt;&lt;P&gt;WITH cost_agg AS (&lt;BR /&gt;SELECT job_id, day, SUM(cost_consumed) AS cost_val&lt;BR /&gt;FROM costing --Internal table&lt;BR /&gt;GROUP BY job_id, day&lt;BR /&gt;--goes to costing dashboard table for each job, for each day - adds up all the cost. Result is one row per job per day with total cost&lt;BR /&gt;),&lt;BR /&gt;base_data AS (&lt;BR /&gt;SELECT job_id, task_key,&lt;BR /&gt;to_date(period_start_time) as execution_date,&lt;BR /&gt;execution_duration_seconds&lt;BR /&gt;FROM system.lakeflow.job_task_run_timeline&lt;/P&gt;&lt;P&gt;),&lt;BR /&gt;task_avgs AS (&lt;BR /&gt;SELECT job_id, task_key, execution_date, avg(execution_duration_seconds) as avg_task_exec_for_day&lt;BR /&gt;FROM base_data&lt;BR /&gt;GROUP BY job_id, execution_date, task_key&lt;BR /&gt;--For each task within each job on each day, averages the execution time across all runs of that task that day.&lt;BR /&gt;-- e.g. prd-customers ran 3 times: 100s + 120s + 80s → avg = 100s&lt;BR /&gt;),&lt;BR /&gt;job_totals as (&lt;BR /&gt;select job_id, execution_date, greatest(sum(avg_task_exec_for_day),1) as total_task_seconds_for_day&lt;BR /&gt;from task_avgs&lt;BR /&gt;group by job_id, execution_date&lt;BR /&gt;--Sums all task averages per job per day to get the denominator for weightage.&lt;BR /&gt;),&lt;BR /&gt;table_costs as ( SELECT&lt;BR /&gt;ta.job_id, ta.execution_date, ta.task_key,&lt;BR /&gt;SPLIT_PART(ta.task_key, '-', 1) AS ctlg,&lt;BR /&gt;SPLIT_PART(ta.task_key, '-', 2) AS db_name,&lt;BR /&gt;SPLIT_PART(ta.task_key, '-', 3) AS tbl_name,&lt;BR /&gt;round(ta.avg_task_exec_for_day/jt.total_task_seconds_for_day, 5),&lt;BR /&gt;round(c.cost_val, 5) as job_cost_usd,&lt;BR /&gt;round((ta.avg_task_exec_for_day/jt.total_task_seconds_for_day) * c.cost_val, 5) as table_cost_usd&lt;BR /&gt;from task_avgs ta&lt;BR /&gt;join job_totals jt on ta.job_id = jt.job_id AND ta.execution_date = jt.execution_date&lt;BR /&gt;left join cost_agg c on c.job_id = ta.job_id AND c.day = ta.execution_date&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;select ctlg, db_name, tbl_name,&lt;BR /&gt;array_join(collect_set(cast(job_id as string)),',') as jobs_id,&lt;BR /&gt;count(distinct job_id) as jobs_count,&lt;BR /&gt;count(*) as times_run,&lt;BR /&gt;count(distinct execution_date) as days_run,&lt;BR /&gt;min(execution_date) as first_run_date,&lt;BR /&gt;max(execution_date) as last_run_date,&lt;BR /&gt;round(sum(table_cost_usd),5) as total_cost_usd,&lt;BR /&gt;ROUND(SUM(table_cost_usd) / NULLIF(COUNT(DISTINCT execution_date), 0), 5) AS avg_daily_cost_usd, -- ← replaced here&lt;BR /&gt;round(min(table_cost_usd),5) as min_daily_cost_usd,&lt;BR /&gt;round(max(table_cost_usd),5) as max_daily_cost_usd&lt;BR /&gt;from table_costs&lt;BR /&gt;where execution_date &amp;lt;= '2026-03-04' and ctlg = 'prd'&lt;BR /&gt;group by tbl_name, ctlg, db_name&lt;BR /&gt;order by total_cost_usd desc&lt;/P&gt;&lt;P&gt;Any guidance, query examples, or best practices would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2026 05:36:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/how-to-extract-table-level-execution-time-and-resource/m-p/167727#M55767</guid>
      <dc:creator>Dolly0503</dc:creator>
      <dc:date>2026-09-07T05:36:11Z</dc:date>
    </item>
    <item>
      <title>Understanding Parquet File Storage for Large Datasets</title>
      <link>https://community.databricks.com/t5/data-engineering/understanding-parquet-file-storage-for-large-datasets/m-p/167721#M55764</link>
      <description>&lt;P class=""&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I’m learning about Parquet files and how they are used in Databricks for storing large datasets.&lt;/P&gt;&lt;P&gt;I’m trying to understand how column-based storage works in a practical situation.&lt;/P&gt;&lt;P&gt;For example, suppose an e-commerce company has 500 million order records containing customer details, product information, order dates, and payment information. If an analyst only needs order_date and order_amount to calculate daily sales, how does storing the data in Parquet help the system process this query efficiently?&lt;/P&gt;&lt;P&gt;I’d like to understand how Parquet storage works in this type of real-world scenario.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2026 04:23:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/understanding-parquet-file-storage-for-large-datasets/m-p/167721#M55764</guid>
      <dc:creator>gowri_databrick</dc:creator>
      <dc:date>2026-09-07T04:23:05Z</dc:date>
    </item>
    <item>
      <title>What is a Checkpoint in Structured Streaming?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-a-checkpoint-in-structured-streaming/m-p/167694#M55761</link>
      <description>&lt;P class=""&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I’m learning about Structured Streaming in Databricks and came across checkpoints.&lt;/P&gt;&lt;P&gt;I understand that checkpoints are used to keep track of the progress of a streaming query, but I’d like to understand their purpose more clearly.&lt;/P&gt;&lt;P&gt;For example, if a streaming pipeline is processing customer transactions and the pipeline stops unexpectedly, how does the checkpoint help the pipeline continue processing from where it stopped?&lt;/P&gt;&lt;P&gt;What is the main purpose of checkpoints, and why are they important in a real-time data pipeline?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 06 Sep 2026 12:55:47 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-a-checkpoint-in-structured-streaming/m-p/167694#M55761</guid>
      <dc:creator>gowri_databrick</dc:creator>
      <dc:date>2026-09-06T12:55:47Z</dc:date>
    </item>
    <item>
      <title>Lakeflow SDP Append Flow</title>
      <link>https://community.databricks.com/t5/data-engineering/lakeflow-sdp-append-flow/m-p/167686#M55756</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;I'm using&amp;nbsp; &lt;STRONG&gt;append_flow&lt;/STRONG&gt; to&amp;nbsp;ingest data into the target table. Before returning the dataframe, I compute few column trnasformations, but those values aren't being calculated correctly (or: aren't showing up at all)&lt;BR /&gt;so the append flow should not include any column transformations.Does it need to include only reading source table?&lt;/P&gt;</description>
      <pubDate>Sun, 06 Sep 2026 09:23:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/lakeflow-sdp-append-flow/m-p/167686#M55756</guid>
      <dc:creator>IM_01</dc:creator>
      <dc:date>2026-09-06T09:23:58Z</dc:date>
    </item>
    <item>
      <title>Databricks-Native AI Agent for Job Incident Detection, RCA &amp; Safe Remediation</title>
      <link>https://community.databricks.com/t5/generative-ai/databricks-native-ai-agent-for-job-incident-detection-rca-amp/m-p/167659#M2052</link>
      <description>&lt;P&gt;I’m exploring an architecture for a &lt;STRONG&gt;Databricks-native AI Agent for intelligent Spark job incident detection, root cause analysis (RCA), and safe remediation&lt;/STRONG&gt;, and I would love your technical feedback.&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;The Problem&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;A common operational challenge is the &lt;STRONG&gt;"Silent Long-Runner"&lt;/STRONG&gt; or stalled workload—for example, a Spark job that normally finishes in &lt;STRONG&gt;~1 hour&lt;/STRONG&gt; suddenly runs for &lt;STRONG&gt;8+ hours&lt;/STRONG&gt; with zero meaningful progress, wasting DBUs and blocking pipelines.&lt;/P&gt;&lt;P&gt;Currently, investigating this requires engineers to manually correlate disparate data sources:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Spark UI:&lt;/STRONG&gt; Job/Stage DAGs, Task skew, stragglers, shuffle memory/disk spill.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Compute State:&lt;/STRONG&gt; Driver/Executor availability, OOMs, memory pressure, thread dumps.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Logs &amp;amp; I/O:&lt;/STRONG&gt; Driver/executor logs and real-time input/output progression.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Historical Context:&lt;/STRONG&gt; Baseline metrics from past successful runs.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;&lt;STRONG&gt;Proposed Concept: Execution-Aware Agentic Intelligence&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;Instead of a simple log-parsing chatbot, the goal is a &lt;STRONG&gt;closed-loop agent framework&lt;/STRONG&gt; built on Databricks-native capabilities (System Tables, MLflow, Agent Framework/MCP, Unity Catalog):&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Baseline Learning:&lt;/STRONG&gt; Dynamically detects anomalies against historical execution patterns instead of static time limits.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Multi-Signal RCA &amp;amp; Evidence Chain:&lt;/STRONG&gt; Correlates live Spark UI metrics, logs, and compute telemetry to yield an explainable diagnosis (e.g., &lt;I&gt;"Root Cause: Executor OOM &amp;amp; Disk Spill Skew — 92% Confidence"&lt;/I&gt;).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Policy-Governed Remediation:&lt;/STRONG&gt; Uses an &lt;STRONG&gt;Observe → Recommend → Auto-Remediate&lt;/STRONG&gt; model, requiring Human-in-the-Loop (HITL) approval for high-risk actions (e.g., job cancellation, cluster resizing).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Closed Feedback Loop:&lt;/STRONG&gt; Captures whether actions resolved the issue to continuously improve accuracy and quantify DBU/cost savings.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;H3&gt;&lt;STRONG&gt;Questions for the Community&lt;/STRONG&gt;&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Telemetry Access:&lt;/STRONG&gt; How much granular Spark UI data (stage progress, task skew, shuffle details) can be programmatically accessed in real time via System Tables or APIs?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Native Pattern:&lt;/STRONG&gt; What native capabilities would you recommend for correlating these runtime and log signals efficiently?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Remediation Safety:&lt;/STRONG&gt; What guardrails or design patterns do you recommend for automated or HITL actions on running jobs?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Prior Art:&lt;/STRONG&gt; Has anyone built or tested a similar agentic incident detection workflow inside Databricks?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Would love to hear your thoughts, feedback, or architectural suggestions!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#genAI #dataengineering #AIagent&lt;/P&gt;</description>
      <pubDate>Sat, 05 Sep 2026 11:29:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/databricks-native-ai-agent-for-job-incident-detection-rca-amp/m-p/167659#M2052</guid>
      <dc:creator>VibinRoy_C</dc:creator>
      <dc:date>2026-09-05T11:29:57Z</dc:date>
    </item>
    <item>
      <title>Databricks vs Snowflake Pyspark Performance</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-vs-snowflake-pyspark-performance/m-p/167647#M55752</link>
      <description>&lt;P&gt;Hi experts, now the competition between cloud providers are fierce and brutal , I come across this post which compares Pyspark performance on databricks and Snowflake&lt;/P&gt;&lt;P&gt;&lt;A href="https://l1nk.dev/1y33h0z" target="_blank"&gt;https://l1nk.dev/1y33h0z&lt;/A&gt;&amp;nbsp; although the metics tested are not rigorous and exhaustive, but comparative results has been shared. I want to know whether do we have similar comparisons on larger scale with wider set of benchmarks so when these discussions come up before prospective client, we have solid comparison resultset ready to share. Thank you in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Sep 2026 10:08:20 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-vs-snowflake-pyspark-performance/m-p/167647#M55752</guid>
      <dc:creator>Sam500</dc:creator>
      <dc:date>2026-09-05T10:08:20Z</dc:date>
    </item>
    <item>
      <title>What is a Data Skipping in Delta Lake?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-a-data-skipping-in-delta-lake/m-p/167640#M55748</link>
      <description>&lt;P class=""&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I’m learning about Delta Lake performance and came across data skipping.&lt;/P&gt;&lt;P&gt;I understand that it can help Databricks avoid reading unnecessary data when running queries, but I’d like to understand its purpose more clearly.&lt;/P&gt;&lt;P&gt;For example, if an orders table contains millions of records and I query only orders from a particular date, how can data skipping help reduce the amount of data that needs to be read?&lt;/P&gt;&lt;P&gt;What is the main purpose of data skipping, and how does it help improve query performance?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sat, 05 Sep 2026 08:02:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-a-data-skipping-in-delta-lake/m-p/167640#M55748</guid>
      <dc:creator>gowri_databrick</dc:creator>
      <dc:date>2026-09-05T08:02:08Z</dc:date>
    </item>
    <item>
      <title>Genie - Cost monitoring and usage</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-cost-monitoring-and-usage/m-p/167638#M2049</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Genie is widely used within our department, and we would like to establish appropriate governance around its usage. Do we have any existing guidelines or recommended practices for this? In particular, we are looking for guidance on:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Cost monitoring: How can we monitor Genie usage, including who is using it and the associated consumption or cost?&lt;/LI&gt;&lt;LI&gt;Usage limits: Is it possible to set an upper limit or other controls to restrict Genie usage?Any relevant documentation, recommendations, or examples would be appreciated.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Regards - Sanjeeb&lt;/P&gt;</description>
      <pubDate>Sat, 05 Sep 2026 05:42:31 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-cost-monitoring-and-usage/m-p/167638#M2049</guid>
      <dc:creator>Sanjeeb2024</dc:creator>
      <dc:date>2026-09-05T05:42:31Z</dc:date>
    </item>
    <item>
      <title>Databricks Apps - Deployment process - Need help !!</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-apps-deployment-process-need-help/m-p/167637#M55746</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Do we have any guidelines or a CI/CD approach for deploying a Databricks app from one environment (e.g., DEV) to PROD?We are currently facing the following challenge:We created a Databricks app in the DEV environment through the UI. At runtime, the app creates a service principal, to which we granted the required permissions to access Databricks tables. After deploying the code, everything works as expected in DEV.How can we fully automate the deployment process from DEV to PROD? In particular, how can we automate assigning the required permissions to the service principal that is created at runtime in the target environment?Any guidance or examples would be appreciated.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Sat, 05 Sep 2026 05:38:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-apps-deployment-process-need-help/m-p/167637#M55746</guid>
      <dc:creator>Sanjeeb2024</dc:creator>
      <dc:date>2026-09-05T05:38:57Z</dc:date>
    </item>
    <item>
      <title>Who is The Best Cold Email Service Provider in 2026?</title>
      <link>https://community.databricks.com/t5/data-engineering/who-is-the-best-cold-email-service-provider-in-2026/m-p/167614#M55744</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I have been working in the SMMA field for more than 5 years. So I have very strong experience about that.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I tried many cold email providers; I use more than 10k emails from every provider, but everyone has a common problem. They will now give you a long-time replacement guarantee; they provide a maximum of 30 days replacement with their accounts. and one more big problem: inbox rate not more than 80%.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But a few months ago, I tried someone cold email named&lt;/SPAN&gt;&lt;A href="https://xecureshop.com/" target="_blank" rel="noopener"&gt; &lt;STRONG&gt;XecureShop&lt;/STRONG&gt;&lt;/A&gt;&lt;SPAN&gt;. They provide cold emails with lifetime guarantees and more than a 90% inbox rate. One more interesting thing: they make cold emails by hand. They're not using any types of bot or software.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Now let's talk about the price. When I bought it, the price was for 1000 emails at $1500.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If anyone wants to contact them, use &lt;/SPAN&gt;W,h,at, sA,pp&lt;STRONG&gt;: +1 (765) 819-6127&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2026 20:38:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/who-is-the-best-cold-email-service-provider-in-2026/m-p/167614#M55744</guid>
      <dc:creator>ahengzhouking</dc:creator>
      <dc:date>2026-09-04T20:38:05Z</dc:date>
    </item>
    <item>
      <title>Does enabling Photon improve performance while lowering compute costs?</title>
      <link>https://community.databricks.com/t5/administration-architecture/does-enabling-photon-improve-performance-while-lowering-compute/m-p/167597#M5559</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="neerajdubey_86_0-1788545169602.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/30754iF94F1123E2FEF321/image-size/medium?v=v2&amp;amp;px=400" role="button" title="neerajdubey_86_0-1788545169602.png" alt="neerajdubey_86_0-1788545169602.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Please refer screen shot and help in clarifying if&amp;nbsp;enabling Photon lead to lower execution costs?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2026 18:09:09 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/does-enabling-photon-improve-performance-while-lowering-compute/m-p/167597#M5559</guid>
      <dc:creator>neerajdubey_86</dc:creator>
      <dc:date>2026-09-04T18:09:09Z</dc:date>
    </item>
    <item>
      <title>Using Temporary Functions</title>
      <link>https://community.databricks.com/t5/administration-architecture/using-temporary-functions/m-p/167589#M5558</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm currently doing my professional internship and working on a reporting project that integrates with Databricks through Unity Catalog functions.&lt;/P&gt;&lt;P&gt;The reporting application is external to Databricks and uses Data Sources, Parameters, Result Sets, Grids, Charts, and Report Definitions to build dashboards. Existing reports consume data through functions referenced by a URI pattern similar to:&lt;/P&gt;&lt;P&gt;fn://catalog.schema.function_name@DATABRICKS.UNITYCATALOG&lt;BR /&gt;Show more lines&lt;/P&gt;&lt;P&gt;My mentor provided an existing report as a starting point and asked me to use it as a template for the new development. The report is already functional and contains the complete structure, including Data Sources, Parameters, Result Sets, Grids, Charts, and Report Definitions. My task is to understand how those pieces work together and then adapt or replace them to support a different dataset.&lt;/P&gt;&lt;P&gt;The challenge is that the new dataset does not currently have equivalent Unity Catalog functions available.&lt;/P&gt;&lt;P&gt;As guidance, my mentor suggested creating temporary functions first, using a pattern such as:&lt;/P&gt;&lt;P&gt;SQL&lt;BR /&gt;1&lt;BR /&gt;CREATE OR REPLACE TEMPORARY FUNCTION `catalog.schema.function_name`&lt;BR /&gt;2&lt;BR /&gt;RETURNS TABLE (...)&lt;BR /&gt;3&lt;BR /&gt;RETURN ...&lt;BR /&gt;4&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;Show more lines&lt;/P&gt;&lt;P&gt;The idea is to prototype the expected interface, validate the returned schema locally with the reporting application, and later create the permanent Unity Catalog functions if the design works correctly.&lt;/P&gt;&lt;P&gt;My mentor has already given me a clear direction, but as an intern I am still connecting the dots and trying to understand the complete flow from temporary functions, to production Unity Catalog functions, to the final report displayed in the application.&lt;/P&gt;&lt;P&gt;Has anyone worked on a similar integration between an external dashboard/reporting application and Databricks?&lt;/P&gt;&lt;P&gt;Any guidance, recommendations, or examples would be greatly appreciated.&lt;/P&gt;&lt;P&gt;I'm still pretty new to this area, so honestly I'm feeling a bit lost and trying to understand the correct path before I spend time going in the wrong direction &lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;.&lt;/P&gt;&lt;P&gt;Thanks in advance! &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2026 17:31:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/using-temporary-functions/m-p/167589#M5558</guid>
      <dc:creator>Marbricks</dc:creator>
      <dc:date>2026-09-04T17:31:51Z</dc:date>
    </item>
    <item>
      <title>Lakeflow connect Ingestion pipeline notification for gateway pipeline</title>
      <link>https://community.databricks.com/t5/data-engineering/lakeflow-connect-ingestion-pipeline-notification-for-gateway/m-p/167588#M55742</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;As you guys know that when we are building lake flow connect ingestion pipeline in UI. The pipeline consist both gateway pipeline and ingestion pipeline together. We have notification for the ingestion pipeline but not for gateway pipeline. I would like to track or keep an on gateway pipeline, If it fail I need to get the email alert. How we can achiever this. Can anybody face similer problem. the UI looks like as below ss&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="srikanthp24_0-1788542943980.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/30750i6444BBCF4DC5FBEC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="srikanthp24_0-1788542943980.png" alt="srikanthp24_0-1788542943980.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2026 17:30:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/lakeflow-connect-ingestion-pipeline-notification-for-gateway/m-p/167588#M55742</guid>
      <dc:creator>srikanthp24</dc:creator>
      <dc:date>2026-09-04T17:30:21Z</dc:date>
    </item>
    <item>
      <title>Clarification on Automating Serverless Compute Permissions via SDK/API</title>
      <link>https://community.databricks.com/t5/data-engineering/clarification-on-automating-serverless-compute-permissions-via/m-p/167549#M55735</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;I'm trying to automate granting &lt;STRONG&gt;Can Use permissions on &lt;STRONG&gt;Default Interactive Compute for workspace groups across multiple Databricks workspaces. While reviewing the Serverless Compute access control documentation and the Access Control Rule Set APIs, I noticed that the examples require a resource name for get_rule_set() and update_rule_set(), but I couldn't find any documentation that explains how to discover the correct resource name for &lt;STRONG&gt;Default Interactive Compute or &lt;STRONG&gt;Default Automated Compute.&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I also noticed that the Databricks Python SDK exposes WorkspaceClient.account_access_control_proxy with methods such as get_rule_set(), update_rule_set(), and get_assignable_roles_for_resource(). However, without knowing the resource name, it's unclear how these APIs can be used programmatically.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could someone clarify:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;How can we discover the correct resource name for Serverless Compute objects programmatically?&lt;/LI&gt;&lt;LI&gt;Is there an API to list available Serverless Compute resources and their associated rule sets?&lt;/LI&gt;&lt;LI&gt;Is Serverless Compute access control fundamentally a workspace-level permission model or an account-level one? The UI suggests each workspace has its own Default Interactive/Automated Compute objects, while the APIs appear to be account-focused.&lt;/LI&gt;&lt;LI&gt;Is account_access_control_proxy the recommended SDK for this use case, or is there another supported SDK/API specifically intended for managing Serverless Compute permissions?&lt;P&gt;Our goal is to automate permission assignment for groups across many workspaces, so any guidance on the correct endpoint, resource naming convention, or recommended SDK approach would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://docs.azure.cn/en-us/databricks//compute/serverless/access-control" target="_blank" rel="noopener"&gt;Serverless compute access control - Azure Databricks&lt;/A&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Fri, 04 Sep 2026 15:10:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/clarification-on-automating-serverless-compute-permissions-via/m-p/167549#M55735</guid>
      <dc:creator>saicharan1</dc:creator>
      <dc:date>2026-09-04T15:10:13Z</dc:date>
    </item>
    <item>
      <title>fastai import in databricks broken</title>
      <link>https://community.databricks.com/t5/machine-learning/fastai-import-in-databricks-broken/m-p/167548#M4689</link>
      <description>&lt;P&gt;Has anyone else had a problem today (2026-09-04) with imports from fastai?&lt;/P&gt;&lt;P&gt;The error message points to a problem with the underlying fastcore package:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;AttributeError: 'Function' object attribute '__doc__' is read-only&lt;/LI-CODE&gt;&lt;P&gt;I'm getting the same error using fastai versions 2.8.5 and 2.8.8.&lt;/P&gt;&lt;P&gt;The only change I can see is in the compute event logs, my 'Compute is using release 18.3.6' compared to 18.3.5 yesterday.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2026 14:47:47 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/fastai-import-in-databricks-broken/m-p/167548#M4689</guid>
      <dc:creator>barnabywalker</dc:creator>
      <dc:date>2026-09-04T14:47:47Z</dc:date>
    </item>
    <item>
      <title>Genie Agent content search on a managed volume fails with "The request was invalid"</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-agent-content-search-on-a-managed-volume-fails-with-quot/m-p/167547#M2056</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to enable content search on a Unity Catalog managed volume so a Genie Agent can answer questions over PDFs. The Enable action fails every time with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"Failed to update content search - The request was invalid."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Environment: AWS, eu-west-2 (London), serverless workspace on Default Storage, pay-as-you-go. This started as a trial and the failure is identical before and after adding a payment method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I have verified:&lt;/P&gt;&lt;P&gt;- Preview "Analyze Files in Volumes with Genie Agents" is enabled.&lt;/P&gt;&lt;P&gt;- The volume is a managed volume. Catalog binding is "All workspaces have access" (OPEN). Reproduced on two catalogs, including a freshly created one.&lt;/P&gt;&lt;P&gt;- I have CAN MANAGE on the volume.&lt;/P&gt;&lt;P&gt;- ai_parse_document() runs successfully on the PDFs in the volume.&lt;/P&gt;&lt;P&gt;- Foundation Model APIs work (ai_query succeeds).&lt;/P&gt;&lt;P&gt;- Lakebase is available in the region.&lt;/P&gt;&lt;P&gt;- I can create a Vector Search endpoint via the API and it comes ONLINE.&lt;/P&gt;&lt;P&gt;- Files are 4 PDFs, each under 10 MB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without content search the agent does not retrieve the files ("no relevant content from the reports directory"), so document and hybrid questions are not possible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Questions:&lt;/P&gt;&lt;P&gt;1. Is content search supported on Default Storage / serverless-only workspaces? It is not listed under the Default Storage limitations, but it is the one variable I cannot rule out.&lt;/P&gt;&lt;P&gt;2. Is there a way to get a more detailed error than "The request was invalid"? No public API seems to expose this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Happy to share the request ID from the browser network log if that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2026 14:08:06 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-agent-content-search-on-a-managed-volume-fails-with-quot/m-p/167547#M2056</guid>
      <dc:creator>mramanindia</dc:creator>
      <dc:date>2026-09-04T14:08:06Z</dc:date>
    </item>
    <item>
      <title>VS Code and Connect - Manual Environment Setup</title>
      <link>https://community.databricks.com/t5/data-engineering/vs-code-and-connect-manual-environment-setup/m-p/167513#M55728</link>
      <description>&lt;P&gt;The current version of the extension forces usage of certain python packaging / project tools. I used to be able to use the extension with my project which uses &lt;A href="http://pixi.prefix.dev" target="_blank" rel="noopener"&gt;pixi&lt;/A&gt;, by setting up the dependencies myself in pyproject.toml / pixi.toml.&lt;/P&gt;&lt;P&gt;The current version of the extension ignores that setup completely and starts setting up a project based on uv. This basically makes the connect functionality unusable for my project.&lt;/P&gt;&lt;P&gt;I would like to be able to select the kernel / python environment myself, without the extension making a bunch of changes to my project configuration.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2026 09:05:44 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/vs-code-and-connect-manual-environment-setup/m-p/167513#M55728</guid>
      <dc:creator>spoltier</dc:creator>
      <dc:date>2026-09-04T09:05:44Z</dc:date>
    </item>
    <item>
      <title>Error While Running Workloads on Databricks Free Edition – Serverless Compute</title>
      <link>https://community.databricks.com/t5/data-engineering/error-while-running-workloads-on-databricks-free-edition/m-p/167489#M55718</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;I am using the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Databricks Free Edition&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and I am facing an issue while running workloads using&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Serverless Compute&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;When I try to run the workload, I receive the following error:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;STRONG&gt;“An error occurred while trying to provision serverless compute. Please try again or contact support.”&lt;/STRONG&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I have tried running the workload again, but the issue persists.&lt;/P&gt;&lt;P&gt;Could you please check if there is any issue with the serverless compute provisioning for my workspace or if any configuration/action is required from my side?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2026 06:18:44 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-while-running-workloads-on-databricks-free-edition/m-p/167489#M55718</guid>
      <dc:creator>Bharat_Kumar_AV</dc:creator>
      <dc:date>2026-09-04T06:18:44Z</dc:date>
    </item>
    <item>
      <title>What is a Warehouse in Databricks SQL?</title>
      <link>https://community.databricks.com/t5/data-engineering/what-is-a-warehouse-in-databricks-sql/m-p/167478#M55716</link>
      <description>&lt;P class=""&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I’m learning Databricks SQL and came across SQL warehouses.&lt;/P&gt;&lt;P&gt;I understand that a SQL warehouse provides compute resources for running SQL queries, but I’m not clear about how it is different from other compute options in Databricks.&lt;/P&gt;&lt;P&gt;When should we use a SQL warehouse, and what are the main things to consider when choosing one?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2026 04:36:00 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/what-is-a-warehouse-in-databricks-sql/m-p/167478#M55716</guid>
      <dc:creator>gowri_databrick</dc:creator>
      <dc:date>2026-09-04T04:36:00Z</dc:date>
    </item>
  </channel>
</rss>

