- 3257 Views
- 2 replies
- 1 kudos
Hi Databricks Gurus !I am trying to run a very simple snippet :data_emp=[["1","sarvan","1"],["2","John","2"],["3","Jose","1"]]emp_columns=["EmpId","Name","Dept"]df=spark.createDataFrame(data=data_emp, schema=emp_columns)df.show() --------Based on a g...
- 3257 Views
- 2 replies
- 1 kudos
- 3498 Views
- 6 replies
- 6 kudos
I have created an init script stored in a Volume which I want to execute on a cluster with runtime 16.4 LTS. The cluster has policy = Unrestricted and Access mode = Standard. I have additionally added the init script to the allowlist. This should be ...
- 3498 Views
- 6 replies
- 6 kudos
Latest Reply
Hi @jimoskar ,Since you're using standard access mode you need to add init script to allowlist. Did you add your init script to allowlist? If not, do the following:In your Databricks workspace, click Catalog.Click the gear icon .Click the metastore ...
5 More Replies
by
cbhoga
• New Contributor II
- 1458 Views
- 2 replies
- 3 kudos
Is there is any way/plans of Databricks use Delta sharing to provide data access to Celonis?
- 1458 Views
- 2 replies
- 3 kudos
Latest Reply
Hi @cbhoga ,Delta Sharing is an open protocol for secure data sharing. Databricks already supports it natively, so you can publish data using Delta Sharing. However, whether Celonis can directly consume that shared data depends on whether Celonis sup...
1 More Replies
- 2675 Views
- 3 replies
- 4 kudos
Hi there, I would appreciate some help to compare the runtime performance of two approaches to performing ELT in Databricks: spark.read vs. Autoloader. We already have a process in place to extract highly nested json data into a landing path, and fro...
- 2675 Views
- 3 replies
- 4 kudos
Latest Reply
Hi @ChristianRRL ,For that kind of ingestion scenario autoloader is a winner . It will scale much better than batch approach - especially if we are talking about large number of files.If you configure autoloader with file notification mode it can sca...
2 More Replies
- 1949 Views
- 1 replies
- 2 kudos
Hi there, I would appreciate some input on AutoLoader best practice. I've read that some people recommend that the latest data should be loaded in its rawest form into a raw delta table (i.e. highly nested json-like schema) and from that data the app...
- 1949 Views
- 1 replies
- 2 kudos
Latest Reply
I think the key thing with holding the raw data in a table, and not transforming that table, is that you have more flexibility at your disposal. There's a great resource available via Databricks Docs for best practices in the Lakehouse. I'd highly re...
- 4793 Views
- 2 replies
- 4 kudos
Bit of a silly question, but wondering if someone can help me better understand what is `read_files`?read_files table-valued function | Databricks on AWSThere's at least 3 ways to pull raw json data into a spark dataframe:df = spark.read...df = spark...
- 4793 Views
- 2 replies
- 4 kudos
Latest Reply
Also, @ChristianRRL , with a slight adjustment to the syntax, it does indeed behave like Autoloaderhttps://docs.databricks.com/aws/en/ingestion/cloud-object-storage/auto-loader/patterns?language=SQL I'd also advise looking at the different options th...
1 More Replies
- 7632 Views
- 8 replies
- 0 kudos
Hi, originally I accidentally made a customer academy account with my company that is a databricks partner. Then I made an account using my personal email and listed my company email as the partner email for the partner academy account. that account ...
- 7632 Views
- 8 replies
- 0 kudos
Latest Reply
Need help to merge my customer portal id with partner mail id my case number is 00754330
7 More Replies
- 3360 Views
- 4 replies
- 2 kudos
What I'm trying to achieve: ingest files into bronze tables with Autoloader, then produce Kafka messages for each file ingested using a DLT sink.The issue: latency between file ingested and message produced get exponentially higher the more tables ar...
- 3360 Views
- 4 replies
- 2 kudos
Latest Reply
Hi, I think it is a delay of the autoloader as it doesn't know about the ingested files. It is nothing in common with the state, as it is just an autoloader and it keeps a list of processed files. Autloader scans the directory every minute, usually a...
3 More Replies
- 1909 Views
- 2 replies
- 2 kudos
In the second onboarding video, the Quickstart Notebook is shown. I found that notebook here:https://www.databricks.com/notebooks/gcp-qs-notebook.htmlI wanted to import it to my workspace in Azure Databricks account, to play with it. However, selecti...
- 1909 Views
- 2 replies
- 2 kudos
- 8636 Views
- 3 replies
- 3 kudos
Hi,I am having a hard time configuring my Databricks workspace when working in VSCode via WSL. When following the steps to setup Databricks authentication I am receiving the following error on the Step 5 of "Step 4: Set up Databricks authentication"....
- 8636 Views
- 3 replies
- 3 kudos
Latest Reply
What worked for me was NOT opening the browser using the pop-up (which generated the 3-legged-OAuth flow error), but clicking on the link provided by the CLI (or copy paste the link on the browser)
2 More Replies
- 971 Views
- 1 replies
- 1 kudos
Hi Team,I would appreciate it if my Partner Tech Summit lab access could be extended, as two of the assigned labs were inaccessible. Could you please advise whom I should contact for this?Thank you.Regards,Lakshmipriya
- 971 Views
- 1 replies
- 1 kudos
Latest Reply
Hi @Lakshmipriya_N ,Create a support ticket and wait for reply:Contact Us
- 8896 Views
- 11 replies
- 2 kudos
Hello @Cert-Team @Certificate Team,Request Id# 00432042I encountered a pathetic experience while attempting my Databricks Certified Data Engineer Professional certification exam. This is a completely unethical process to harass the examinee and lose...
- 8896 Views
- 11 replies
- 2 kudos
Latest Reply
Hi @Cert-Team, I had similar issue. My exam got suspended too. I had already completed my exam when it got suspended. So you can either evaluate and provide the results or help me reschedule the exam. I have raised a request - #00750846, its been mor...
10 More Replies
by
RaviG
• New Contributor II
- 954 Views
- 1 replies
- 1 kudos
I would expect resource "databricks_cluster_policy" "cluster_policy" { name = var.policy_name libraries { Volumes { whl = "/Volumes/bronze/config/python.wheel-1.0.3-9-py3-none-any.whl" }}}to work but terraform doesnt recognize "volum...
- 954 Views
- 1 replies
- 1 kudos
Latest Reply
This workedresource "databricks_cluster_policy" "cluster_policy" { name = var.policy_name libraries { whl = "/Volumes/bronze/config/python.wheel-1.0.3-9-py3-none-any.whl" }}
- 2330 Views
- 1 replies
- 0 kudos
Hi, I have a gradio app that is deployed on databricks. The app is coming from this example provided by databricks. The app works fine, but when I want to add tracing I cannot get it to work. I keep getting the errormlflow.exceptions.MlflowException...
- 2330 Views
- 1 replies
- 0 kudos
Latest Reply
Hi @MisterT ,
In our docs, it is mentioned we use MLflow 3(major upgrade) with GenAI monitoring enabled. Each agent endpoint is assigned an MLflow experiment, and log agent traces from the endpoint to that experiment in real-time.
Internally an MLF...
- 2397 Views
- 3 replies
- 1 kudos
HiI would like to know how can I get the Completition token and Prompt token quantity when using Ai_Query?Thanks
- 2397 Views
- 3 replies
- 1 kudos
Latest Reply
Hello @Andreyai good day!!For AI_queries, we have documentation from databricks. : https://docs.databricks.com/aws/en/sql/language-manual/functions/ai_query I am 100% sure you will get better insights from the documentations. But I have something for...
2 More Replies