Re: Re: Increase Ignite instances can't increase the speed of compute

2016-09-22 Thread 胡永亮/Bob
Hi, Val Thank you very much, I think this is very helpful for me. I will change my compute code, and have a try. Bob From: vkulichenko Date: 2016-09-23 07:00 To: user@ignite.apache.org Subject: Re: Re: Increase Ignite instances can't increase the speed of compute Hi Bob, Most

Re: Re: Increase Ignite instances can't increase the speed of compute

2016-09-22 Thread vkulichenko
Hi Bob, Most likely these are distributed cache operations and since they are all synchronous, you wait for each of them one by one. You can try to batch your updates to improve performance or use data streamer [1]. It would be even better if you used affinity collocation [2] and made sure that

Re: Re: Increase Ignite instances can't increase the speed of compute

2016-09-21 Thread 胡永亮/Bob
reproduce the problem. On Tue, Sep 13, 2016 at 12:06 PM, 胡永亮/Bob <hu...@neusoft.com> wrote: Only 118 jobs for this test. Bob From: Taras Ledkov Date: 2016-09-13 14:52 To: user@ignite.apache.org Subject: Re: Re: Increase Ignite instances can't increase the speed of compute Hi, How

Re: Re: Increase Ignite instances can't increase the speed of compute

2016-09-14 Thread Vladislav Pyatkov
nly 118 jobs for this test. > > -- > Bob > > > *From:* Taras Ledkov <tled...@gridgain.com> > *Date:* 2016-09-13 14:52 > *To:* user@ignite.apache.org > *Subject:* Re: Re: Increase Ignite instances can't increase the speed of > compu

Re: Re: Increase Ignite instances can't increase the speed of compute

2016-09-13 Thread 胡永亮/Bob
Only 118 jobs for this test. Bob From: Taras Ledkov Date: 2016-09-13 14:52 To: user@ignite.apache.org Subject: Re: Re: Increase Ignite instances can't increase the speed of compute Hi, How many MatchingJobs do you submit? On Tue, Sep 13, 2016 at 12:29 PM, 胡永亮/Bob <hu...@neusoft.

Re: Re: Increase Ignite instances can't increase the speed of compute

2016-09-13 Thread Taras Ledkov
Map<Long, List> map = > entry.getValue(); > map.putAll(value); > entry.setValue(map); > return null; > } > }); > } > > } > > >

Re: Re: Increase Ignite instances can't increase the speed of compute

2016-09-12 Thread 胡永亮/Bob
} }); } } bob From: Vladislav Pyatkov Date: 2016-09-12 18:37 To: user@ignite.apache.org Subject: Re: Increase Ignite instances can't increase the speed of compute Hello, I don't understand, what do you try to measure, without code.

Re: Increase Ignite instances can't increase the speed of compute

2016-09-12 Thread Vladislav Pyatkov
Hello, I don't understand, what do you try to measure, without code. Size of calculation task, size of data moved into network have importance. Could you please provide code example? On Mon, Sep 12, 2016 at 12:33 PM, 胡永亮/Bob wrote: > Hi, everyone: > > I am using Ignite