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

Where condition in geode

I am new to geode . I am adding like below: gfsh>put --key=('id':'11') --value=('firstname':'Amaresh','lastname':'Dhal') --region=region Result : true Key Class : java.lang.String Key : ('id':'11') Value Class : java.lang.String Old…
Amaresh
  • 3,231
  • 7
  • 37
  • 60
2
votes
1 answer

How to store multi-column data in Apache Geode?

I am new to Apache Geode and I am trying a sample program to store date like: empid:col1:col2 1:10:15 I have written a sample program but at runtime its giving error like: "Error registering instantiator on pool:". If I go through logs I can see…
OneUser
  • 188
  • 16
2
votes
1 answer

Spring Data Gemfire locator

I'm trying to set up a Gemfire cluster using Spring Data Gemfire. I can start a locator via gfsh and I can start a server via Spring. The problem is, I can't find a way to start a locator via Spring.
Daniel
  • 318
  • 6
  • 20
2
votes
2 answers

Connecting GemFire using Spring Boot and Spring Data GemFire

I am trying to connect to an existing GemFire Locator using Spring Data GemFire and Spring Boot. Following is my cache configuration
Govind
  • 53
  • 8
2
votes
2 answers

how to implement RowLoader in gemfirexd?

How to write Rowloader JAVA code to inject data from sample.csv file into GenfireXD database.
nagarjuna
  • 37
  • 5
2
votes
2 answers

GemFire value change without refreshing all values

I m using (String, Arraylist of String) as the key value pair in gemfire caching.Is there any method to just add or delete a particular value from the value list without getting the entire list and add/delete and publishing the list again?!
1
vote
1 answer

Is it possible to have 2 Gemfire clients in the same JVM?

I am trying to do a check. I've got a poollocator with two servers. I want to test whether the servers are being set up as Active-Active or Active-Passive? The idea is to insert data with one client from one server and then have another one reading…
1
vote
0 answers

Apache Geode performance drop in cluster usage

I have integrated Apache Geode into a web application to store HTTP session data in it. This web application is run load-balanced, i.e. there are multiple instances of it sharing session data. Each web application instance has its own locale Geode…
1
vote
1 answer

Cannot start Apache Geode server - MemberStartupException

I am trying to follow this instruction and start Geode locator and server. Locator starts properly: But when I try to start a server, I get this exception: Yesterday I got same exception, but started a server properly after rebooting my PC. But…
Hleb Shypula
  • 158
  • 1
  • 2
  • 12
1
vote
1 answer

Geode Native Client - Deployment

How do you deploy an application built on Geode Native Client? I can run it on my DEV machine, but when I deploy to a different PC I get "could not load file or assembly Apache.Geode.dll. I have all the DLLs on my DEV machine deployed in the bin…
1
vote
3 answers

Apache Geode can't run with basic instructions

I tried following the basic instructions to run a node over here https://geode.apache.org/docs/guide/114/getting_started/15_minute_quickstart_gfsh.html, but I am getting the following issue: gfsh>start locator --name=locator1 Starting a Geode…
thiago
  • 117
  • 1
  • 7
1
vote
1 answer

Apache Geode behind NAT firewall

We have a Geode locator and server running on a machine that is behind a NAT firewall. I have replaced the firewall’s IP address with A.B.C.D and the internal IP address of the machine running the Geode locator with W.X.Y.Z. Previously the machine…
Wai Lun Poon
  • 35
  • 1
  • 5
1
vote
1 answer

Geode Native Client Composite Key

I am trying to figure out how I would create a composite KEY with the geode native client APIs. Does someone have a simple example of how I would do this in .NET? For example, say my data class is: MyDataObject string field1; string…
1
vote
1 answer

Cluster goes down after PC1 goes down

i have 2 PCs that I run the following commands on both gfsh terminals: start locator --name=locator1 --locators=ipaddress1[10334], ipaddress2[10334] start server --name=server1 --locators=ipaddress1[10334], ipaddress2[10334] after they start, i am…
1
vote
1 answer

Create Lucene Indexes in Apache Geode Region

I'm trying to create Lucene Indexes on Apache Geode Region. I have all the Region definitions in cache.xml. This cache.xml is read by cache server and Regions are created. If I define a Region something like below in cache.xml,
nandeesh
  • 753
  • 7
  • 16
1 2
3
21 22