Questions tagged [spring-data-gemfire]

Spring Data GemFire focuses on integrating Spring Framework's powerful, non-invasive programming model and concepts with Pivotal GemFire, simplifying configuration, development and providing high-level abstractions.

Pivotal GemFire is a real-time, in-memory distributed data management platform providing data-intensive applications built for a cloud architecture with enterprise-class features, such as redundancy and high-availability with linear scale-out.

To learn more about Pivotal GemFire, see here.

Spring Data GemFire focuses on integrating Spring Framework's powerful, non-invasive programming model and concepts with Pivotal GemFire to simplify the configuration and development of GemFire-based applications as well as to provide high-level abstractions for many of GemFire's core components.

To get up-to-date information on Spring Data GemFire, visit the project page, on spring.io or see the project's status in JIRA. You can also checkout the source on GitHub and even fork the project in order to submit Pull Requests (PR) if you have have an idea for a new feature or how to make it better. We encourage the community to get involved.

Finally, there is no better place to stay informed or to be involved than by following us in the Spring IO Blog. Every week, Josh Long publishes an fantastic article on "This Week in Spring" loaded with all things related to Spring.

296 questions
0
votes
1 answer

GemFire 9 replacement of GemfireUtilLauncher

Is there a replacement for the GemfireUtilLauncher previously found at: com.gemstone.gemfire.internal.GemFireUtilLauncher? Following documentation everything should be updated to: org.apache.geode.X.X but no such GemfireUtilLauncher exists in these…
JH9004
  • 17
  • 2
0
votes
1 answer

Gemfire versus BigMemory Go

Can Gemfire be used like Big Memory Go as a L2 cache provider with hibernate? Using hibernate XML files , not annotations. If an applications uses lots of redundant hibernate calls, trying to see if Gemfire could integrate as a L2 cache to use as a…
haju
  • 1,278
  • 4
  • 20
  • 38
0
votes
1 answer

Null pointer exception using Autowired annotation - Gemfire Listerner

I have moved all the Cassandra into single class. When I tried create instance of CassandraOperations in the gemfire cache listener was getting null pointer exception.Can you please assist me on this error I have not received any null pointer…
0
votes
1 answer

Spring Gemfire entity class id generation

Is it possible to use auto generated id in Spring Data Gemfire? for example, if I have a class called MyGemfire @region("myregion") class MyGemfire{ @Id @generatedValue????// if it is not possible what method I have to use to generate id in…
Ezd
  • 331
  • 3
  • 10
0
votes
1 answer

Why trying to get Gemfire class when loading Geode beans through xml file?

today I'm trying to use spring to initialize some Geode compnents. The xml I created is like below:
0
votes
1 answer

GemfireTemplate workaround for Gemfire 9.0.1

Is there currently a workaround for making use of GemfireTemplate class when upgrading to Gemfire 9.0.1? One of the upgrade requirements is changing all referencing from: com.gemstone.gemfire to org.apache.geode However GemfireTemplate dosen't…
JH9004
  • 17
  • 2
0
votes
1 answer

Spring Data GemFire OQL

Do you know if it is possible to do the following using springDataGemfire: @Query("$1") List getQuery(String Query); we are trying to build a dynamic query and then run it on GemFire we are getting the below error…
0
votes
1 answer

REQUIRES_NEW transactions in not supported by Spring data gemfire

I am using v1.7.5 of Spring Data Gemfire with Gemfire 8.2.0. While using REQUIRES_NEW transactional propogation, it fails with below error while trying to suspend the existing transaction. It looks like underlying Gemfire transction manager…
santhakr
  • 67
  • 1
  • 8
0
votes
1 answer

Default failure/recovery behavior for Gemfire Server/Client Architecture

For gemfire cache, we are using the client/server architecture in 3 different geographic regions with 3 different locators. Cache Server Each region would have 2 separate cache server, potentially one primary and one secondary The cache servers…
Work of Art
  • 53
  • 1
  • 5
0
votes
1 answer

facing issues while loading bean defined in cache.xml of another .jar file

Background : I have two projects, proj A and proj B. Now, in proj A i have a cache.xml file , a java bean(say customer bean), a repository class(RecordRepository). I am loading the repository class in the cache.xml…
abhisekh
  • 1
  • 1
0
votes
1 answer

Gemfire WAN with Peer to Peer combined

We are using the multi-site WAN configuration. We have two clusters across geographical distances in North America and Europe. Context: Cluster 1 has two members A and B that are both gateway senders. Cluster B has two members C and D that are both…
Work of Art
  • 53
  • 1
  • 5
0
votes
1 answer

Cannot find Region in cache GemFireCache

Caused by: org.springframework.beans.factory.BeanInitializationException: Cannot find region [record] in cache GemFireCache[id = 20255495; isClosing = false; isShutDownAll = false; closingGatewayHubsByShutdownAll = false; created = Mon Jan 23…
abhisekh
  • 1
  • 1
0
votes
2 answers

Gemfire WAN Gateway-senders/receivers members

Within a cluster, we want to create members that are neither senders nor receivers, while having 1 sender/receiver in each cluster. We started up the sender/receiver in a given cluster first, no errors. As soon as we started up the member that's…
Work of Art
  • 53
  • 1
  • 5
0
votes
0 answers

Spring-Data Gemfire - Random Threadshift error

We're seeing a strange error while running Integration tests (with embedded Gemfire server). Retry of the failing tests fixes itself. Is there any configuration / setting missing which is causing this issue? Gemfire 8.1.0 java.lang.AssertionError:…
Jebuselwyn Martin
  • 543
  • 1
  • 5
  • 18
0
votes
1 answer

Gemfire EntryNotFoundException for @CacheEvict

In short, when @CacheEvict is called on a method and if the key for the entry is not found, Gemfire is throwing EntryNotFoundException. Now in detail, I have a class class Person { String mobile; int dept; String name; } I have two Cache…
Sandheep
  • 517
  • 3
  • 7
  • 18