Server not starting for no good reason. Snapshot attached

2020-03-16 Thread vas aj
Hi team, I use Eclipse OpenJ9 JDK 8 on Ubuntu machine & started Geode server with no locator running. (Even if locator is running, I get the same result as shown below) The process goes on and on with no termination and no possible clue. I had to kill the process to get terminal control. The sam

Fwd: Error while executing dynamic Lucene query

2020-04-06 Thread vas aj
++ Dev team Hi team, I am trying to execute Lucene query from Geode cache-client with the following : class CustomerServiceImplTest { > @Inject CustomerServiceGemfireConfiguration > customerServiceGemfireConfiguration; > @Test > void getAllInterestedCustomers() throws Exception { > L

Re: Error while executing dynamic Lucene query

2020-04-06 Thread vas aj
ne's StandardQueryParser, though. Regards, Ajay Vasudevan On Sun, Apr 5, 2020 at 5:29 PM vas aj wrote: > ++ Dev team > > Hi team, > > I am trying to execute Lucene query from Geode cache-client with the > following : > > class CustomerServiceImplTest { >> @Inj

Re: Error while executing dynamic Lucene query

2020-04-07 Thread vas aj
} > > > In your case, the lambda is capturing the surrounding class, > CustomerServiceImplTest, which is why you are getting an error about > CustomerServiceImplTest not being serializable. > > -Dan > > On Mon, Apr 6, 2020 at 2:16 PM vas aj wrote: > >> Hi team,