我正在尝试在气流中运行example_http_operator。我已在服务器上将DAG设置为“ ON”,但仍无法使用HTTP调用来启动DAG。我正在使用HTTP传感器,所以不确定要启动该任务需要点击哪个端点。
sensor = HttpSensor(
task_id='http_sensor_check',
http_conn_id='http_default',
endpoint='',
request_params={},
response_check=lambda response: "Google" in response.text,
poke_interval=5,
dag=dag,
)