Re: geode & timeseries

2018-03-13 Thread Olivier Mallassi
Indeed, it may help. Thanks. On Tue, Mar 13, 2018 at 1:25 AM, Michael Stolz wrote: > Does this construct do what you need? > > https://stackoverflow.com/questions/29564490/ > implementing-a-sliding-window-java > > -- > Mike Stolz > Principal Engineer, GemFire Product Lead > Mobile: +1-631-835-4

Queries regarding Geode Architecture

2018-03-13 Thread Goutham reddy
Hi Team, I am basically from Cassandra and NoSQL background. Can somebody help me understand the below queries. 1. Considering a 5 node cluster, I believe servers are created on each node(member), how many servers have to be created? 2. (5 node and 3 servers on each node) Creating a Replicate reg

Re: Queries regarding Geode Architecture

2018-03-13 Thread Anilkumar Gingade
Goutham, To be clear, when you refer "node" is it a physical box/machine or a JVM. Geode allows you to configure Geode instance as a peer or Server (accepting client connection). You can find more information on Geode Wiki page. If you want to use GemFire (enterprise version of Geode); I would re

Re: Queries regarding Geode Architecture

2018-03-13 Thread Anthony Baker
Hi Goutham! > On Mar 13, 2018, at 9:26 AM, Goutham reddy wrote: > > Hi Team, > I am basically from Cassandra and NoSQL background. Can somebody help me > understand the below queries. > > 1. Considering a 5 node cluster, I believe servers are created on each > node(member), how many servers h

Geode Function - Server Classpath

2018-03-13 Thread Phil Applegate
Hi, I am currently working on configuring Geode in a Client/Server architecture. Is is possible to have a Function defined in a client to be executed on the cluster (server) without the Function being on the server's classpath? Could this be done with PDX serialization? I am interested in doing

Re: Geode Function - Server Classpath

2018-03-13 Thread Swapnil Bawaskar
Hi Phil, If what you are trying to achieve is separation of client side code vs server side code, I would recommend that you create separate code repositories for client side code vs server side code (functions, cache listeners etc). You can then compile and deploy the server side repo with the gf

Re: Geode Function - Server Classpath

2018-03-13 Thread Akihiro Kitada
Hello Phil, If executing functions at servers, they need to create instances for function classes. At least, those severs have to be able to load classes for functions to execute actual function logics. If it's O.K. to manage function jars from client side, why don't you use "gfsh deply" command

Re: Geode Function - Server Classpath

2018-03-13 Thread Anthony Baker
Hi Phil! We don’t currently support zero code deployment for executing functions. You might want to see if @John Blum has any good ideas around this for SpringDataGeode client applications. He’s developed some really cool annotations to automatically configure a cluster. I know I’ve had conv