일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- numpy
- GIT
- PySpark
- string
- Tkinter
- Github
- PostgreSQL
- 파이썬
- hive
- matplotlib
- math
- c#
- gas
- Mac
- django
- array
- Google Excel
- dataframe
- google apps script
- Apache
- Google Spreadsheet
- Python
- list
- Java
- Redshift
- Excel
- PANDAS
- SQL
- Kotlin
- Today
- Total
목록Partition (2)
달나라 노트
Hive에서 partition table은 아래와 같이 만들 수 있습니다. SET hive.exec.dynamic.partition = true;SET hive.exec.dynamic.partition.mode = nonstrict;create table test_schema.test_table ( col1 bigint, col2 string, col3 float, col4 string, col5 timestamp)partitioned by ( col6 bigint, col7 bigint);insert into test_schema.test_table partition (col6,..
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world fun main() { var list_fruit = listOf("Apple", "PineApple", "Red_Strawberry", "Red_Apple", "Yellow_Banana", "Yellow_Yellowmelon") // 1 var var_part = list_fruit.partition() {x -> x.contains("Apple")} // 2 println(var_part) // 3 println(var_part.first) // 4 println(var_part.second) // 5 var (var_apple, var_not_apple) ..