Uncategorized Templates In Airflow By admin In Airflow, templates are a way to write dynamic code. They are strings of text that can contain placeholders, which get replaced with actual values when the template is renderedThe templating in Airflow uses the Jinja templating engine. Let’s create...
Uncategorized DATABASE CONNECTION IN DATAGRIP By admin Introduction: DataGrip is a database management environment for developers. It is designed to query, create, and manage databases. Databases can work locally, on a server, or in the cloud. Supports MySQL, PostgreSQL, Microsoft SQL Server, Oracle, and more. If you...
Uncategorized Filling NA of n Columns with Nulls Based on DataType using Pandas By Sohail Lets Run through a scenario I have a csv where specific columns have nulls or Empty Values. using python pandas lets read the csv import pandas as pd t1 = pd.read_csv('E:/Blog/table3.csv',delimiter=',', encoding='iso-8859-1',low_memory=False) empid address phoneno weight comment name age 0...
Helical Insight Groovy Helpful Tips By Somen Sarkar Groovy Helpful Tips Here are some useful information when using groovy Single Line comment in Groovy // We can comment using // in groovy as in Java. Multi Line comment in Groovy /* Multi-line comment style is same as in...