cancel
Showing results for 
Search instead for 
Did you mean: 
Machine Learning
cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Hubert-Dudek
by Esteemed Contributor III
  • 2543 Views
  • 2 replies
  • 32 kudos

Databricks Roadmap Azure There are a lot of excitement new features coming in 2022. I tried to put them all on one list: Unity catalog (seems that it ...

Databricks Roadmap AzureThere are a lot of excitement new features coming in 2022. I tried to put them all on one list:Unity catalog (seems that it will exists next to hive metastore and it will be possible to migrate)Control metastore, unity creatio...

  • 2543 Views
  • 2 replies
  • 32 kudos
Latest Reply
Kaniz
Community Manager
  • 32 kudos

Hi @Hubert Dudek​ , We know the world is full of choices. Thank you for choosing us! We would like to thank excellent customers like you for your support. We couldn’t do it without you! 

  • 32 kudos
1 More Replies
Kaniz
by Community Manager
  • 1619 Views
  • 3 replies
  • 0 kudos
  • 1619 Views
  • 3 replies
  • 0 kudos
Latest Reply
armen23
New Contributor II
  • 0 kudos

Code To Merge 2 dict in Python is:def Merge(dict1, dict2):    return(dict2.update(dict1))     # Driver codedict1 = {'a': 10, 'b': 8}dict2 = {'d': 6, 'c': 4}# This return Noneprint(Merge(dict1, dict2))# changes made in dict2print(dict2)For More Visit:...

  • 0 kudos
2 More Replies
missyT
by New Contributor III
  • 730 Views
  • 1 replies
  • 1 kudos

Modules

Hello Python People.Im still going through the motions learning python and have a general question.example = Im creating basic ETL tasks to practice (SQL, SQLite, Excel etc)I can see that to read excel I can use the pyodbc module - or can use Pandas ...

  • 730 Views
  • 1 replies
  • 1 kudos
Latest Reply
-werners-
Esteemed Contributor III
  • 1 kudos

do not reinvent the wheel. If what you need exists already, use it.If you only use a few methods of a package you can consider not importing it completely.The cost of importing is not huge, but that depends on the amount of imports and the size of th...

  • 1 kudos
MadelynM
by New Contributor III
  • 1202 Views
  • 1 replies
  • 7 kudos

2021-07-Webinar--Hassle-Free-Data-Ingestion-Social-1200x628

Thanks to everyone who joined the Hassle-Free Data Ingestion webinar. You can access the on-demand recording here. We're sharing a subset of the phenomenal questions asked and answered throughout the session. You'll find Ingestion Q&A listed first, f...

  • 1202 Views
  • 1 replies
  • 7 kudos
Latest Reply
Emily_S
New Contributor III
  • 7 kudos

Check out Part 2 of this Data Ingestion webinar to find out how to easily ingest semi-structured data at scale into your Delta Lake, including how to use Databricks Auto Loader to ingest JSON data into Delta Lake.

  • 7 kudos
User16826994223
by Honored Contributor III
  • 1084 Views
  • 1 replies
  • 0 kudos

Using l vacuum with a dry run in Python for a Delta Lake

I can see an example on how to call the vacuum function for a Delta lake in python here. how to use the same in python %sql VACUUM delta.`dbfs:/mnt/<myfolder>` DRY RUN

  • 1084 Views
  • 1 replies
  • 0 kudos
Latest Reply
User16826994223
Honored Contributor III
  • 0 kudos

The dry run for non-SQL code is not yet available in Delta version 0.8. I see there is a bug that is opened with delta opensource in git . hope it get resolved soon

  • 0 kudos
User16826994223
by Honored Contributor III
  • 272 Views
  • 0 replies
  • 0 kudos

python Vs Scala in Spark Daatricks. we are seeing Datbricks platform is more used with Python language than scala language , and databricks is also e...

python Vs Scala in Spark Daatricks.we are seeing Datbricks platform is more used with Python language than scala language , and databricks is also enhancing its python API more than the scala API, so is Scala will be past for Spark.Thanks

  • 272 Views
  • 0 replies
  • 0 kudos
User16753724663
by Valued Contributor
  • 4987 Views
  • 1 replies
  • 0 kudos

Error importing pip package s3fs

A job recently began failing with the following error when a python notebook imports the pip package s3fs.ImportError: cannot import name 'maybe_sync' from 'fsspec.asyn' (/databricks/python/lib/python3.8/site-packages/fsspec/asyn.py)   ImportError Tr...

  • 4987 Views
  • 1 replies
  • 0 kudos
Latest Reply
User16753724663
Valued Contributor
  • 0 kudos

While checking the init script is installing the s3fs version 0.5.2.This version has issues at the moment from the pypi. I have tested version 0.6.0 that works fine. please change your requirement.txt file with a newer version of s3fs. Below is the p...

  • 0 kudos
Labels