You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff 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).
3
3
4
4
Contributors: [Dave Bechberger](https://github.com/bechbd) based on the work of [Brian Hess](https://github.com/brianmhess)
5
5
6
6
## Objectives
7
7
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
9
9
10
10
## Project Layout
11
11
12
12
*[data.csv](data.csv) - The CSV data to load
13
13
*[schema.cql](schema.cql) - The CQL schema used for this example
14
14
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.
17
17
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)
19
19
20
20
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)
21
21
22
22
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)
23
23
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:
*[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
35
35
36
36
* DS Bulk v1.4.0 or greater
37
37
* 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).
39
39
* A Cassandra cluster (optional if you want to load from Cassandra)
0 commit comments