[Python] itertools
from itertools import combinations, permutations, product, combinations_with_replacement
from itertools import combinations, permutations, product, combinations_with_replacement
Backfill Data schema가 backfill이 가능한 구조여야함 예를 들어 시간 단위인 경우 created, modified와 같은 날짜 column이 존재 Airflow 내부 변수인 execution_date를 바탕으로 코드를...
DELETE FROM vs TRUNCATE 공통적으로 record를 삭제 DELETE FROM은 WHERE을 통해 특정 조건을 만족하는 record 삭제/ TRUNCATE는 모든 record 삭제 DELETE FROM보다 TRUNCATE의 속도가 빠름 TRUNCAT...
Transaction 개념 autocommit=True autocmmit=False try/catch & autocommit
Airflow CLI ```bash Initialise the metadatabase airflow db init