Skip to content

Commit eb77e16

Browse files
committed
Prep for 1.0.0-beta2
1 parent 0874abb commit eb77e16

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

changelog/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
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.

manual/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff 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`:

0 commit comments

Comments
 (0)