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
2
votes
2 answers

Error creating bean with name 'gemfireCache': FactoryBean threw exception on object creation

I am trying to create an "employee" Region and put some data into it. But, I am getting Exception below: [warn 2018/12/27 17:15:46.518 IST tid=0x1] Exception encountered during context initialization - cancelling refresh attempt:…
Arunprasad
  • 567
  • 4
  • 14
  • 29
2
votes
1 answer

Start-Locator / Locators, which is for client and which is for server?

I have been configuring Pivotal GemFire like this example: @Configuration public class GemfireConfiguration { @Bean Properties gemfireProperties() { Properties gemfireProperties = new Properties(); …
2
votes
1 answer

Gemfire write data exception. Server crashing when writing large dataset

I am looping through a nested object and writing it to gemfire. I get an exception while writing data. java.io.EOFException: The connection has been reset while reading the header Pool unexpected closed socket on server connection=Pooled Connection…
juggernaut
  • 126
  • 18
2
votes
1 answer

Gemfire NoSuchBeanDefinitionException Autowiring Cache (Spring 5.0.2 / Gemfirev9.2.7)

We are migrating from Gemfire 8.2.7 to 9.2.1 As part of Gemfire startup, we leverage SpringContextBootstrappingInitializer to initialize the spring-beans which @Autowire the Cache. The same code when migrated to Gemfire 9.2.1 (along with the other…
Jebuselwyn Martin
  • 543
  • 1
  • 5
  • 18
2
votes
2 answers

How to update a GemFire Region based on changes in some other Region

My retail application has various contexts like receive, transfer etc. The requests to these contexts are handled by RESTful microservices developed using Spring Boot. The persistence layer is Cassandra. This is shared by all services as we couldn't…
2
votes
1 answer

Can session scope beans be used with Spring Session and GemFire?

Can "session" scope beans be used with Spring Session and Pivotal GemFire? When using Spring Session for "session" scope beans, Spring creates an extra HttpSession for this bean. Is this an existing issue? What is the solution for this?
2
votes
1 answer

Geode native client deserialise PdxInstanceImpl

I have a REST client that populates a Geode region with Json data which the Geode REST API automatically converts to a PdxInstance type. The region triggers a C# native client listener AfterCreate(EntryEvent ev) in which the TVal type…
rupweb
  • 3,052
  • 1
  • 30
  • 57
2
votes
2 answers

Spring-Data-Gemfire - Unable to contact a Locator service. Operation either timed out or Locator does not exist

I want to connect to a exist locator. Now I don't have client-server. I started a locator,port is 40001, server1 port is 40411. gfsh>list members Name | Id ------- | ---------------------------------------------- test1 |…
2
votes
1 answer

Spring support for Apache Geode (spring-data-geode)

Could you please tell where to find out spring-data packages for Apache Geode? There is a spring-data-gemfire project that produces regular releases for Pivotal Gemfire. spring-data-geode is supposed to be a part of this project but I am not able to…
2
votes
3 answers

Updating individual column in Pivotal GemFire

As per my knowledge, there is no option to update individual columns using a query in gemfire. To update an individual column I am currently getting the entire old object and modifying the changed value and storing it. If anyone has implemented…
Vigneshwaran
  • 229
  • 1
  • 3
  • 14
2
votes
1 answer

Spring Session GemFireSession management on gfsh created Gemfire server

I set up a Spring Session Gemfire client application connecting to a gfsh-create Gemfire server. However, unless I load ALL the jar files that contain class definitions used by attributes attached to the GemFireSession on the Gemfire server (via the…
txk
  • 166
  • 3
2
votes
0 answers

Gemfire, JMX Manager startup to fail because: 'HTTP service failed to start'

I created gemfire instance and started a locator, and I was also able to access the HTTP application from browser. Another day when I logged again and start gfsh to connect gemfire install using following command, gfsh>connect it gave…
Krushnat Khavale
  • 416
  • 2
  • 4
  • 14
2
votes
2 answers

Gemfire WAN Gateway-sender configuration

We are using the Gemfire WAN topology and have problems setting up the gateway-senders. Couple of assumptions: - Replicated regions - Serial gateway-senders - manual-start is false for all gateway-senders Let's say we have 2 clusters, within each…
Work of Art
  • 53
  • 1
  • 5
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
2 answers

getting @autowired intance null when try trying to do operation on it,throwing null pointer exception

I am trying to save data on gemfire using crud repository. I have created one operation class to call save method of repository but at autowired instance I am getting null pointer exception. Below is my code: public interface GeodeRepository extends…
1
2
3
19 20