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 |
Tags
- 데이터베이스
- 데이터 파이프라인
- TCP
- redshift
- TIL
- 종류
- 데이터엔지니어링
- 컴퓨터네트워크
- Docker
- PYTHON
- 데이터 웨어하우스
- airflow
- 데브코스
- dockerfile
- HADOOP
- linux
- 파이썬
- sql
- 데이터 엔지니어링
- S3
- 정리
- 운영체제
- Django
- AWS
- Go
- http
- 자료구조
- 컴퓨터 네트워크
- 가상환경
- airflow.cfg
Archives
- Today
- Total
목록delimeter (1)
홍카나의 공부방
CSV 파일을 데이터 웨어하우스(redshift)에 로드할 때 주의사항
1. CSV delimeter를 확인하였는가? - comma(,) vs vertical bar(|) # json 처리 response_json = json.loads(api_response.content) datas = [] location = response_json["iss_position"] datas.append(location["latitude"]) datas.append(location["longitude"]) datas.append(response_json["timestamp"]) print(datas) export_file = "export_file.csv" with open(export_file, "a", newline="") as fp: csvw = csv.writer(fp, delim..
Data Engineering
2023. 5. 14. 15:01