반응형
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 | 31 |
Tags
- Java
- django
- c#
- Google Spreadsheet
- hive
- GIT
- math
- string
- Tkinter
- matplotlib
- gas
- Google Excel
- Excel
- list
- 파이썬
- dataframe
- PySpark
- Github
- Redshift
- array
- PostgreSQL
- Mac
- Python
- Apache
- PANDAS
- SQL
- numpy
- google apps script
- Kotlin
Archives
- Today
- Total
목록S3 (5)
달나라 노트
Hive : s3 서버에 query 결과 upload하기, s3서버에서 파일 불러와 database table 만들기
Hive에서 s3 서버를 다룰 수 있는 방법을 알아봅시다. ----- Hive database -> S3 server ----- drop table if exists test_schema.test_table; create external table test_schema.test_table ( col_1 bigint, col_2 string ) row format serde 'org.apache.hadoop.hive.serde2.OpenCSVSerde' -- row format delimited fields terminated by ',' -- lines terminated by '\n' stored as textfile location 's3://root_dir/test_dir/' ; ----- Inse..
SQL/Apache Hive
2021. 2. 26. 00:38