Hazelcast is an open source clustering and highly scalable data distribution platform for Java.

learn more… | top users | synonyms

0
votes
0answers
7 views

Hazelcast configuration for distributed data structure

For distributing data structure i want to configure hazelcast. followed all the instructions mentioned in the documentation but still not able to configure it between two machines connected over ...
0
votes
1answer
40 views

Minimizing Hazelcast chatter and overhead

Our app needs to run both on a large number of machines and on a single standalone machine. It has three distinct clusters, each performing a mostly isolated function. Cluster A is the main one, and ...
0
votes
1answer
35 views

Openfire Cluster Hazelcast Plugin Issues

Windows Server 2003R2/2008R2/2012, Openfire 3.8.1, Hazelcast 1.0.4, MySQL 5.5.30-ndb-7.2.12-cluster-gpl-log We've set up 5 servers in Openfire Cluster. Each of them in a different subnet, subnets are ...
0
votes
2answers
28 views

Choosing Hazelcast features

I have a task (i describe it a bit later) and afai understand, Hazelcast is a best choice for it. But it has so many features and usages, so i can't understand what exactly to choose. Actually the ...
1
vote
1answer
23 views

Does Hazelcast create topics lazily?

Does Hazelcast lazily create topics. In the example below, we're calling getTopic('default'). If default topic doesn't exist, does Hazelcast automatically create it? Does this mean there's no reason ...
0
votes
1answer
18 views

Why hazelcast has default partition count of 271 and what are the parameters to chose one?

I just went through the hazelcast documentation. It suggests that data partitioned across all the nodes. And the number of partitions created in cluster 271 by default ! What parameters govern ...
0
votes
2answers
41 views

Hazelcast single node fast startup for debugging

I'm writing an app that uses Hazelcast. My app is really slow to start because Hazelcast tries to talk to other nodes on the network on startup. This is fine for production, but when I'm doing ...
0
votes
1answer
17 views

Hazrlcast: write-behind works unstable

I have a process that populates data into map with persistence periodically. To be more exact there are two nodes: storage node with persistence enabled and cache maps defined and a lite client node ...
0
votes
1answer
28 views

Hazelcast: should I override hashCode or equals to use in a map

This general question is mostly out of curiosity rather then a concern. Should hashCode and equals for mapped entity be overridden to face basic Hazelcast features properly? And is there a known ...
1
vote
0answers
28 views

Hazelcast: force map to load

I'm looking for a way to force map initialization. I'm using Spring integration and MapStore implementation and I noticed that before business logic tries to touch a map they are not initialized, i.e. ...
0
votes
1answer
51 views

Hazelcast: failover on persistence

I'm concerning a failover scenario for a persistence and I'm considering the way it should be properly implemented. Out of previous experience I'm thinking that in case underlying persistence failed ...
0
votes
1answer
49 views

Does Hazelcast provide an L2 (Second Level) distributed cache for EclipseLink?

Hazelcast offers an L2 cache for Hibernate as documented in their manual here: http://hazelcast.com/docs/2.1/manual/single_html/#HibernateSecondLevelCache. My question is if there is the same for ...
0
votes
1answer
55 views

is the collection returned by sql predicate from a hazelcast map unmodifiable?

is the collection returned by sql predicate from a hazelcast map unmodifiable? I am trying to add to the set which I receive from the sql predicate (on a hazelcast map) - I just need to confirm ...
0
votes
1answer
22 views

version mismatch error for management console app for hazelcast v2.5

I switched over to 2.5 recently. I just tried the management console (v2.5) for hazelcast (running in tomcat7) - I believe the app directory is readable/writable. I have a hazelcast node running ...
0
votes
0answers
146 views

Session persistence issue with Hazelcast, Jetty and Nginx

I'm using Hazelcast as a webapp session storage for Jetty instances. There is also Nginx in front of the Jetty instances as a load balancer. Problem: Session sharing works out perfect as two of my ...
1
vote
1answer
46 views

Retrieving entries from a partition in Hazelcast

Is it possible to retrieve the entries from a Partition when the Partition-id is given? For example : If I enter the Partition-id as 3 , Can I get the entries in that particular partition only? ...
2
votes
1answer
52 views

