반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 파이썬
- array
- Tkinter
- gas
- c#
- Python
- matplotlib
- PySpark
- string
- Excel
- numpy
- Kotlin
- google apps script
- Mac
- Java
- Apache
- hive
- math
- GIT
- Redshift
- PostgreSQL
- dataframe
- Github
- Google Excel
- Google Spreadsheet
- SQL
- PANDAS
- django
- list
Archives
- Today
- Total
목록hive.vectorized.execution (1)
달나라 노트
Hive : hive.vectorized.execution (Vector화 사용하기)
Hive는 기본적으로 한번에 1개의 row를 처리합니다. Hive에선 vectorized option이 있는데 이 option을 활성화하여 벡터화를 이용하면 한 번에 1024개의 row를 처리하여 table scan, join, aggregate 등의 과정에서 실행 속도를 높일 수 있습니다. set hive.vectorized.execution.enabled = true; set hive.vectorized.execution.reduce.enabled = true; set hive.vectorized.execution.reduce.groupby.enabled=true; vectorization option은 위와 같습니다.
SQL/Apache Hive
2021. 6. 4. 03:24