livy 원 격 으로 spark 작업 제출

2385 단어 빅 데이터
livy 원 격 으로 spark 작업 제출
1. 리 비 설치
다운로드 주소:http://livy.io/quickstart.html
다운로드 후 압축 을 풀 면 실행 할 수 있 습 니 다.
2. 환경 변수 설정
export SPARK_HOME=/usr/lib/spark 
export HADOOP_CONF_DIR=/etc/hadoop/conf
3. ( , )
# What host address to start the server on. By default, Livy will bind to all network interfaces. (  )
 livy.server.host = 0.0.0.0

# What port to start the server on.(  )
 livy.server.port = 8998
# Time in milliseconds on how long Livy will wait before timing out an idle session.(    , session      ,  kill )
 livy.server.session.timeout = 1h

4. livy 서비스 시작./bin/livy-server
5. REST Api (이하 url 은 모두 host: port 로 시작 하고 기본 값 은 localhost: 8998)
1)GET   /sessions Returns all the active interactive sessions. session
2)POST  /sessions
클 러 스 터 에 새로운 interative Scala, Python 또는 R 셸 을 만 듭 니 다. session 을 만 듭 니 다. 즉, 셸 을 새로 여 는 것 입 니 다.
Request Body
name
description
type
kind
The session kind (required)
session kind
proxyUser
User to impersonate when starting the session
string
conf
Spark configuration properties
Map of key=val
3) GET / sessions / {sessionId} Returns the session information. 해당 session 의 정 보 를 되 돌려 줍 니 다.
4)DELETE /sessions/{sessionId}
Kills the Session job.
5) GET /sessions/{sessionId}/statements
session 의 모든 statement 정 보 를 되 돌려 줍 니 다.
6)POST /sessions/{sessionId}/statements
세 션 에서 statement 을 실행 합 니 다. 문 구 를 제출 하고 실행 합 니 다.
7) GET /sessions/{sessionId}/statements/{statementId}
해당 statement 정보 가 져 오기

좋은 웹페이지 즐겨찾기