-
[Python] pyhive로 요청시 시간 초과되는 경우programming 공부/Python 2021. 6. 20. 12:00
회사에서 요청 시 시간제한을 걸어뒀는데, python으로 요청하는 경우에 간혹 시간 초과되는 경우가 발생되었다.
요청할 때 poll_interval 을 인수로 넣어주면 해결된다.
query = "select * from tablename" cursor = presto.connect(host ="url",port=443,username="username",password="password",protocol='https',poll_interval=0.2).cursor() cursor.excute(query) data = cursor.fetchall() cursor.close()
'programming 공부 > Python' 카테고리의 다른 글
[Python] 프로세스 종료시 작업 추가하기 (0) 2021.06.20 [Python] 파이썬 실행시 라이브러리 설치 자동으로 하기 (0) 2021.06.20 [Python] xlwings 로 큰 DataFrame 을 Excel 파일에 저장하기 (0) 2021.06.20 [python] 현재 사용자 이름 가져오기 (0) 2021.05.13 [python] class instance의 변수로 정렬하기 (0) 2021.05.02