Starting with version 4.9, the Apache Software Foundation owns and maintains the NodeJS driver. For the latest version, visit github.com/apache/cassandra-nodejs-driver
The optional authorization ID. Providing an authorization ID allows the
currently authenticated user to act as a different user (a.k.a. proxy authentication).
A method to be used to resolve the name of the Cassandra node based
on the IP Address. Defaults to lookupServiceResolver
which resolves the FQDN of the provided IP to generate principals in the format of
dse/example.com@MYREALM.COM.
Alternatively, you can use reverseDnsResolver to do a
reverse DNS lookup or useIpResolver to simply use the IP
address provided.
Performs a lookupService query that resolves an IPv4 or IPv6 address to a hostname. This ultimately makes a
getnameinfo() system call which depends on the OS to do hostname resolution.
Note: Depends on dns.lookupService which was added in 0.12. For older versions falls back on
reverseDnsResolver.