hazelcast Questions

1

Solved

I am using Hazelcast 3.6.1 to read from a Map. The object class stored in the map is called Schedule. I have configured a custom serializer on the client side like this. ClientConfig config = new...
Bethel asked 1/4, 2016 at 20:35

1

Solved

Lets say we have two instances of hazelcast: HazelcastInstance firstInstance = Hazelcast.newHazelcastInstance(new Config()); HazelcastInstance secondInstance = Hazelcast.newHazelcastInstance(new C...
Warp asked 2/3, 2016 at 7:41

1

Solved

I have a cluster with 3 nodes (in different machines) and I have a "business logic" that use a distributed lock at startup. Sometimes when there is more latency every node acquires the exclusive ...
Darcie asked 20/2, 2016 at 7:30

4

Solved

What is the simplest way to run Hazelcast nodes on dedicated servers? We have a web application that uses a Hazelcast distributed map. Currently the Hazelcast nodes are configured to run in the Se...
Matthiew asked 26/8, 2011 at 13:55

0

Background: We have a set of about 15 Spring Boot applications as microservices. They all run as Docker containers, and run as clusters of one or more instances. We also use Spring Cloud Netflix c...
Matchboard asked 10/11, 2015 at 4:58

1

Solved

Using Eclipse on Windows, a vertx Verticle with a misconfigured cluster.xml shows the following error in the Eclipse console: 11:46:18.536 [hz._hzInstance_1_dev.generic-operation.thread-0] ERROR c...
Calci asked 5/11, 2015 at 12:26

1

Solved

Whats the difference between <hz:map> tag created in the applicationContext vs the one that is defined in the <hz:config> segment? How are they related? I am aware that <hz:map&gt...
Paraselene asked 20/10, 2015 at 9:25

1

Solved

I have to upgrade an app which is using an old version of hazelcast to one of the more recent versions. There was some hazelcast lock functionality which has since been deprecated and removed altog...
Misfile asked 1/10, 2015 at 16:29

2

I am using data grids as my primary "database". I noticed a drastic difference between Hazelcast and Ignite query performance. I optimized my data grid usage by the proper custom serialization and ...
Angulate asked 11/8, 2015 at 3:44

3

I am trying to implement Hazelcast in a simple web application. I am trying to store a custom object into my Hazelcast Map and have implemented Serializable in my Bid Object Class with the necessa...

1

Solved

(I could not find a good source explaining this, so if it is available elsewhere, you could just point me to it) Hazelcast replicates data across all nodes in clusters. So, if data is changed in ...
Kierakieran asked 3/6, 2015 at 14:55

1

Solved

In Hazelcast, is it possible to query an IMap based on attributes of a key instead of the values? All the Hazelcast examples show querying by value. E.g., for a map of employees with keys that are ...
Afterclap asked 27/5, 2015 at 15:28

1

Solved

Trying to configure slf4j to log in DEBUG mode, but get only INFO logs. What am I doing wrong? Config hazelcastConfig = new Config("HazelcastConfig"); hazelcastConfig.getProperties().put("hazelcas...
Torrence asked 22/5, 2015 at 8:27

1

Solved

I am implementing the hazelcast map store for persistence. But could not autowired spring beans(DataSource below) into the hazelcast mapstore object (meaning hazelcast not getting the map store obj...
Kimberli asked 12/5, 2015 at 20:13

1

Current release of Hazelcast is 3.4 and I see there are two jars in the lib folder of the download page http://hazelcast.org/download/ hazelcast-3.4.jar hazelcast-all-3.4.jar What is the diffen...
Wilford asked 17/3, 2015 at 15:15

1

Because of a known (fixed) bug in Hazelcast 2.5 we've decided this would be the next upgrade candidate for our project. But after dropping in the latest version (3.2.2) we had horrible performance....
Unanswerable asked 17/6, 2014 at 10:11

4

We use Hazelcast 2.6.2 in a legacy Java clustered application. When the application is stopped the JVM does not terminate any more. It seems that it is caused by Hazelcast threads not being flagged...
Sloth asked 9/9, 2013 at 15:30

1

I'm new to Hazelcast - evaluating and prototyping to see if it fits our distributed memory cache needs. One of the requirements was to be able to use wild cards to search for keys in a given map. L...
Rheotropism asked 18/2, 2015 at 18:41

0

I know that it is possible to display the value of a key that is part of a Map that was stored in hazelcast using REST. Using curl this would be done this way: curl -v -X GET http://127.0.0.1:570...
Farkas asked 9/1, 2015 at 14:38

5

Read about JSR-107 and JCache recently. Would like to know whether Hazelcast or Ehcache follow this JSR?
Weeny asked 8/3, 2012 at 5:25

2

Solved

The context Two nodes of a Hazelcast cluster, each on a discrete subnet so multicast is not suitable nor working for node location. I should like to employ the most minimal XML configuration file...
Nonmetal asked 13/10, 2014 at 17:25

1

Solved

I am not completely certain about the purpose for the auto-increment flag in the hazelcast xml config file. When I have that turned off, I see multiple exceptions in my server instance complaining ...
Monserratemonsieur asked 5/9, 2014 at 9:39

1

Solved

I'm using Hazelcast as a shared map in my application. My map is like that: Map<String, MyObject> and MyObject: class MyObject implements Serializeble { // Map FieldName -> FieldValue...
Frangipane asked 29/8, 2014 at 14:53

1

Solved

I am using the following code to create an map in HazelCast HazelcastInstance instance = null; Config cfg = new Config(); instance =Hazelcast.newHazelcastInstance(cfg); instance.getMap(mapName); O...
Pyrogen asked 4/6, 2014 at 1:28

1

Solved

I would like to get the masterIpAddress use on the Hazelcast node in HazelcastInsatnceImpl from an instance HazelcastInsatnce. Somebody know how to do that? Thanks for your help
Destefano asked 9/5, 2014 at 16:59

© 2022 - 2024 — McMap. All rights reserved.