Questions tagged [spring-boot-data-geode]

25 questions
0
votes
1 answer

How can i get complete data from apache geode if geode is having partial data and other data is present in external datasource

I have an apache geode setup. I have connected geode with external datasource which is postgres. There is a scenario where i have few data present in apache geode and rest all is in postgres. I am using query service to fetch data and when i fire…
0
votes
1 answer

Unable to Instantiate Class while Alter Region adding cache loaded to that region

I have an apache geode setup where there is one locator and one Server. we have a region employee in that. we were trying to implement in-line cache where a cache miss will lookup into database and will fill apache geode, but after deployment of…
0
votes
1 answer

Geode spring boot Cache Client Updater Thread crash

Using implementation 'org.springframework.geode:spring-geode-starter:1.2.8.RELEASE' implementation 'org.springframework.data:spring-data-geode:2.2.8.RELEASE' I setup a listener @Service public class LQuote extends CacheListenerAdapter…
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
2 answers

Upgrade to spring-geode-starter 1.4.2 produces condition, introspection and ClassNotFoundExceptions

On return to a Geode reactive streams project after some time I would like to upgrade to latest spring-geode-starter. Perhaps related to Spring Boot Geode Unsatisfied dependency expressed through method 'sessionRegion' also on…
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
1 answer

Spring Boot Apache Geode error refused connection: Peer or client version with ordinal 120 not supported

I have the same problem as geode client server version not supported - Peer or client version with ordinal 100 not supported but another version. My build.gradle is // Geode client dependency implementation…
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
1 answer

Geode/GemFire/PCC error - No security credentials are provided

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…
0
votes
1 answer

Using @Resource for Geode region after @EnableClusterDefinedRegions

My spring boot data geode @Controller endpoint sets up an rsocket response which @Autowired a service class from another package: @Controller public class RSocketController { private static final Logger log =…
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
1 answer

@EnableClusterAware annotation with remote GFSH started Geode server requires HTTP configuration

We run a GFSH managed Geode cluster with several .Net clients, and now I am incorporating a new spring boot data Geode client for rSocket web endpoints with webflux. Per this question and this question I want to properly autoconfigure the SDG client…
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
2 answers

Spring Data Geode Region has local scope and cannot listen to remote Region events

I am using Spring Data for Apache Geode for a Spring Boot app that uses a remote Apache Geode server. To set up local Regions I am using @Configuration class like: @Configuration public class GeodeConfig { public static Region
rupweb
  • 3,052
  • 1
  • 30
  • 57
-1
votes
1 answer

Integration tests with Cucumber using embedded GemFire for a Spring Boot application deployed in an Apache Geode client/server topology

I intend to write integration tests with Cucumber for a GemFire cache client application using Spring Boot and deployed in an Apache Geode client/server topology. I referred to the question - How to start Spring Boot app without depending on Pivotal…
1
2