Questions tagged [geode]

Apache Geode is an open source, distributed in-memory database for scale-out applications that is a top level project at The Apache Software Foundation. Apache Geode started with a 1 million code line grant by Pivotal Software of much of the Pivotal GemFire commercial code base.

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

Geode pools memory (along with CPU, network and optionally local disk) across multiple processes to manage application objects and behavior. It uses dynamic replication and data partitioning techniques for high availability, improved performance, scalability, and fault tolerance. Geode is both a distributed data container and an in-memory data management system providing reliable asynchronous event notifications and guaranteed message delivery.

More Details: Apache Geode

328 questions
0
votes
1 answer

How to configure data to be written to a dynamic Region in Spring Data GemFire/Geode

I have multiple Regions already created in GemFire. I want to write the general data according to the request, either to userregion or emloyee Region (I have a couple more Regions). In Controller, it receives a generic request, so it must identify…
cc4re
  • 4,821
  • 3
  • 20
  • 27
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
0
votes
1 answer

Can I modify Geode's default logging behavior?

Geode's out-of-the-box logging behavior does not include the "name" of the logger on each line (usually the name of the class invoking the Log4j Logger). I want to add this field to the default logger configuration, the one that logs to…
David Loewy
  • 329
  • 1
  • 10
0
votes
1 answer

Lucene LaLong query and Query string in Geode

In Geode version 1.10.0, how can I create a LuceneQuery from LuceneQueryFactory that executes both Lucene query string Dynamic query in one go? In other words, is there a mechanism to combine the below queries and execute them as one single…
0
votes
1 answer

Advantage of Pivotal Gemfire over Apache Geode

What extra features does Pivotal GemFire offer over Apache Geode? From what I can see, I think the enterprise support is the only extra feature.
Saurabh
  • 95
  • 2
  • 8
0
votes
2 answers

Going through Spring Test Data Geode but @EnableGemFireMockObjects annotation is not found

I spent a long time trying to run the example tests from here and here. The @EnableGemFireMockObjects annotation cannot be found and neither can import org.springframework.data.gemfire.tests.mock.annotation.EnableGemFireMockObjects; The example…
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
2 answers

org.apache.geode.cache.UnsupportedOperationInTransactionException

Getting below exception while updating entry in the cache while establishing Many to Many relation. org.apache.geode.cache.UnsupportedOperationInTransactionException: Expected size of 1 {[/__PR/_B__User_101]} for…
Anurag
  • 23
  • 4
0
votes
1 answer

java connection refused error with spring boot data geode remote locator

Per my question Apache Geode Web framework I've checked through various spring guides from here and spring data geode samples from here and written a short spring data geode application but it cannot connect to the remote GFSH started Geode locator.…
rupweb
  • 3,052
  • 1
  • 30
  • 57
0
votes
2 answers

Apache Geode Redis Adapter can not PERSISTENT

I want to create GeodeRedisServer what the regiontype is REPLICATE_PERSISTENT. According to the documentation: gfsh> start server --name=server1 --redis-bind-address=localhost \ --redis-port=11211…
M.long
  • 21
  • 2
0
votes
1 answer

geode exception: org.apache.geode.internal.cache.tier.sockets.MessageTooLargeException: Message too large to send

geode exception: MessageTooLargeException: Message too large to send Message has default size set and if client or server try to send message>default size , it throws this exception …
0
votes
2 answers

Getting org.apache.geode.cache.TransactionDataNotColocatedException: for Partitioned region while performing Transaction

Below is my Peer to Peer Geode Cluster Configuration Locator -> LocatorLauncher locatorLauncher = new LocatorLauncher.Builder() .setMemberName("locator1") .setPort(13489) .build(); locatorLauncher.start(); …
Anurag
  • 23
  • 4
0
votes
1 answer

Apache Geode servers ocassionally run out of connections during load tests

Good afternoon, We are trying to migrate application from Redis to Geode cluster for better scalability and Multi-WAN synchronization. Currently we are testing one cluster only. Set up is: 8 hardware servers (64 cores CPU, 256GB RAM, Debian Linux…
John Auden
  • 23
  • 6
0
votes
3 answers

geode examples of clientSecurity run failed

version 1.10 , Apache geode exampples of clientSecurity when I build the project and execute the 'start' task, the GemFireSecurityException always occurs when start the server. even I can find the file "example_security.json" in the dir…
Wang Kenneth
  • 387
  • 3
  • 7
0
votes
2 answers

Unable to connect to remote Geode cluster from Java

I use the below code to connect to remote Geode cluster ClientCache clientCache = new ClientCacheFactory().addPoolLocator("www.abc.com", 10334).create(); Region region =…