Questions tagged [spring-boot-data-geode]

25 questions
2
votes
2 answers

Disk clean up in Apache geode

I have set up apache geode for caching. Cluster Configuration: Locator: 1GB - Mounted volume 2GB Server2: 1GB - Mounted volume 2GB Server2: 1GB - Mounted volume 2GB Region configuration in cache.xml
nandeesh
  • 753
  • 7
  • 16
1
vote
1 answer

Multiple data insertions using async writing with Apache Geode

We have Apache Geode connected to Postgres using an AEQ + AsyncCacheListener configured to write data to Postgres. During async write, we submit the list of events that we want to persist and it asynchronously inserts those events. Let's say I have…
1
vote
2 answers

Spring Boot Geode Unsatisfied dependency expressed through method 'sessionRegion'

The correct dependencies for my gradle.build are driving me crazy! In order to access an Apache Geode 1.10 server, I am using: // Geode client dependency implementation 'org.springframework.geode:spring-geode-starter:1.2.13.RELEASE' …
rupweb
  • 3,052
  • 1
  • 30
  • 57
1
vote
1 answer

Get region statistics in spring data geode client application

I need to get the region statistics on apache geode client-cache application. Setup: 1 locator 1 server 1 client-cache app All the modules are created using spring. Cache server will create regions based on the cache.xml Cache.xml:
nandeesh
  • 753
  • 7
  • 16
1
vote
2 answers

Geode/GemFire Cannot create gemfireCache bean error: Spring Boot v2.1.3 - GemFire starter 1.1.0.RELEASE

I'm currently using Springboot v.2.1.3 to connect to PCC w/ gemfire v9.6.1. Based on the SBDG compatibility matrix, I tried to use SBDG v1.1.0.RELEASE and I see the below issue. org.springframework.beans.factory.BeanCreationException: Error creating…
1
vote
2 answers

geode client server version not supported - Peer or client version with ordinal 100 not supported

I've a springboot app hosted on PCF trying to connect to PCC(pivotal cloud cache). I've spinned up a PCC instance and binded it to my app and pushed the app to cloud foundry. I've added all the required gemfire starter dependencies to springboot and…
1
vote
1 answer

Spring Data Geode register interest is not receiving events

Related to this question I've setup a Spring Data Geode Client application with @EnableClusterDefinedRegions(clientRegionShortcut=ClientRegionShortcut.CACHING_PROXY) and by ensuring all classes are autowired then using the @Resource the Geode…
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
0 answers

How to specify groups while creating a region using spring data geode?

Apache geode regions can be created on members from a specific groups as per their documentation: https://geode.apache.org/docs/guide/114/tools_modules/gfsh/command-pages/create.html#topic_54B0985FEC5241CA9D26B0CE0A5EA863 How can we achieve the same…
0
votes
1 answer

PartitionOfflineException getting spring + geode + kubernetes

Setup: spring boot 2.7.8 geode version: 1.14.4 I have one service (app) with PARTITION_PROXY region and second one (cache) with PARTITION_PERSISTENT_OVERFLOW. Both are running as separated pods in kubernetes. Problem: When i patch those services ,…
0
votes
0 answers

Obtain lock on replicated Geode region

Im using Geode/Gemfire Peer-to-Peer topology with a replicated region. I want this region to be refreshed every X hrs. I think this will require some locking on the region to ensure members dont refresh within X hrs. Few…
Boss Man
  • 587
  • 2
  • 12
0
votes
1 answer

Geode Authentication implementation using TLS/SSL certificate

I am trying to implement TLS based authentication, basically SSL certificate based authentication, when two-way SSL is enabled in Geode cluster. Authentication is performed based on certificate DN. Lets say client/peer node configured with two-way…
0
votes
1 answer

Geode/GemFire/PCF/SCDF error - user not authorized for DATA:WRITE / DATA:READ permission

We are using Spring Cloud Data Flow to build stream pipe. The spring-cloud-dataflow-server version is 2.8.3. The out of box sink module gemfire is provided by official site:…
0
votes
1 answer

Spring Boot GemFire Pivotal Cloud Cache @EnableClusterAware and ClientCacheRegionFactory

Im trying to connect to Pivotal Cloud Cache server Regions. I'm using @EnableClusterAware and trying to configure the client Regions via ClientRegionFactoryBean as below: @Bean("clientRegion") ClientRegionFactoryBean someClientRegion(GemFireCache…
Vaidy
  • 19
  • 4
0
votes
1 answer

spring data geode pool is not resolvable as a Pool in the application context

I've come back to a @SpringBootApplication project that uses spring-geode-starter with version 1.2.4 although the same error happens with upgrades to 1.5.6 version. It sets up a Geode client…
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
1 answer

Auto Syncing for Keys in Apache Geode

I have an Apache Geode setup, connected with external Postgres datasource. I have a scenario where I define an expiration time for a key. Let's say after T time the key is going to expire. Is there a way so that the keys which are going to expire…
1
2