-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathSampleCode4x_CONNECT_ServiceCloudAstra.java
More file actions
100 lines (85 loc) · 3.69 KB
/
Copy pathSampleCode4x_CONNECT_ServiceCloudAstra.java
File metadata and controls
100 lines (85 loc) · 3.69 KB
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
package com.datastax.samples;
import java.io.File;
import java.nio.file.Paths;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.datastax.oss.driver.api.core.CqlSession;
import com.datastax.oss.driver.api.core.config.DriverConfigLoader;
/**
* This class shows how to connect to the DataStax Cloud Cassandra As a Service: ASTRA
*
* Pre-requisites:
* ===================
*
* 1. You need an ASTRA intance : go to astra.datastax.com and create an instance there. There is a free tier
* for you to have a 3-node clusters availables forever. You can find more info on:
*
* 2. You need to provide you ASTRA credentials username, password, keyspace
* but also the secure bundle ZIP. To download it please follow the instruction on :
* https://docs.datastax.com/en/developer/java-driver/4.5/manual/cloud/
*
* 3. You need a java driver version 3.8
*/
public class SampleCode4x_CONNECT_ServiceCloudAstra implements ExampleSchema {
/** Logger for the class. */
private static Logger LOGGER = LoggerFactory.getLogger(SampleCode4x_CONNECT_ServiceCloudAstra.class);
/** StandAlone (vs JUNIT) to help you running. */
public static void main(String[] args) {
// ----
// #1. Connecting explicitely using the CqlSessionBuilder
// ----
// Those are mandatory to connect to ASTRA
final String ASTRA_ZIP_FILE = "/path/to/secure-connect-bundkle.zip";
final String ASTRA_USERNAME = "token";
final String ASTRA_PASSWORD = "AstraCS:...your token";
final String ASTRA_KEYSPACE = "default_keyspace";
// Check the cloud zip file
File cloudSecureConnectBundleFile = new File(ASTRA_ZIP_FILE);
if (!cloudSecureConnectBundleFile.exists()) {
throw new IllegalStateException("File '" + ASTRA_ZIP_FILE + "' has not been found\n"
+ "To run this sample you need to download the secure bundle file from ASTRA WebPage\n"
+ "More info here:");
}
// Connect
try (CqlSession cqlSession = CqlSession.builder()
.withCloudSecureConnectBundle(Paths.get(ASTRA_ZIP_FILE))
.withAuthCredentials(ASTRA_USERNAME, ASTRA_PASSWORD)
.withKeyspace(ASTRA_KEYSPACE)
.build()) {
LOGGER.info("[OK] Welcome to ASTRA. Connected to Keyspace {}", cqlSession.getKeyspace().get());
}
// ----
// #2. Delegating configuration parameters to dedicated file
// ----
/*
* In this sample target conf is located in src/main/resources,
* this is what it looks like
*
* datastax-java-driver {
* basic {
* session-keyspace = killrvideo
* cloud {
* secure-connect-bundle = /Users/cedricklunven/Downloads/secure-connect-killrvideo.zip
* }
* }
* advanced {
* auth-provider {
* class = PlainTextAuthProvider
* username = killrvideo
* password = killrvideo
* }
* }
* }
*/
String confFilePath = SampleCode4x_CONNECT_DriverConfigLoader
.class.getResource("/custom_astra.conf").getFile();
try (CqlSession cqlSession = CqlSession.builder()
.withConfigLoader(DriverConfigLoader.fromFile(new File(confFilePath))).build()) {
// Use session
LOGGER.info("[OK] Welcome to ASTRA (conf file). Connected to Keyspace {}",
cqlSession.getKeyspace().get());
}
LOGGER.info("[OK] Success");
System.exit(0);
}
}