Questions tagged [gemfire]

Pivotal GemFire is a distributed in-memory database developed in Java that provides real-time data management for applications, consistent transactional storage across nodes, and resilient clustering.

Pivotal GemFire is a data management platform that provides real-time, consistent access to data-intensive applications throughout widely distributed cloud architectures.

GemFire pools memory, CPU, network resources, and optionally local disk across multiple processes to manage application objects and behavior. It uses dynamic replication and data partitioning techniques to implement high availability, improved performance, scalability, and fault tolerance. In addition to being a distributed data container, Pivotal GemFire is an in-memory data management system that provides reliable asynchronous event notifications and guaranteed message delivery.

502 questions
2
votes
1 answer

Is it possible to store two bean objects on same Gemfire Region?

We are trying to make two Gemfire Repositories, Since there are two different bean objects, to which they are dealing with, but we want to store these two bean objects into same gemfire region. Is this a right way to do it? If "Yes" then How to do…
Abhijeet Behare
  • 597
  • 1
  • 7
  • 21
2
votes
3 answers

Java Config for Spring Gemfire xml

I've defined my Gemfire's "client-cache.xml" as below:
2
votes
5 answers

Delete query in gemfire cache?

When I run SELECT query in gfsh console, it works as expected: query --query="SELECT * FROM /channelProfiles_composite_asrd WHERE profile.channelCode='JJ'" But similar DELETE query fails: query --query="DELETE * FROM /channelProfiles_composite_asrd…
divideByZero
  • 1,120
  • 16
  • 27
2
votes
3 answers

Where condition in geode

I am new to geode . I am adding like below: gfsh>put --key=('id':'11') --value=('firstname':'Amaresh','lastname':'Dhal') --region=region Result : true Key Class : java.lang.String Key : ('id':'11') Value Class : java.lang.String Old…
Amaresh
  • 3,231
  • 7
  • 37
  • 60
2
votes
2 answers

Connecting GemFire using Spring Boot and Spring Data GemFire

I am trying to connect to an existing GemFire Locator using Spring Data GemFire and Spring Boot. Following is my cache configuration
Govind
  • 53
  • 8
2
votes
2 answers

how to implement RowLoader in gemfirexd?

How to write Rowloader JAVA code to inject data from sample.csv file into GenfireXD database.
nagarjuna
  • 37
  • 5
2
votes
2 answers

GemFire value change without refreshing all values

I m using (String, Arraylist of String) as the key value pair in gemfire caching.Is there any method to just add or delete a particular value from the value list without getting the entire list and add/delete and publishing the list again?!
2
votes
2 answers

Cache eviction at particular time of the day and not through TTL

Please let me know if cache eviction can be done at particular time of the day instead of TTL. I am using spring framework so if any API provides this feature then I can use this API by plugging into Spring. I did run through search mechanism if…
2
votes
1 answer

Gemfire client server topology throws NoAvailableLocatorsException

I have gemfire client server configured via gfe based xml. The locator, cache server and client cache start through these xml configurations. I populate my Region by getting data from database. The client uses data from this Region. It works very…
Abhishek
  • 21
  • 1
2
votes
1 answer

Dead lock detection- Gemfire 8

I defined a GemFire region with RegionShortcut.PARTITION and setRedundantCopies(1). 3 applications, running on 3 different VMs are making use of these region. It seems that I have a dead lock when I'm shutting down the VM of the application that has…
Maoritzio
  • 1,142
  • 2
  • 13
  • 31
2
votes
1 answer

Spring gemfire Serialization Exception

I am using Gemfire Spring to put/find against a pojo object @Autowired GemfireTemplate responseTemplate; .... HTTPAudit audit = new HTTPAudit(sessionId,response); responseTemplate.put("Detail", audit); System.out.println("Get…
Napo
  • 263
  • 4
  • 14
2
votes
1 answer

Could not collect remote Gemfire Cache Server

I am working on Gemfire and Spring data caching. I have successfully startup a local cache server from Spring. But I could not connect to a remote cache server with following configuration. But I can connect remote server using Gfsh--> connect…
Napo
  • 263
  • 4
  • 14
2
votes
2 answers

Spring Data Gemfire configuration does not connect to locator?

Suppose I have Gemfire locator & cacheserver processes already running in my target deployment environments. The target deployment environment uses a client-server topology. I have a Spring 3.1 MVC application which wants to use the Gemfire cache.…
Alan
  • 7,066
  • 5
  • 30
  • 38
1
vote
1 answer

Is it possible to have 2 Gemfire clients in the same JVM?

I am trying to do a check. I've got a poollocator with two servers. I want to test whether the servers are being set up as Active-Active or Active-Passive? The idea is to insert data with one client from one server and then have another one reading…
1
vote
2 answers

Gemfire region synchronization

I am using gemfire and currently have a client and a server. Now, the server dinamically creates some subregions in a region and puts some objects in there. I am trying to retrieve the objects with the client but I can't see the objects or the…
Luchian Grigore
  • 253,575
  • 64
  • 457
  • 625
1 2
3
33 34