How to write a LoadStore for List in hazelcast

All the examples found in the documentation are provided for map, queue and set. Any help is appreciated.
1
vote
0answers
75 views

How is Partitioning done in Hazelcast

I am using Hazelcast v2.5. I have a few doubts related to partitioning in a cluster. How are the partitions identified ? When a m.get request is made how does Hazelcast identify in which partition ...
1
vote
1answer
80 views

Hazelcast: distributed execution and local member info

I'm looking for the way to lookup local hazelcast member in the task execution. Version I'm working with is 2.5-SNAPSHOT. Snippet from the tutorial doesn't seem to be working: public class Echo ...
0
votes
0answers
50 views

Quartz vs (ScheduledExecutorService + Hazelcast Distributed Lock)

There is nothing Wrong with Quartz. I am trying to implement the schedulding feature with ExecutorService and Hazelcast. In a clustered environment where i have stateful jobs with a jdbc store , ...
0
votes
1answer
43 views

Hazelcast partition re-shuffling of distributed map entries

When a new member joins a cluster, Hazelcast will shuffle the partition by re-distributing the entries of a distributed map. Is there anyway we can be notified of such an "entry migration"? Like we ...
0
votes
0answers
47 views

HazelCast Queue Size

I want to check the size of the hazelcast queue at multiple location in the code. Is queue.size() is the good and only way to do that or is their anything else which is better than this.
1
vote
1answer
66 views

hazelcast map put operation not working

I am using hazelcast -2.5 in a cluster. I have a map (key: String, value: ArrayList of user defined objects). I am able to put/remove fine in most places but in one specific part of my code, the put ...
0
votes
1answer
51 views

Store thrown exception for CONCURRENT_MAP_REMOVE while using Hazelcast (Java)

I am using hazelcast -2.5 in a cluster. I am trying to load an ArrayList of User defined objects (with a few String fields and one Integer) in the store-load implementation of my Hazelcast Map ...
0
votes
1answer
67 views

HazelcastClient with fail-over Cluster for same HazelcastIstance

Is it possible to configure a HazelcastClient with 2 different TCP/IP clusters for the same HazelcastInstance? (I have the split-brain syndrome and i want the second cluster to be a backup cluster). ...
3
votes
0answers
111 views

Using Linked List in Hazelcast

I was just wondering if I could use Linked List as a data structure in Hazelcast because my requirement demands this. At present there is only Distributed Map , Distributed Queue , Distributed Set and ...
2
votes
2answers
242 views

any benefit from using Hazelcast instead of MongoDB to store user sessions/keys?

We are running mongodb instance to store data in a collections, no problems with it and mongo is our main data storage. Today, we are going to develop Oauth2 support for the product and have to ...
0
votes
1answer
57 views

what one should use for open source in memory java caching?

What should one use (open source) for in memory Java caching when the caching is used for stock market project? I used hazelcast but it consumes too much memory.
2
votes
1answer
111 views

Hazelcast write-through map store pre-population on startup

I am currently doing a POC for developing a distributed, fault tolerant, ETL ecosystem. I have selected Hazelcast for for my clustering (data+notification) purpose. Googling through Hazelcast ...
0
votes
1answer
172 views

Persisting data on disk using Hazelcast

I have installed HazelCast 2.5. I want to persist my records into disk. I learned that MapStore does this job. However i'm not sure how to implement MapStore. Code i've written so far: public ...
0
votes
1answer
106 views

java executor service on hazelcast queue

I have a hazelcast Queue (shared across the server instances) which has 1000's of records in it. Records are some kind of Jobs (like sending email, SMS etc). I need to process these records by picking ...
0
votes
1answer
72 views

How does Hazelcast MapLoader handle concurrent requests for the same key

Assume that I've implemented storage & loading interfaces and concurrent requests arrived for a key that is not present in the map. Does Hazelcast ensure that the loader will be called only once ...
0
votes
0answers
41 views

Distributed objects, Hazelcast on Google App Engine

From the wiki HazelCast works like: After discovery, node communication is only TCP/IP using Java NIO. Is there a feasibility to have Hazelcast to work over HTTP? So it can work with PaaS like ...
0
votes
1answer
52 views

