-
Updated
Jun 4, 2022 - C++
in-memory
Here are 258 public repositories matching this topic...
IMap.get gets blocked forever when Cassandra NoNodeAvailableException is thrown from the MapStore
-
Updated
May 14, 2022 - Go
When box.cfg.listen is set to a port number (without specifying a host name), Tarantool binds to one address, ipv4 or ipv6:
box.cfg{listen = 3301}$ nc -vvz 127.0.0.1 3301
Connection to 127.0.0.1 3301 port [tcp/*] succeeded!
$ nc -vvz ::1 3301
nc: connect to ::1 port 3301 (tcp) failed: Connection refused
This is confusing - one would expect it to bind to all av
-
Updated
Jun 3, 2022 - TypeScript
-
Updated
Apr 20, 2022 - Java
-
Updated
Feb 27, 2022 - Elixir
-
Updated
Dec 23, 2020 - C
-
Updated
Jun 4, 2022 - Java
-
Updated
Jun 1, 2022 - Rust
There are no external core dependencies other than LZ4 and Snappy which are not used unless compression is configured. So they should be installable.
libraryDependencies += "io.swaydb" %% "lz4" % "version"
//OR
libraryDependencies += "io.swaydb" %% "snappy" % "version"For now we have to exclude
Use of the $geoNear pipeline stage results in:
[Error 40324] Unrecognized pipeline stage name: '$geoNear'
It's clear it is not currently supported in de.bwaldvogel.mongo.backend.aggregation.Aggregation.java
Example Mongo query usage:
db.places.aggregate([
{
$geoNear: {
near: { type: "Point", coordinates: [ -73.99279 , 40.719296 ] },
distance
-
Updated
May 27, 2022 - C++
-
Updated
Feb 11, 2022 - JavaScript
-
Updated
Aug 15, 2021 - C++
-
Updated
Apr 6, 2021 - C
-
Updated
Oct 14, 2021 - Elixir
-
Updated
Aug 2, 2020 - Go
Partition predicate
Currently, the Go client does not support Hazelcast's partition predicate.
-
Updated
Sep 4, 2021 - C++
Somehow make a link like http://hazelcast.github.io/hazelcast-nodejs-client/api/current/docs/interfaces/proxy_imap.imap.html#addindex work
Improve this page
Add a description, image, and links to the in-memory topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the in-memory topic, visit your repo's landing page and select "manage topics."
Describe the bug
The IMap.get() call will be blocked forever when a
com.datastax.oss.driver.api.core.NoNodeAvailableExceptionis thrown from the MapStore.Setup:
Hazelcast v5.1.1
Cassandra SDK v4.14.1
Client-server setup
Read through cache, Cassandra DB gets called on a cache miss.
Test scenario: Read through cache, Cassandra server is down:
We tested the scenario whe