일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- sort
- zip 암호화
- Elasticsearch
- ELASTIC
- Java
- Mac
- aggs
- aggregation
- Test
- License
- 파이썬
- Kafka
- matplotlib
- API
- token filter test
- 900gle
- flask
- TensorFlow
- 차트
- license delete
- query
- zip 파일 암호화
- docker
- analyzer test
- Python
- licence delete curl
- high level client
- MySQL
- plugin
- springboot
Archives
- Today
- Total
개발잡부
[java] Spark java tutorial 본문
반응형
https://spark.apache.org/docs/latest/sql-data-sources-load-save-functions.html
JSON File 읽기
Dataset<Row> peopleDF =
spark.read().format("json").load("examples/src/main/resources/people.json");
peopleDF.select("name", "age").write().format("parquet").save("namesAndAges.parquet");
CSV File 읽기
Dataset<Row> peopleDFCsv = spark.read().format("csv")
.option("sep", ";")
.option("inferSchema", "true")
.option("header", "true")
.load("examples/src/main/resources/people.csv");
ORC 파일 쓰기
usersDF.write().format("orc")
.option("orc.bloom.filter.columns", "favorite_color")
.option("orc.dictionary.key.threshold", "1.0")
.option("orc.column.encoding.direct", "name")
.save("users_with_options.orc");
반응형
'JAVA' 카테고리의 다른 글
[java] 10진수 를 2진수, 8진수, 16진수로 변환하기 (0) | 2023.05.15 |
---|---|
Error querying database (0) | 2022.04.25 |
Table 'shop.hibernate_sequence' doesn't exist (0) | 2022.04.16 |
generic (0) | 2020.04.02 |
Comments