Re: Geode c# native client connection pool factory create method hangs indefinitely if Geode server is down

2017-11-30 Thread Jacob Barrett
Given that Geode has not officially released the native client yet can you tell me what revision you have compiled? > On Nov 30, 2017, at 2:04 AM, Rupert St John Webster > wrote: > > Hi, > > I’ve asked the question > https://stackoverflow.com/questions/47550390/what-to-use-so-geode-native-c

Re: Spring Data Geode Gemfire function batch size

2017-11-30 Thread John Blum
Speaking of Pagination... https://jira.spring.io/browse/SGF-524 NOTE: Sorting in SDG Repos is already supported. This is also planned for SD *Lovelace*. On Thu, Nov 30, 2017 at 1:37 PM, Wayne Lund wrote: > John, > > Oddly enough one of my use cases was for a client using Grails before we >

Re: Spring Data Geode Gemfire function batch size

2017-11-30 Thread Wayne Lund
John, Oddly enough one of my use cases was for a client using Grails before we spun that out and the Grails engineering team said that GORM support for Gemfire had gone into mothballs for just this lack of functionality. The generated controllers relied on streaming and paginated data, which i

Re: Spring Data Geode Gemfire function batch size

2017-11-30 Thread John Blum
Wayne- The following 2 things are upcoming and coming for the next SD Release Train (Lovelace), for both Spring Data for Apache Geode, and Spring Data GemFire... https://jira.spring.io/browse/SGF-452 - Function Executions from a SD Repository https://jira.spring.io/browse/SGF-377 - which is esse

Re: Spring Data Geode Gemfire function batch size

2017-11-30 Thread Wayne Lund
I have wanted this from the early days of my using gemfire. Keep pushing. Wayne Lund Advisory Platform Architect 916.296.1893 wl...@pivotal.io <

Re: Spring Data Geode Gemfire function batch size

2017-11-30 Thread Amit Pandey
Thanks John..this is helpful and yes a fully reactive result collector from Geode will be awesome...I do think for large data sets this a must. On Fri, Dec 1, 2017 at 2:05 AM, John Blum wrote: > 1 last thing... > > If you run the PeerCacheFunctionExecutionResultStreamingIntegrationTests test > c

Re: Spring Data Geode Gemfire function batch size

2017-11-30 Thread John Blum
1 last thing... If you run the PeerCacheFunctionExecutionResultStreamingIntegrationTests test class, you will see the effects of Function Stream Result processing in you IDE (or on the command-line). Enjoy! -j On Thu, Nov 30, 2017 at 12:31 PM, John Blum wrote: > Hi Amit, all- > > 2 things...

Re: Spring Data Geode Gemfire function batch size

2017-11-30 Thread John Blum
Hi Amit, all- 2 things... 1. Have a look at... DATAGEODE-36 - "*Add Async, Reactive and Streaming capabilities to the Function Annotation support.*" [1] I already started experimenting with Streaming Function results here [2]. Essentially the only thing preventing Apache Geode from Streaming re

Re: Spring Data Geode Gemfire function batch size

2017-11-30 Thread Anthony Baker
FWIW, I really like this suggestion. There is some interaction with the `isHA()` behavior but I would love to have a reactive Function that returns a mono / flux [1]. Anthony [1] https://spring.io/blog/2016/04/19/understanding-reactive-types

Re: ClassNotFoundException on FunctionService.onRegion(...).execute(function)

2017-11-30 Thread Anthony Baker
The Function implementation needs to be resolvable on the server classpath. This can be done using `gfsh deploy …` or explicitly setting the classpath when starting the server. Anthony > On Nov 30, 2017, at 12:58 AM, Храмченков Николай wrote: > > Hi, > > I tried already with anonymous and

Geode c# native client connection pool factory create method hangs indefinitely if Geode server is down

2017-11-30 Thread Rupert St John Webster
Hi, I've asked the question https://stackoverflow.com/questions/47550390/what-to-use-so-geode-native-client-pool-doesnt-hang-if-no-locator-found on stack overflow. I have a Geode locator / server on a hosted box in Manchester, then in London I have a C# native client monitor that listens to th

Re: ClassNotFoundException on FunctionService.onRegion(...).execute(function)

2017-11-30 Thread Храмченков Николай
Hi, I tried already with anonymous and non the anonymous classes, but result is the same ClassNotFoundException.I thought there is some obvious explanation to this exception. 30.11.2017, 11:27, "Olivier Mallassi" :not sure but could be worth trying with a concrete Function class (like MyFunction im

Re: ClassNotFoundException on FunctionService.onRegion(...).execute(function)

2017-11-30 Thread Olivier Mallassi
not sure but could be worth trying with a concrete Function class (like MyFunction implements/extends Function) and not the anonymous one. again, not sure. HTH On Thu, Nov 30, 2017 at 9:00 AM, Храмченков Николай wrote: > Hello, > I tried to execute a locally defined function over apache-geode-

ClassNotFoundException on FunctionService.onRegion(...).execute(function)

2017-11-30 Thread Храмченков Николай
Hello, I tried to execute a locally defined function over apache-geode-1.1.1 cluster but getting ClassNotFoundException public class Test { public static void main(String[] args) throws Throwable { ... final Function function = new Function() { @Override publi