Yes, the jar files contain the classes. You should be able to see this in the 
jar files created by the maven project I sent. 

> On Feb 22, 2017, at 5:45 AM, Nikolai Tikhonov <ntikho...@apache.org> wrote:
> 
> Also are you sure that jar files from testIgnite1 and testIgnite2 projects 
> (which deployed into libs dir) contain needed classes? Might be you have a 
> build issue?
> 
>> On Wed, Feb 22, 2017 at 4:43 PM, Nikolai Tikhonov <ntikho...@apache.org> 
>> wrote:
>> Could you try start to server from java code and look at results?
>> 
>> Thanks,
>> Nikolay
>> 
>>> On Wed, Feb 22, 2017 at 4:36 PM, Matt Warner <m...@warnertechnology.com> 
>>> wrote:
>>> I am using the default configuration for the server and starting it with 
>>> ignite.sh.
>>> 
>>> Yes, the Store classes are being deployed into the Ignite libs directory as 
>>> well as part of the both testIgnite1 and testIgnite2.
>>> 
>>> I feel like I'm missing something?
>>> 
>>> Matt
>>> 
>>>> On Wed, Feb 22, 2017 at 4:50 AM, Nikolai Tikhonov-2 [via Apache Ignite 
>>>> Users] <[hidden email]> wrote:
>>>> Hi Matt!
>>>> 
>>>> I've run your test and didn't faced with the issue. I used the following 
>>>> code for start server node (placed in your project):
>>>> 
>>>> public class Server {
>>>>    public static void main(String[] args) throws Exception {
>>>>       TcpDiscoverySpi spi = new TcpDiscoverySpi();
>>>>       TcpDiscoveryVmIpFinder ipFinder = new TcpDiscoveryVmIpFinder();
>>>>       ipFinder.setAddresses(Arrays.asList("127.0.0.1"));
>>>>       spi.setIpFinder(ipFinder);
>>>>       IgniteConfiguration cfg = new IgniteConfiguration();
>>>>       cfg.setDiscoverySpi(spi);
>>>> 
>>>>       Ignition.start(cfg);
>>>>    }
>>>> }
>>>> Which configuration you used for start server node? For your case you 
>>>> should deploy Store classes on all nodes in cluster.
>>>> 
>>>> Thanks,
>>>> Nikolay
>>>> 
>>>>> On Wed, Feb 22, 2017 at 1:27 AM, Matt Warner <[hidden email]> wrote:
>>>>> There were some coding errors in the previous attachment. The previous 
>>>>> code
>>>>> still illustrates the deadlock, but the attached correctly stores data in
>>>>> tables.
>>>>> 
>>>>> I've also included the test input file, for completeness. testCode.gz
>>>>> <http://apache-ignite-users.70518.x6.nabble.com/file/n10770/testCode.gz>
>>>>> 
>>>>> 
>>>>> 
>>>>> --
>>>>> View this message in context: 
>>>>> http://apache-ignite-users.70518.x6.nabble.com/getOrCreateCache-hang-tp10737p10770.html
>>>>> Sent from the Apache Ignite Users mailing list archive at Nabble.com.
>>>> 
>>>> 
>>>> 
>>>> If you reply to this email, your message will be added to the discussion 
>>>> below:
>>>> http://apache-ignite-users.70518.x6.nabble.com/getOrCreateCache-hang-tp10737p10795.html
>>>> To unsubscribe from getOrCreateCache hang, click here.
>>>> NAML
>>> 
>>> 
>>> View this message in context: Re: getOrCreateCache hang
>>> 
>>> Sent from the Apache Ignite Users mailing list archive at Nabble.com.
>> 
> 

Reply via email to