반응형
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
- PySpark
- dataframe
- Kotlin
- SQL
- Java
- PostgreSQL
- PANDAS
- gas
- GIT
- math
- numpy
- Python
- 파이썬
- Redshift
- Mac
- matplotlib
- string
- hive
- Google Spreadsheet
- c#
- google apps script
- array
- Tkinter
- Excel
- Apache
- list
- Github
- django
- Google Excel
Archives
- Today
- Total
달나라 노트
Python pyspark : write, saveAsTable (spark dataframe을 database의 table에 삽입하기) 본문
Python/Python pyspark
Python pyspark : write, saveAsTable (spark dataframe을 database의 table에 삽입하기)
CosmosProject 2021. 5. 19. 06:09728x90
반응형
spark dataframe은 dataframe의 어떤 table안에 삽입될 수 있습니다.
from pyspark.sql import SparkSession
spark = SparkSession.builder\ # 1
.appName('Test_runner')\
.config('hive.mapred.mode', 'nonstrict')\
.config('hive.exec.dynamic.partition', 'true')\
.config('hive.exec.dynamic.partition.mode', 'nonstrict')\
.config('hive.exec.parallel', 'true')\
.config('hive.stats.fetch.column.stats', 'true')\
.config('hive.strict.checks.large.query', 'nonstrict')\
.enableHiveSupport()\
.getOrCreate()
query = '''
select *
from test_schema.test_table
'''
df_spark = spark.sql(query) # 2
spark.sql(''' # 3
drop table if exists test_schema.new_table
''')
df_spark.write.format('parquet').mode('overwrite').saveAsTable('test_schema.new_table') # 4
1. SparkSession을 initialize합니다.
2. query를 돌려 query 결과를 얻습니다.
3. 2번에서 얻은 query결과를 test_schema.new_table에 넣어줄겁니다.
그러기 위해서 기존에 있을 수도 있는 test_schema.new_table를 drop해줍니다.
4. df_spark에 있는 spark dataframe을
parquet format으로 변환하여
덮어씌우는데(overwrite)
test_schema.new_table이라는 테이블에 덮어씌웁니다.
728x90
반응형
'Python > Python pyspark' 카테고리의 다른 글
Python pyspark : regexp_replace (정규표현식으로 문자 치환하기) (0) | 2021.05.28 |
---|---|
Python pyspark : write, option, saveAsTable (spark dataframe을 AWS s3에 업로드하기) (0) | 2021.05.19 |
Python pyspark : sql (spark에서 hive 쿼리 돌리기) (0) | 2021.05.19 |
Python pyspark : columns (spark dataframe의 column 리스트 반환) (2) | 2021.05.19 |
Python pyspark : filter (spark dataframe filtering) (0) | 2021.05.19 |
Comments