- 695 Views
- 1 replies
- 0 kudos
DQX Open Dashboard Setup - Quality Dashboard
Hi Databricks Community,I'm trying to set up the DQX quality open-dashboard(inbuilt) to monitor my quarantined/failed records but encountering issues.**Setup Details:**- DQX version: 0.12.0- Existing DQX structure at: /Workspace/supply_chain_dqx/- Qu...
- 695 Views
- 1 replies
- 0 kudos
- 0 kudos
Hey @Loganath! Please try the steps here for installation in the Databricks cluster or notebook. This is how you can avoid using the CLI. You can install a specific version of DQX in your Databricks workspace via Databricks CLI by running: databrick...
- 0 kudos
- 706 Views
- 1 replies
- 0 kudos
Infinite loading specific to Arc Browser
Hi all,I previously reported issues where the Databricks Workspace UI (Jobs DAG, Compute, SQL Editor, Notebooks) was stuck on infinite loading.I previously encountered similar symptons, and at that time, the issue eventually resolved itself spontaneo...
- 706 Views
- 1 replies
- 0 kudos
- 0 kudos
Hey @JIWON! Agreed — this is almost certainly an Arc-specific quirk, not Chromium itself. Known Arc pain points match your symptoms so you are not alone! We've seen the following fixes come in handy in previous, similar situations: Clear site data fo...
- 0 kudos
- 800 Views
- 2 replies
- 3 kudos
Resolved! Is there support for Confluent Kafka in databricks free edition
I want to do a streaming POC using trial version of Confluent Kafka.Will databricks free edition support it?
- 800 Views
- 2 replies
- 3 kudos
- 3 kudos
Hi @Suresh_Ulhasnag ,Yes it's supported. You can have a look at my github repo: https://github.com/cloud-data-engineer/data/blob/main/dlt_telco/docs/README.mdIn bronze layer I am connecting to Confluent Kafka: https://github.com/cloud-data-engineer/d...
- 3 kudos
- 889 Views
- 2 replies
- 2 kudos
Resolved! recover workspace notebooks
Hi, My study notebooks that were in the Databricks Community workspace have been deleted.Are there any birds I can follow to retrieve them?
- 889 Views
- 2 replies
- 2 kudos
- 2 kudos
Hey @silaslnsilva — there was a Community notification noting that Databricks Community Edition would be retired at the end of 2025. Prior to retirement, users were given a quick “migrate” link to move their assets over to Free Edition. Unfortunately...
- 2 kudos
- 1018 Views
- 4 replies
- 6 kudos
Resolved! whitelist for outbound network access?
Hi all,It is documented, that the free edition has limitations as to which external hosts and domains can be accessed.Is there a known (white) list of hosts/domains which can be accessed?As an example i can access pypi.org but not wikipedia.org.
- 1018 Views
- 4 replies
- 6 kudos
- 6 kudos
So why is wikipedia.org accessible with a free edition hosted in eu-west-1 (-> @szymon_dybczak), but not with a free edition hosted in us-east-2 (-> me)?
- 6 kudos
- 1448 Views
- 2 replies
- 1 kudos
Resolved! dbfs directory listing has changed
Today withdatabricks -p FREE fs ls dbfs: -li getDIRECTORY 0 1970-01-01T01:00:00Z VolumesDIRECTORY 0 1970-01-01T01:00:00Z WorkspaceDIRECTORY 0 1970-01-01T01:00:00Z databricks-datasetsBut until recently i got significantly more output includeing someth...
- 1448 Views
- 2 replies
- 1 kudos
- 1 kudos
While i got a perfectly sound answer, i want to mention that i probably confused the outputs of databricks fs ls (remote) and df (local).
- 1 kudos
- 554 Views
- 1 replies
- 1 kudos
Resolved! Using the apt package manager
With DB free edition is there any hope tu use the apt tool for doing e.g. apt update?
- 554 Views
- 1 replies
- 1 kudos
- 1 kudos
Hi @fehrin1 ,It won't work in serverless. It would require root user or sudo permissions and that's not an option in Serverless.
- 1 kudos
- 538 Views
- 2 replies
- 1 kudos
Resolved! root user in free edition web console?
Hi all,With DB free edition i am logged in as a spark-xxxx user after opening web console.Is it possible to work as root user and how?I have access to a commercial DB instance and here i am in fact root with opening the web console. How is this contr...
- 538 Views
- 2 replies
- 1 kudos
- 1 kudos
Hi @fehrin1 ,Unfortunately ,this is not possible in Serverless. You can't login as root or use sudo command.
- 1 kudos
- 1412 Views
- 3 replies
- 2 kudos
Resolved! dbfs deprecation
Im i right, that only dbfs root access is deprecated and not dbfs as a whole?
- 1412 Views
- 3 replies
- 2 kudos
- 2 kudos
So accessing volumes in the unified dictionary via dbfs: is not deprecated?
- 2 kudos
- 1378 Views
- 6 replies
- 3 kudos
Resolved! unable to read file in workspace/user in free edition
I am unable to read the file in workspace/user in free edition, it was actually possible few weeks back but now it throws this error"[FAILED_READ_FILE.NO_HINT] Error while reading file dbfs:REDACTED_LOCAL_PART@outlook.com/BigMartSales.csv. SQLSTATE: ...
- 1378 Views
- 6 replies
- 3 kudos
- 3 kudos
Yes, in Free Edition dbfs is disabled. If you want to upload your own files just create a managed volume in Unity Catalog.
- 3 kudos
- 889 Views
- 4 replies
- 7 kudos
Resolved! Unable to Create a pipeline in order to populate a table with Auto Loader
Hello,I'm new to using Databricks Free Edition and I'm following the Data Ingestion with Lakeflow Connection training track. Since I'm using the free version, I don't have access to the available lab resources.In the Auto Loader training step, I've a...
- 889 Views
- 4 replies
- 7 kudos
- 7 kudos
If you havent already .Below Catalog option of left hand side select Jobs and pipelines Select Create a new pipeline Point this pipeline to source from this notebook . Run the pipeline . Thsi is how you run a SDP code
- 7 kudos
- 1121 Views
- 4 replies
- 1 kudos
Resolved! unity catalog
please how do you create a unity catalog in a free edition?
- 1121 Views
- 4 replies
- 1 kudos
- 1 kudos
create table demo.cases_test asselect * from csv.`/Volumes/workspace/demo/raw/cases_test.csv`WITH ( header = "true", inferSchema "true"); The above query also works for csv file and below works for json,parquet files respectively %sqldrop table if...
- 1 kudos
- 497 Views
- 1 replies
- 1 kudos
Resolved! creating tables
%sqlThis in pay-as-you-gocreate table if not exists demo.test(country string,indicator string,date string,year_week string,value string,source string,url string)using csvoptions(path "/mnt/formal1/hospital_admissions.csv")the above worked in a pay-as...
- 497 Views
- 1 replies
- 1 kudos
- 1 kudos
Hi @Thomas_Aimiuwu ,Here's a workaround. Of course adjust following piece of code to your needs.%sql SELECT * FROM read_files( '/Volumes/workspace/demo/raw/hospital_admissions.csv', format => 'csv', sep => ',', header => true ); The reason wh...
- 1 kudos
- 1154 Views
- 5 replies
- 1 kudos
Resolved! Lost my entire code base in community edition
Team, It's an Mayday Mayday Mayday situation !!!!!!!!!!!I need my entire code base back for the databricks community edition. This is totally unacceptable or a good sign of trust from databricks without any prior info how can you guy's erode the comp...
- 1154 Views
- 5 replies
- 1 kudos
- 1 kudos
Same issue with me, how to recover the old code base ?
- 1 kudos
- 1517 Views
- 2 replies
- 2 kudos
Resolved! Please do not discontinue Community Edition
Hi,A lot of Tutorials that I refer on YouTube (Most of them for 2025) still refer to community edition. Certain features in Community edition, especially related to Optimization do not appear in Free edition.Please do not discontinue Community editio...
- 1517 Views
- 2 replies
- 2 kudos
- 2 kudos
Hi @Suresh_Ulhasnag , thanks for the feedback. Unfortunately we can no longer support Databricks Community Edition. Could you point us to the youtube tutorials that point to CE? We'd like to work with the creators to get them updated. Thanks!
- 2 kudos
-
Access Controls
1 -
ADLS Gen2 Using ABFSS
1 -
AML
1 -
Apache spark
1 -
Api Calls
1 -
App
1 -
Autoloader
1 -
AWSDatabricksCluster
1 -
Azure databricks
3 -
Azure Delta Lake
1 -
BI Integrations
1 -
Billing
1 -
Billing and Cost Management
1 -
Cluster
3 -
Cluster Creation
1 -
ClusterCreation
1 -
Community Edition
4 -
Community Edition Account
1 -
Community Edition Login Issues
2 -
community workspace login
1 -
Compute
3 -
Compute Instances
2 -
Continue Community Edition
1 -
databricks
1 -
Databricks Community Edition Account
2 -
Databricks Free Edition
2 -
Databricks Issue
1 -
Databricks Notebooks
1 -
databricks one
1 -
Databricks Support
1 -
databricksapps
1 -
DB Notebook
1 -
DBFS
1 -
Delta Tables
1 -
documentation
1 -
financial data market
1 -
Free Databricks
1 -
Free Edition
1 -
Free trial
1 -
Genie
1 -
Google cloud
1 -
Hubert Dudek
1 -
link for labs
1 -
Login Issue
2 -
mcp
1 -
MlFlow
1 -
ow
1 -
Serverless
1 -
Sign Up Issues
2 -
Software Development
1 -
someone is trying to help you
1 -
Spark
1 -
URGENT
2 -
Web Application
1
- « Previous
- Next »
| User | Count |
|---|---|
| 42 | |
| 12 | |
| 10 | |
| 9 | |
| 9 |