forked from badoo/kexasol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02_stream.kt
222 lines (195 loc) · 7.24 KB
/
02_stream.kt
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
import com.badoo.kexasol.ExaConnectionOptions
import com.badoo.kexasol.enum.ExaEncryptionMode
import com.badoo.kexasol.exception.ExaStreamException
import java.math.BigDecimal
import java.time.LocalDate
import java.time.LocalDateTime
import kotlin.test.Test
class Example02Stream : KExasolExample() {
/**
* Fetch large dataset as raw CSV stream
*/
@Test
fun streamExportRaw() {
val exa = ExaConnectionOptions(
dsn = credentials.dsn,
user = credentials.user,
password = credentials.password,
schema = credentials.schema,
).connect()
exa.use {
exa.streamExport(" SELECT * FROM users ORDER BY user_id LIMIT 3") { source ->
//first line is header
println(source.readUtf8Line())
//other lines represent data
println(source.readUtf8Line())
println(source.readUtf8Line())
println(source.readUtf8Line())
}
}
}
/**
* Fetch large dataset with CSV reader
*/
@Test
fun streamExportReader() {
val exa = ExaConnectionOptions(
dsn = credentials.dsn,
user = credentials.user,
password = credentials.password,
schema = credentials.schema,
compression = true,
).connect()
exa.use {
exa.streamExportReader("SELECT * FROM users ORDER BY user_id LIMIT 3") { reader ->
reader.forEach { row ->
//Access column by index
println("USER_ID (Long): ${row.getLong(0)}, USER_NAME (String): ${row.getString("USER_NAME")}")
}
}
}
}
/**
* Import large dataset as raw CSV stream
*/
@Test
fun streamImportRaw() {
val exa = ExaConnectionOptions(
dsn = credentials.dsn,
user = credentials.user,
password = credentials.password,
schema = credentials.schema,
encryption = ExaEncryptionMode.ENABLED_NO_CERT,
).connect()
exa.use {
val cols = listOf(
"USER_ID", "USER_NAME", "REGISTER_DT", "LAST_VISIT_TS", "IS_ACTIVE", "STATUS", "USER_RATING"
)
val st = exa.streamImport("users_copy", cols) { sink ->
// write raw CSV lines
sink.writeUtf8("1,abc,2020-01-01,\"2020-02-01 03:04:05\",0,ACTIVE,15.55\n")
sink.writeUtf8("2,cde,2020-01-02,\"2020-02-02 03:04:05\",1,DELETED,25.55\n")
// null values are represented as empty strings
sink.writeUtf8("3,,,,,,\n")
}
println("IMPORT affected rows: ${st.rowCount}")
}
}
/**
* Import large dataset with CSV writer
*/
@Test
fun streamImportWriter() {
val exa = ExaConnectionOptions(
dsn = credentials.dsn,
user = credentials.user,
password = credentials.password,
schema = credentials.schema,
compression = true,
encryption = ExaEncryptionMode.ENABLED_NO_CERT,
).connect()
exa.use {
val cols = listOf(
"USER_ID", "USER_NAME", "REGISTER_DT", "IS_ACTIVE", "LAST_VISIT_TS", "STATUS", "USER_RATING"
)
val st = exa.streamImportWriter("users_copy", cols) { writer ->
// Set individual columns by index or column name, flush with .writeRow() call
writer.setLong(0, 1)
writer.setString("USER_NAME", "abc")
writer.setLocalDate("REGISTER_DT", LocalDate.parse("2020-01-01"))
writer.setBoolean(3, false)
writer.setLocalDateTime(4, LocalDateTime.parse("2020-02-01T03:04:05"))
writer.setString("STATUS", "ACTIVE")
writer.setBigDecimal("USER_RATING", BigDecimal("15.55"))
writer.writeRow()
// Write entire row from ordered List
val list: List<Any?> = listOf(
2L,
"cde",
LocalDate.parse("2020-01-02"),
true,
LocalDateTime.parse("2020-02-02T03:04:05"),
"DELETED",
BigDecimal("25.55")
)
writer.writeRow(list)
// Write an entire row from Map
val map: Map<String, Any?> = mapOf(
"USER_ID" to 3L,
"USER_NAME" to "cde",
"REGISTER_DT" to LocalDate.parse("2020-01-02"),
"IS_ACTIVE" to true,
"LAST_VISIT_TS" to LocalDateTime.parse("2020-02-02T03:04:05"),
"STATUS" to "DELETED",
"USER_RATING" to BigDecimal("25.55")
)
writer.writeRow(map)
}
println("IMPORT affected rows: ${st.rowCount}")
}
}
/**
* Import large dataset from Iterable emitting lists
*/
@Test
fun streamImportIteratorList() {
val exa = ExaConnectionOptions(
dsn = credentials.dsn,
user = credentials.user,
password = credentials.password,
schema = credentials.schema
).connect()
exa.use {
val cols = listOf(
"USER_ID", "USER_NAME", "REGISTER_DT", "IS_ACTIVE", "STATUS"
)
// Easy import from basic list of lists
val listOfLists = listOf<List<Any?>>(
listOf(1L, "abc", LocalDate.parse("2020-01-01"), false, "ACTIVE"),
listOf(2L, "cde", LocalDate.parse("2020-01-02"), true, "DELETED"),
)
val st = exa.streamImportIterator("users_copy", cols, listOfLists.iterator())
println("IMPORT affected rows: ${st.rowCount}")
}
}
/**
* Import large dataset from Iterable emitting maps
*/
@Test
fun streamImportIteratorSequence() {
val exa = ExaConnectionOptions(
dsn = credentials.dsn,
user = credentials.user,
password = credentials.password,
schema = credentials.schema
).connect()
exa.use {
val cols = listOf(
"USER_ID", "USER_NAME", "REGISTER_DT", "IS_ACTIVE", "STATUS"
)
// Import from sequence
val sequenceOfMaps = sequence {
yield(
mapOf(
"USER_ID" to 1L,
"USER_NAME" to "abc",
"REGISTER_DT" to LocalDate.parse("2020-01-01"),
"IS_ACTIVE" to false,
"STATUS" to "ACTIVE",
)
)
yield(
mapOf(
"USER_ID" to 2L,
"USER_NAME" to "cde",
"REGISTER_DT" to LocalDate.parse("2020-01-02"),
"IS_ACTIVE" to true,
"STATUS" to "DELETED",
)
)
}
val st = exa.streamImportIterator("users_copy", cols, sequenceOfMaps.iterator())
println("IMPORT affected rows: ${st.rowCount}")
}
}
}