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
1
vote
1 answer

When should an embedded Geode/Gemfire locator be used?

The Pivotal Running Geode Locator Processes documentation states: "You can run the locator standalone or embedded within another Geode process. Running your locators standalone provides the highest reliability and availability of the locator…
wyck
  • 327
  • 1
  • 8
1
vote
2 answers

http rest api delete entries in geode region

I have setup the Geode rest API and can run get and queries, via Chrome, on a region for example: http://localhost:8080/gemfire-api/v1/items When I try and delete entries in a region according to Developing REST Applications by using the following…
rupweb
  • 3,052
  • 1
  • 30
  • 57
1
vote
2 answers

How can I write into Geode using the Redis adapter and then read / react to events using the Geode client?

I'm trying to do the following: Put some data into geode using the redis connector React to some key create / update events using a CacheListener Read that data using the Geode client and it's entrySet method on the Region. I already had trouble…
Crystark
  • 3,693
  • 5
  • 40
  • 61
1
vote
2 answers

What are the options to bulk/batch load data into Apache Geode(Gemfire)?

We need to load millions of key/values into Apache Geode and we'd like to know what are some the options available. Our values happen to be in the 256kb range.
Newbie
  • 7,031
  • 9
  • 60
  • 85
1
vote
1 answer

Apache Geode CacheServerException Region not found during key set request

I am new to Geode, and have started the default locator and server according to Geode in 5 minutes and then the .Net client with which I am running the tests from here // 1. Create a cache CacheFactory cacheFactory =…
rupweb
  • 3,052
  • 1
  • 30
  • 57
1
vote
1 answer

How Apache Geode/ Gemfire sysnchronous read or write to other data sources?

I found this picture from Internet, it is about Gemfire structure. I am confused how does Gemfire synchronous read or write to other data sources? I didn't find any learning materials about this. Anyone who can tell me ? Thanks so much.
Shirley Sun
  • 63
  • 2
  • 5
1
vote
1 answer

Recommended way to run Apache Geode as a service on Windows

I need to run locators and services on two W2K8 Windows servers. Normally I use nssm to run Java based applications by calling their respective java -jar call from nssm. But Geode uses gfsh. What is the best practice ? One could use the API to spawn…
Marged
  • 10,577
  • 10
  • 57
  • 99
1
vote
1 answer

apache geode 9.0.3 Locator could not find a JMX Manager

Starting server location for Distribution Locator on /10.212.40.106[11001] gfsh can not connect gfsh>connect --locator=10.212.40.106[11001] Connecting to Locator at [host=10.212.40.106, port=11001] .. Locator could not find a JMX Manager my…
dmc
  • 401
  • 4
  • 14
1
vote
1 answer

apache geode 9.0.3 off heap region, xml configuration

How can i declare a region to be Off heap, via xml configuration using apache geode 9.0.3 my xml configuration is in server-cache.xml as.
dmc
  • 401
  • 4
  • 14
1
vote
0 answers

Getting historical data back to gemfire/geode cache

This is somewhat related to this question. Basically, the geode cache layer will hold the most recent data and historical data has been offloaded to the database, thus no references (keys) to the historical data exist in geode anymore. My question…
Dennis Dai
  • 26
  • 4
1
vote
1 answer

How to connect a remote-locator in Geode

I just can't connect to a remote locator in Geode. The command line log is pasted below: gfsh>connect --locator=192.168.141.128[10334] Connecting to Locator at [host=192.168.141.128, port=10334] .. No route to host (Host unreachable) What…
1
vote
2 answers

After network problems geode client fails to connect to the server and the locator

There occurs a weird issue in our system. e.g. we've got a cluster consisting of 2 nodes. Geode Locator is running on the master node an there's one remote node which runs a Geode client. When there occurs network problems in the client (packet…
mdavid
  • 563
  • 6
  • 20
1
vote
3 answers

Replicated caching solutions compatible with AWS

My use case is as follow: We have about 500 servers running in an autoscaling EC2 cluster that need to access the same configuration data (layed out in a key/value fashion) several million times per second. The configuration data isn't very large (1…
Maxime
  • 465
  • 4
  • 15
1
vote
1 answer

how to put java class into the gemfire key-value struct

gfsh>put --key=('id':'133abg125') --value=('firstname':'James','lastname':'Gosling') --region=/region --key-class=data.ProfileKey --value-class=data.ProfileDetails Message : ClassNotFoundException data.ProfileKey Result : false
tom.jack
  • 43
  • 4
1
vote
1 answer

how to configure gemfire in a HA mode

how to configure gemfire in a ha mode in cache.xml
tom.jack
  • 43
  • 4