Code Monkey home page Code Monkey logo

spark_python's People

Watchers

Pablo avatar

spark_python's Issues

Cambio de nombre de columnas databricks con spark

Cambiar columna "Versión" a "Version"

spark.read.table("tabla").withColumnRenamed("Versión","Version").write.format("delta").mode("overwrite").option("overwriteSchema", "true").saveAsTable("tabla")

Borrar masivamente databricks por extensión

#dbutils.fs.rm("dbfs:/FileStore/shared_uploads/usuario/directorio/archivo.xlsm")

#dbutils.fs.rm("dbfs:/FileStore/shared_uploads/usuario/, True)
#dbutils.fs.mkdirs("dbfs:/FileStore/shared_uploads/usuariodirectorio")

import os
usuario="[email protected]"

all_files = dbutils.fs.ls("dbfs:/FileStore/shared_uploads/"+usuario)
files = []
for file in all_files:
split_tup = os.path.splitext(file.name)

file_name = split_tup[0]
file_extension = split_tup[1]

if (file_extension==".xls" or file_extension==".xlsx" or file_extension==".TXT" or file_extension==".csv" or file_extension==".xlsm"):
print (file_name+file_extension)
dbutils.fs.rm("dbfs:/FileStore/shared_uploads/"+usuario+"/"+file_name+file_extension)

dbutils.fs.ls("dbfs:/FileStore/shared_uploads/"+usuario)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.