본문 바로가기

기술스택을 쌓아보자83

[Airflow] Core Concepts 항목별 요약 ArchitectureArchitecture Overview, WorkloadsDAGsDAG RunsTasks, [task airflow 원문 요약 : https://great-woman-hoseung.tistory.com/118]OperatorsSensorsTaskFlowExecutorAuth managerObject StorageCommunicationXComsVariablesParamsDebuggingDebugging Airflow DAGs 2024. 10. 31.
[Airflow] TASK task의 종류 3가지Operator(작업자), Sensors(이벤트감지), TaskFlow-decorated(custom python function)Relationships# 방법1second_task >> [third_task, fourth_task]# 방법2first_task.set_downstream(second_task)third_task.set_upstream(second_task)- 태스크에서 태스크간 정보를 전달하는 데에는 Xcom을 사용함.Task Instances- task states의 종류는 이미지 참조. (보통 none -> scheduled -> queued -> running -> success ) - task states는 xcom을 통해 다음 method로도 넘어감Rela.. 2024. 10. 12.
[LEETCODE- SQL 50] 20240713푼 문제들! 시작 시간 : 8시 34분 종료 시간 :  문제 유형 :select 1. 단순 where 문으로 일치하는 값을 찾는 단순 select 문 2. SQL에서 NULL 값에 대한 처리 SELECT name from Customer where referee_id != 2 OR referee_id IS NULL;3. or 구문을 통한 단순 필터링4. where 절의 결과 값에서 distinct 값을 뽑아내는 select 문 select distinct author_id as id from Views where viewer_id=author_id order by id;5. varchar 칼럼의 데이터 길이를 축정하는 length문을 이용한 select문select tweet_id from Tweets where L.. 2024. 7. 13.
[codewars/3kyu] 수 많은 점 중 최소 거리 조합 구하기(Merge Sort, Divide and Conquer를 통한 속도 최적화(병합정렬 알고리즘)) 함께 풀어보아요~ Codewars - Achieve mastery through coding practice and developer mentorshipA coding practice website for all programming levels – Join a community of over 3 million developers and improve your coding skills in over 55 programming languages!www.codewars.com가장 가까운 거리를 가지는 두 점을 구해주세요!이번 문제는 지문은 짧아서 좋습니다. 제목 그대로가 요구사항입니다! ( (2,2), # A (2,8), # B (5,5), # C (6,3), # D (6,7), # E (7,4).. 2024. 4. 30.