Skip to content
All topics

Serverless

Recent items mentioning Serverless across the Databricks ecosystem — releases, news, videos, and community Q&A. Updated hourly.

30 recent items9 releases3 news12 videos6 community threads
What's happening in ServerlessAI synthesis · updated 12h ago

Azure Databricks Serverless is hitting real connectivity friction: users report failures connecting to Azure SQL MI via failover group FQDN 1 and calling SQL Server stored procedures through pymssql 2, while others are stuck simply getting serverless notebook compute to provision 5. On the platform side, both the Go and Java Databricks SDKs shipped v0.162.0/v0.133.0 in July adding serverless compute ID support for job clusters plus effective entitlements data for workspace assignments 67.

Generated daily from the 9 most recent items mentioning Serverless. Click any [N] to jump to the source.

Databricks CommunityAdministration & Architecture

Azure Databricks Serverless Compute Unable to Connect to Azure SQL MI Using Failover Group FQDN via

00today
Stack Overflowanswered

How to call a SQL Server stored procedure using pymssql from Databricks Serverless Compute?

I have a Databricks notebook that currently uses pyodbc to connect to SQL Server and execute stored procedures. I need to migrate this notebook to Databricks Serverless Compute , so I am looking for an alternative to pyodbc . I am considering using pymssql instead. What is the correct way to connect to SQL Server and execute a stored procedure using pymssql from a Databricks Serverless Compute environment? As of now this is the code we're using: def exec_stored_procedure(stored_procedure, json_data): try: conn = pyodbc.connect(connection_string) cursor = conn.cursor() cursor.execute(f"OPEN SYMMETRIC KEY {Symmetric_name} DECRYPTION BY PASSWORD = '{Symmetric_key}'") cursor.execute("{CALL " + stored_procedure + "}", json_data) conn.commit() except pyodbc.Error as e: print("PyODBC error:", e) except Exception as e: print('An error occured: ', e) finally: try: cursor.execute(f"CLOSE SYMMETRIC KEY {Symmetric_name}") except pyodbc.Error as e: pass except Exception as e: print("An error occurred while closing symmetric key:", e) try: cursor.close() except pyodbc.Error as e: pass except Exception as e: print("An error occurred while closing cursor:", e) try: conn.close() except pyodbc.Error as e: print("PyODBC error while closing connection:", e) except Exception as e: print("An error occurred while closing connection:", e) What would the equivalent implementation using pymssql look like, and are there any additional requirements or limitations when using pymssql with Databricks Serverless Compute? My goal is to replace pyodbc while keeping the existing SQL Server stored procedure logic unchanged.

pythonsql-serverdatabricks
-21Nathanael Tom Aterado4d ago
Databricks CommunityAdministration & Architecture

How is Serverless Compute implemented under the hood?

001w ago
Databricks CommunityDatabricks Free Edition Help

Cannot create serverless compute for notebooks

002w ago
Stack Overflow

LakeBridge in Databricks

I am doing data warehouse migration and at the last stage i.e reconcilliation . Now after running this command databricks labs lakebridge configure-reconcile --profile abhi it prompts me for selecting data source,report type,source catalog,target catalog , details for configuring reconcile metadata, and all got installed too but at the end got this error 14:38:46 ERROR [d.l.lakebridge.configure-reconcile] InvalidParameterValue: Only serverless compute is supported in the workspace. So my question is can we not do reconcilliation even after reconcilliation job got failed, if yes then how .

databricksdata-engineering
-40Abhimanyu Kumar3w ago
Databricks CommunityData Engineeringanswered

😑Datafactory insists on Cluster compute BUT Databricks defaults to Serverless compute!

004w ago