Wednesday, 18 January 2023

Kill job in Linux/Ubuntu

To list the running jobs,

ps -ef|grep java


To kill the job,

ill -9 pid


To kill the application by drag & drop

xkill

DBT - Models

Models are where your developers spend most of their time within a dbt environment. Models are primarily written as a select statement and ...