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
10
votes
1 answer

Caching Systems - Redis vs Geode/GemFire

We are considering to use a caching system to our application to do data lookup. This data will change very infrequently. My findings came out with Redis, GemFire/Geode, VoltDB, Aerospike, Hazlecast and few others. I shortlisted Geode and Redis.…
Brij
  • 11,731
  • 22
  • 78
  • 116
5
votes
1 answer

Benchmarks of Apache Geode

I'm doing some research and I need benchmarks of Apache Geode maybe in comparison with Redis or Hazelcast. Would be appreciated if someone could point me to such. In one of presentations of Pivotal I saw some benchmarks but they just shown that…
Andrii Pischanski
  • 297
  • 1
  • 3
  • 11
3
votes
2 answers

How do I run a data-dependent function on a partitioned region in a member group?

My team uses Geode as a makeshift analytics engine. We store a collection of massive raw data objects (200MB+ each) in Geode, but these objects are never directly returned to the client. Instead, we rely heavily on custom function execution to…
David Loewy
  • 329
  • 1
  • 10
3
votes
2 answers

How to store object implementing org.apache.geode.pdx.PdxSerializable in file in java

I have a class implementing org.apache.geode.pdx.PdxSerializable and need to store the objects of it in a file in java. For storing in files, the object needs to be Serializable but the class PDXSerializable is being used for storing data in gemfire…
KCK
  • 2,015
  • 2
  • 17
  • 35
3
votes
1 answer

why i need to exclude "spring-boot-starter-logging" to be able to use spring-geode?

to be able to use spring-geode, i need to exclude starter-logging, otherwise i run into: Caused by: java.lang.ClassCastException: org.apache.logging.slf4j.SLF4JLogger cannot be cast to org.apache.logging.log4j.core.Logger at…
3
votes
3 answers

Configuring and Using Geode Regions and Locks for Atomic Data Structures

I am currently using Spring Boot Starter 1.4.2.RELEASE, and Geode Core 1.0.0-incubating via Maven, against a local Docker configuration consisting of a Geode Locator, and 2 cache nodes. I've consulted the documentation…
Susurration
  • 135
  • 4
3
votes
1 answer

Is it possible to delete specific data (key and its specific value) in gemfire using java?

we can delete entire data in specific region but is it possible to delete one specific key and its value in gemfire if yes then how? And if no then why? GeodeConfiguration class @Configuration public class GeodeConfiguration…
3
votes
2 answers

Is it possible to expire data of specific key from gemfire region like redis

Hi I am new to gemfire and i want to exprire data from gemfire region for specific key after idle time which I set. i did this using redis by below code. jedis.set(key, value); config.setMaxIdle(50); jedis.expire(key, config.getMaxIdle()); but…
Abhijeet Behare
  • 597
  • 1
  • 7
  • 21
3
votes
1 answer

Apache Geode - Query performance on joins

I am using Apache Geode as a caching solution. I have a requirement to store data within 2 different regions and retrieve them with a simple join query. I have tried both replicated as well as partitioned regions but have found that the query takes…
Pratibha
  • 33
  • 2
3
votes
1 answer

SpringXD - Error in Gemfire as sink

I am trying to setup a stream in springXD. gemfire is installed in 10.99.40.60 machine and springXD is installed in my LOCAL VM. xd:>stream create --name gemfiredemo --definition "http --port=9090 | gemfire-server…
Amaresh
  • 3,231
  • 7
  • 37
  • 60
3
votes
1 answer

How to use to_date in gemfire?

I am trying to query by date into my gemfire region. Can anybody please help with how the to_date should be formatted to make a date query into my gemfire region. I have a date formatted 'MM/dd/yyyy' and then I want to run a query that selects if…
well_i
  • 369
  • 2
  • 4
  • 11
2
votes
1 answer

Apache geode multiple regions disk store

if I have 10 or 15 geode regions, and I want to persist 5 regions, can I use 1 disk store for all the regions?
rupweb
  • 3,052
  • 1
  • 30
  • 57
2
votes
2 answers

How to renew keystore (SSLContext) in Spring Data Geode connections without restarting?

The context is that I am working on a Kubernetes project, where we use a Geode cluster, and Spring Boot, also Spring Boot Data Geode (SBDG). We have developed an app with it, a ClientCache. Also we have a proprietary internal mechanism to generate…
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
2
votes
1 answer

Gemfire Pdx Serialization Put All

Is it normal that a client application took a longer time to insert data into GemFire Cluster for the first time? For example, my client application took around 4 seconds to insert GemFire Cluster successfully. However , the subsequent insert only…
Jack
  • 89
  • 6
1
2 3
21 22