Moving data from many machines to a server using Hazelcast

We have a goal of moving text-file represented database table row coming from several machines to a single machine, our current solution is file based - Zip the files then send it over the wire - ...
0
votes
1answer
106 views

How do I connect Hazelcast with Hbase?

I have both Hazelcast and HBase . I have million entries in my HBase . How do I establish a connection with HBase from Hazelcast so that I access these entries from Hazelcast. If that is not possible ...
0
votes
1answer
29 views

issue with putTransient for hazelcast

I will try posting on their google forums as well. I have used putTransient on map before without any issues - however, in all those cases, putTransient was being called on a map where the value was ...
0
votes
1answer
154 views

Unable to Create map entries in Hazelcast

I am using Hazelcast v2.5 and Maven plugin in Eclipse . I tried running an example program in Eclipse which creates 3 map entries in the ABCD namespace . When I run my code in Eclipse it shows this ...
0
votes
1answer
107 views

hazelcast entry listener on a multinode cluster

I have a multi-node hazelcast cluster. I need to ensure that when a new value is inserted into a map, only one entrylistener/map store gets invoked. Unless I am having a brain freeze, hazelcast does ...
2
votes
1answer
281 views

Distributed caching for large objects

I want to share a very large object e.g. in orders of megabytes or even several gigabytes, between a set of machines. The object will be written once but may be read many times. Maybe a naive approach ...
1
vote
1answer
49 views

How do I find the number of namespaces in Hazelcast?

Using ns command i created a number of namespaces in my console. I have a problem now. I have created more than 5 namespaces and I have lost track of them ! I want to see the number of namespaces ...
1
vote
1answer
36 views

Creating another map function in Hazelcast?

When i run hazelcast on my terminal I use m.put to create a new map function. I want to create another map function with a different name. Is it possible to do so? Is there a seperate command to ...
0
votes
5answers
159 views

Request-Reply through a Queue with Hazelcast

I wonder if I can do request-reply with this: 1 hazelcast instance/member (central point) 1 application with hazelcast-client sending request through a queue 1 application with hazelcast-client ...
1
vote
1answer
101 views

Does Hazelcast always deserialize when calling IMap.get()?

I've got an app that needs to fetch an object out of a distributed cache several thousand times per second. I've been using Hazelcast's IMap.get(), but it seems that when I call it, my object's ...
1
vote
1answer
72 views

How is batch processing done in Hazelcast?

I am just a beginner in Hazelcast. I am still learning the basics of it. How is batch processing being done in Hazelcast? Is there any related architecture for it?
0
votes
0answers
124 views

Using Hibernate Second Level Cache and Distributed Cache From One Configuration

My application is using Hazelcast as a second level through it's JPA/Spring configuration file: <bean id="entityManagerFactory" ...
0
votes
1answer
131 views

How do you create a Hazelcast instance embedded in-process/in-memory, without networking?

In my unit tests, I want to create an embedded (in-process/in-memory) Hazelcast instance that does not attempt to start or perform any networking operations at all. How do I do this? For example: ...
0
votes
2answers
83 views

hazelcast storeall not getting invoked

I am using hazelcast (v2.1.3) - in the storeload for the map, "store" keeps getting invoked instead of "store all" (even though the write delay seconds flag is greater than 0): <map-store ...
2
votes
1answer
118 views

Hazelcast sort IMap (Scala)

I'm using hazelcast IMap[String,Any] in my application. When printing the map it should be sorted by the keys. Is there a nice way to sort the IMap by key (other than sort the keys locally and print ...
0
votes
1answer
118 views

NotSerializableException: com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate

im using Hazelcast HttpSession Clustering with two Glassfish 3.1.2.2 instance. Im using @EJB or @Inject annotation to inject EJB(s) in managed beans. In @ViewScoped and @SessionScoped managed beans, ...
0
votes
1answer
185 views

Hazelcast: difference between Java native client and embedded version

We use Hazelcast (2.3) in a Web backend running in a Java servlet container to distribute data in a cluster. Hazelcast maps are persisted in a MySQL database using a MapStore interface. Right now, we ...

1 2 3