File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 22
33### 1.0.0 (in progress)
44
5+
6+ ### 1.0.0-beta2
7+
58- [ improvement] DAT-81: Surface setup errors better.
69- [ improvement] DAT-145: Use HdrHistogram as reservoir for latency measurement.
710- [ improvement] DAT-104: Add dry-run feature to try out load without writing to DSE.
Original file line number Diff line number Diff line change @@ -79,9 +79,15 @@ See examples for details.
7979
8080 ` dsbulk load -url https://svr/data/export.csv -k ks1 -t table1 -h '10.200.1.3, 10.200.1.4' -port 9876 `
8181
82- * Load all csv files from a directory. The files do not have a header row. Map field indices of the input to table columns:
82+ * Load all csv files from a directory. The files do not have header rows. Map field indices
83+ of the input to table columns:
8384
84- ` dsbulk load -url ~/export-dir -k ks1 -t table1 -m '0=col1,1=col3' `
85+ ` dsbulk load -url ~/export-dir -k ks1 -t table1 -m '0=col1,1=col3' -header false `
86+
87+ * Load a file containing three fields per row. The file has no header row. Map all fields to
88+ table columns in field order. Note that field indices need not be provided.
89+
90+ ` dsbulk load -url ~/export-dir -k ks1 -t table1 -m 'col1, col2, col3' -header false `
8591
8692* With default port for cluster hosts, keyspace, table, and mapping set in
8793 ` conf/application.conf ` :
You can’t perform that action at this time.
0 commit comments