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
driver.properties.user=The username used to connect to the database.
23
+
driver.properties.password=The password used to connect to the database.
24
+
driver.properties.localDatacenter=The local datacenter to use when 'DefaultLoadBalancingPolicy' (used by default) is applied.
25
+
driver.properties.debug=Whether the debug mode is enabled.
26
+
driver.properties.debug.choices=true,false
27
+
driver.properties.consistencyLevel=The consistency level per connection. The consistency level defaults to 'LOCAL_ONE' as defined in the configuration reference if not specified.
28
+
driver.properties.activeProfile=The execution profile to use when the connection to Cassandra is created.
29
+
driver.properties.fetchSize=The default fetch size for all the queries returning result sets. This value is the number of rows the server will return in each network frame. By default, this value is set to 100.
30
+
driver.properties.retry=The custom retry policy to apply. The value must be the full package of the policy's class implementing 'RetryPolicy' interface. By default, the driver will use 'DefaultRetryPolicy'.
31
+
driver.properties.loadBalancing=The custom load balancing policy to apply. The value must be the full package of the policy's class implementing 'LoadBalancingPolicy' interface.
32
+
driver.properties.reconnection=The custom reconnection policy to apply. By default, the driver will use 'ExponentialReconnectionPolicy'. If you want to use a custom policy, specify the full package of the policy's class. Make sure you always cast the policy's arguments appropriately.
33
+
driver.properties.enableSsl=Whether the secured traffic is enabled.
34
+
driver.properties.enableSsl.choices=true,false
35
+
driver.properties.sslEngineFactory=The SSL engine factory to use. By default, 'DefaultSslEngineFactory' is used. The value must be the fully-qualified name of a class with a no-args constructor implementing 'SslEngineFactory' interface.
36
+
driver.properties.hostnameVerification=Whether the validation of the server certificate's common name against the hostname of the server being connected to is enabled. By default, it's enabled if the secured traffic is enabled.
0 commit comments