Skip to content

Commit 067b7e2

Browse files
author
csplinter
authored
Update README.md
1 parent 250c408 commit 067b7e2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
# Loading Data Into Apollo with DataStax Bulk Loader
2-
This example will demonstrate how to load data into Apollo two different ways, from a CSV file or from another Cassandra table
1+
# Loading Data into Apollo with DataStax Bulk Loader
2+
If you're trying to load data into Apollo from a CSV file or from an existing Cassandra table, then you've come to the right place. This example shows how to quickly load data into Apollo using the [DataStax Bulk Loader](https://docs.datastax.com/en/dsbulk/doc/index.html) (DSBulk for short).
33

44
Contributors: [Dave Bechberger](https://github.com/bechbd) based on the work of [Brian Hess](https://github.com/brianmhess)
55

66
## Objectives
77

8-
* To demonstrate how to load data into Apollo from a CSV file or from an existing table in a Cassandra keyspace
8+
* Show how to load data into Apollo from a CSV file on the filesystem or from an existing table in Cassandra
99

1010
## Project Layout
1111

1212
* [data.csv](data.csv) - The CSV data to load
1313
* [schema.cql](schema.cql) - The CQL schema used for this example
1414

15-
## How this Sample Works
16-
Loading data into Apollo using DS Bulk is much like loading data into other Cassandra databases with the addition of the requirement to specify the secure database bundle as well as the username and password for the database.
15+
## How this Works
16+
Loading data into Apollo using DSBulk is much like loading data into other Cassandra databases with the addition of the requirement to specify the [secure connect bundle](https://docs.datastax.com/en/apollo/aws/doc/dscloud/apollo/dscloudObtainingCredentials.html) as well as the username and password for your Apollo database.
1717

18-
The secure database bundle is specified using the `-b <INSERT PATH>` parameter on the command line. [See here for more details](https://docs.datastax.com/en/dsbulk/doc/dsbulk/reference/driverOptions.html#driverOptions__driverBasicCloudSecureConnectBundle)
18+
The secure connect bundle is specified using the `-b <INSERT PATH>` parameter on the command line. [See here for more details](https://docs.datastax.com/en/dsbulk/doc/dsbulk/reference/driverOptions.html#driverOptions__driverBasicCloudSecureConnectBundle)
1919

2020
The username is specified using the `-u <INSERT USERNAME>` parameter on the command line. [See here for more details](https://docs.datastax.com/en/dsbulk/doc/dsbulk/reference/driverOptions.html#driverOptions__datastaxJavaDriverAdvancedConnectionAuthProviderUsername)
2121

2222
The password is specified using the `-p <INSERT PASSWORD>` parameter on the command line. [See here for more details](https://docs.datastax.com/en/dsbulk/doc/dsbulk/reference/driverOptions.html#driverOptions__datastaxJavaDriverAdvancedConnectionAuthProviderPassword)
2323

24-
This example only touches on some of the basic functionality for DS Bulk. DS Bulk has all the functionality to perform complex loading operations to Apollo as it does to other DSE clusters. To read about some of those scenarios please check the following links below for more information:
24+
This example only touches the tip of the iceberg of functionality. DSBulk has all the functionality to perform complex loading operations to Apollo as it does to other DDAC and DSE clusters. Check out the docs below for details of the other things it can do:
2525

2626
* [DataStax Bulk Loader Documentation](https://docs.datastax.com/en/dsbulk/doc/)
2727
* [DataStax Bulk Loader: Introduction and Loading](https://academy.datastax.com/content/datastax-bulk-loader-introduction-and-loading)
@@ -35,7 +35,7 @@ This example only touches on some of the basic functionality for DS Bulk. DS Bu
3535

3636
* DS Bulk v1.4.0 or greater
3737
* An Apollo cluster with the schema ([from schema.cql](schema.cql)) loaded and credential information
38-
**Note** If you need further instruction on how to obtain the secure database bundle for your Apollo instance then please refer to the documentation located [here](https://docs.datastax.com/en/apollo/aws/doc/dscloud/apollo/dscloudObtainingCredentials.html).
38+
**Note** If you need further instruction on how to obtain the secure connect bundle for your Apollo instance then please refer to the documentation located [here](https://docs.datastax.com/en/apollo/aws/doc/dscloud/apollo/dscloudObtainingCredentials.html).
3939
* A Cassandra cluster (optional if you want to load from Cassandra)
4040

4141
### Running

0 commit comments

Comments
 (0)