dgadiraju

Databricks Platform Features – Deep Dive into Delta Lake using PySpark Data Frames

Databricks Platform Features – Deep Dive into Delta Lake using PySpark Data Frames Do you want to learn Spark Delta Lake hands-on? Here are the YouTube Videos premiered for free. Also, the lectures and content along with the support are available as part of our Udemy course (go to the bottom or look at the …

Databricks Platform Features – Deep Dive into Delta Lake using PySpark Data Frames Read More »

Data Engineering using Databricks on AWS and Azure

Data Engineering using Databricks on AWS and Azure Course Details As part of this course, you will be learning Data Engineering using Databricks. Getting Started with Databricks Setup Local Development Environment to develop Data Engineering Applications using Databricks Using Databricks CLI to manage files, jobs, clusters, etc related to Data Engineering Applications Spark Application Development …

Data Engineering using Databricks on AWS and Azure Read More »

Accessing Elements – Python Tuples

Accessing Elements – tuples¶ Let us see details related to operations on tuples. Unlike other collections (list, set, dict) we have limited functions with tuple in Python. In [2]: %%HTML <iframe width=”560″ height=”315″ src=”https://www.youtube.com/embed/fZ-QOUk-ia4?rel=0&amp;controls=1&amp;showinfo=0″ frameborder=”0″ allowfullscreen></iframe> tuple is by definition immutable and hence we will not be able to add elements to a tuple or delete …

Accessing Elements – Python Tuples Read More »

Solutions – Managing Partitioning Tables using Postgresql

Partitioning Tables¶ Here is the exercise to get comfort with partitioning. We will be using range partitioning. Use retail database. Make sure orders table already exists. In [1]: %%HTML <iframe width=”560″ height=”315″ src=”https://www.youtube.com/embed/uAkrpaJmbx0?rel=0&amp;controls=1&amp;showinfo=0″ frameborder=”0″ allowfullscreen></iframe> In [1]: %load_ext sql In [2]: %env DATABASE_URL=postgresql://itversity_retail_user:retail_password@localhost:5432/itversity_retail_db env: DATABASE_URL=postgresql://itversity_retail_user:retail_password@localhost:5432/itversity_retail_db Exercise 1¶ Create table orders_part with the same columns as orders. Partition the …

Solutions – Managing Partitioning Tables using Postgresql Read More »

Exercises – Managing Database Objects using Postgresql

Exercises – Managing Database Objects¶ This exercise is primarily to assess your capabilities related to put all important DDL concepts in practice by coming up with solution for a typical data migration problem from one database (mysql) to another (postgres). Here are the high level steps for database migration from one type of database to …

Exercises – Managing Database Objects using Postgresql Read More »

Solutions – Managing Database Objects in Postgresql

Managing Database Objects¶ This exercise is primarily to assess your capabilities related to put all important DDL concepts in practice by coming up with solution for a typical data migration problem from one database (mysql) to another (postgres). Here are the high level steps for database migration from one type of database to another type …

Solutions – Managing Database Objects in Postgresql Read More »