-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
111 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,11 @@ | |
from datetime import datetime, timedelta | ||
import json, requests | ||
|
||
|
||
# 함수 정의: HTTP POST 요청 | ||
def send_post_request(categoryId): | ||
load_dotenv() | ||
url = os.getenv("SERVICE_URL") | ||
url = os.getenv("HOMEPLUS_SERVICE_URL") | ||
headers = {"Content-Type": "application/json"} | ||
data = json.dumps({"category_id": categoryId}) | ||
|
||
|
@@ -22,7 +23,9 @@ def send_post_request(categoryId): | |
print(f"Success: {response.json()}") | ||
elif "500 Internal Server Error" in response.text: | ||
context = get_current_context() | ||
print(f"Failed: {response.status_code}, NO PRODUCT EXISTS, detail shows below\n{response.text}") | ||
print( | ||
f"Failed: {response.status_code}, NO PRODUCT EXISTS, detail shows below\n{response.text}" | ||
) | ||
raise AirflowSkipException(f"Skip task {context['ti'].task_id}") | ||
else: | ||
print(f"Failed: {response.status_code}, {response.text}") | ||
|
@@ -31,27 +34,27 @@ def send_post_request(categoryId): | |
|
||
# DAG의 기본 설정 | ||
default_args = { | ||
'owner': 'khuda', # DAG 소유자 | ||
'depends_on_past': False, # 이전 DAG 실패 여부에 의존하지 않음 | ||
# 'email': ['[email protected]'], # 수신자 이메일 | ||
# "email_on_success": True, # 성공 시 이메일 전송 | ||
# 'email_on_failure': True, # 실패 시 이메일 전송 | ||
# 'email_on_retry': True, # 재시도 시 이메일 전송 | ||
'retries': 1, # 실패 시 재시도 횟수 | ||
'retry_delay': timedelta(minutes=5) # 재시도 간격 | ||
"owner": "khuda", # DAG 소유자 | ||
"depends_on_past": False, # 이전 DAG 실패 여부에 의존하지 않음 | ||
# 'email': ['[email protected]'], # 수신자 이메일 | ||
# "email_on_success": True, # 성공 시 이메일 전송 | ||
# 'email_on_failure': True, # 실패 시 이메일 전송 | ||
# 'email_on_retry': True, # 재시도 시 이메일 전송 | ||
"retries": 1, # 실패 시 재시도 횟수 | ||
"retry_delay": timedelta(minutes=5), # 재시도 간격 | ||
} | ||
|
||
# DAG 정의 | ||
with DAG( | ||
'HomePlus_Crawling_DAG', # DAG의 이름 | ||
default_args=default_args, # 기본 인자 설정 | ||
description='HomePlus Crawling', # DAG 설명 | ||
#schedule_interval='0 9,16,22 * * *', # 실행 주기 (매일 09:00, 16:00, 22:00 정각) | ||
schedule_interval='0 * * * *', | ||
start_date=datetime(2024, 9, 20), # 시작 날짜 | ||
catchup=False # 시작 날짜부터 현재까지의 미실행 작업 실행 여부 | ||
"HomePlus_Crawling_DAG", # DAG의 이름 | ||
default_args=default_args, # 기본 인자 설정 | ||
description="HomePlus Crawling", # DAG 설명 | ||
# schedule_interval='0 9,16,22 * * *', # 실행 주기 (매일 09:00, 16:00, 22:00 정각) | ||
schedule_interval="0 * * * *", | ||
start_date=datetime(2024, 9, 20), # 시작 날짜 | ||
catchup=False, # 시작 날짜부터 현재까지의 미실행 작업 실행 여부 | ||
) as dag: | ||
|
||
# run_consumer_task1 = BashOperator( | ||
# task_id='run-consumer-1', # Task 이름 | ||
# bash_command="python3 /home/patturning1/mq_consumer1.py &", | ||
|
@@ -62,7 +65,7 @@ def send_post_request(categoryId): | |
# task_id='run-consumer-2', # Task 이름 | ||
# bash_command="python3 /home/patturning1/mq_consumer2.py &", | ||
# do_xcom_push=False | ||
# ) | ||
# ) | ||
|
||
# run_consumer_task3 = BashOperator( | ||
# task_id='run-consumer-3', # Task 이름 | ||
|
@@ -72,13 +75,16 @@ def send_post_request(categoryId): | |
|
||
@task | ||
def send_post_request_HOMEPLUS_task(category_id): | ||
return send_post_request(category_id) | ||
return send_post_request(category_id) | ||
|
||
# TaskFlow API로 task 정의 | ||
@task | ||
def generate_queue_values(): | ||
return [{"consumer": "HomePlus.product.queue"}, {"consumer": "HomePlus.product.queue"}, | ||
{"consumer": "HomePlus.product.queue"}] | ||
return [ | ||
{"consumer": "HomePlus.product.queue"}, | ||
{"consumer": "HomePlus.product.queue"}, | ||
{"consumer": "HomePlus.product.queue"}, | ||
] | ||
|
||
# BashOperator에서 expand로 받은 값을 사용 | ||
run_consumer_task = BashOperator.partial( | ||
|
@@ -88,4 +94,7 @@ def generate_queue_values(): | |
|
||
category_ids = list(range(100001, 100078)) | ||
|
||
[run_consumer_task, send_post_request_HOMEPLUS_task.expand(category_id=category_ids)] | ||
[ | ||
run_consumer_task, | ||
send_post_request_HOMEPLUS_task.expand(category_id=category_ids), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,79 @@ | ||
<<<<<<< Updated upstream | ||
### dummy | ||
======= | ||
from airflow import DAG | ||
from airflow.decorators import task | ||
from dotenv import load_dotenv | ||
import os | ||
from airflow.operators.bash import BashOperator | ||
from airflow.exceptions import AirflowSkipException | ||
from airflow.operators.python import get_current_context | ||
from datetime import datetime, timedelta | ||
import json, requests | ||
|
||
from Oasis_category_info import * | ||
|
||
|
||
# 함수 정의: HTTP POST 요청 | ||
def send_post_request(categoryId): | ||
load_dotenv() | ||
url = os.getenv("OASIS_SERVICE_URL") | ||
|
||
response = requests.post(url) | ||
|
||
# 응답 코드와 내용을 로그로 남김 | ||
if response.status_code == 200: | ||
print(f"Success: {response.json()}") | ||
elif "500 Internal Server Error" in response.text: | ||
context = get_current_context() | ||
print( | ||
f"Failed: {response.status_code}, NO PRODUCT EXISTS, detail shows below\n{response.text}" | ||
) | ||
raise AirflowSkipException(f"Skip task {context['ti'].task_id}") | ||
else: | ||
print(f"Failed: {response.status_code}, {response.text}") | ||
response.raise_for_status() | ||
|
||
|
||
# DAG의 기본 설정 | ||
default_args = { | ||
"owner": "khuda", # DAG 소유자 | ||
"depends_on_past": False, # 이전 DAG 실패 여부에 의존하지 않음 | ||
# 'email': ['[email protected]'], # 수신자 이메일 | ||
# "email_on_success": True, # 성공 시 이메일 전송 | ||
# 'email_on_failure': True, # 실패 시 이메일 전송 | ||
# 'email_on_retry': True, # 재시도 시 이메일 전송 | ||
"retries": 1, # 실패 시 재시도 횟수 | ||
"retry_delay": timedelta(minutes=5), # 재시도 간격 | ||
} | ||
|
||
# DAG 정의 | ||
with DAG( | ||
"Oasis_Crawling_DAG", # DAG의 이름 | ||
default_args=default_args, # 기본 인자 설정 | ||
description="Oasis Crawling", # DAG 설명 | ||
schedule_interval="0 * * * *", | ||
start_date=datetime(2024, 9, 20), # 시작 날짜 | ||
catchup=False, # 시작 날짜부터 현재까지의 미실행 작업 실행 여부 | ||
) as dag: | ||
|
||
@task | ||
def send_post_request_OASIS_task(): | ||
return send_post_request() | ||
|
||
# TaskFlow API로 task 정의 | ||
@task | ||
def generate_queue_values(): | ||
return [{"consumer": "Oasis.product.queue"}] | ||
|
||
# BashOperator에서 expand로 받은 값을 사용 | ||
run_consumer_task = BashOperator.partial( | ||
task_id="run-consumer-task", | ||
bash_command="python3 /home/patturning1/homeplus_consumer.py {{ params.consumer }}", # 템플릿을 사용하여 매핑된 값 사용 | ||
).expand(params=generate_queue_values()) | ||
|
||
[ | ||
run_consumer_task, | ||
send_post_request_OASIS_task.expand(), | ||
] | ||
>>>>>>> Stashed changes |