Brian Nichols
Brian Nichols
The pull request has been accepted.
We will merge this pull request when we upgrade to netty 4.2.
The snyk pull requests for Netty 4.2 were not triggered by a security vulnerability. We will be staying on the Netty 4.1.X branch for the time being.
That api doc quote assumed that async applications always benefit from sharing event loops and suggested that creating dedicated aerospike event loops should only be necessary when the application is...
Yes, this approach can work. as_event_create_loops() will spawn a new thread for each new event loop. Each thread will be assigned to a cpu by the operating system (usually by...
1. Correct 2. If your application shares data between threads, the code accessing this data must be thread-safe. 3. Yes, as long as the code is thread-safe. If the client...
Tracing is not currently supported in the java client. However, latency histograms for queries are provided when extended metrics is enabled. See`AerospikeClient.enableMetrics(MetricsPolicy policy).`
Tracing functionality is under consideration, but no decision has been made.
The deletion of a node is already covered by onNodeClose(). If a node is added and logging is enabled (https://aerospike.com/developer/client/logging?client=java), the client sends a log message starting with "Add node"....
The goal is to minimize dependencies on 3rd party libraries, so adding an extra instrumentation library dependency is not likely.