[jira] [Created] (IGNITE-4080) Web console: Not work revert of node filter section on cache page

2016-10-13 Thread Vasiliy Sisko (JIRA)
Vasiliy Sisko created IGNITE-4080: - Summary: Web console: Not work revert of node filter section on cache page Key: IGNITE-4080 URL: https://issues.apache.org/jira/browse/IGNITE-4080 Project: Ignite

Re: Improve "direct" serialization

2016-10-13 Thread Vladimir Ozerov
Valya, Yes, in this design we will copy data into separate buffer on read. But what is important - it will happen only for message which is split between buffers. On Fri, Oct 14, 2016 at 2:33 AM, Valentin Kulichenko < valentin.kuliche...@gmail.com> wrote: > Vladimir, > > We don't write length be

[jira] [Created] (IGNITE-4079) Web console-SQL: cache name is not displayed for default cache (cache name is null) in 'show query' dialog

2016-10-13 Thread Pavel Konstantinov (JIRA)
Pavel Konstantinov created IGNITE-4079: -- Summary: Web console-SQL: cache name is not displayed for default cache (cache name is null) in 'show query' dialog Key: IGNITE-4079 URL: https://issues.apache.org/jir

[jira] [Created] (IGNITE-4078) Web console: pie chart is not refreshed in coner case

2016-10-13 Thread Pavel Konstantinov (JIRA)
Pavel Konstantinov created IGNITE-4078: -- Summary: Web console: pie chart is not refreshed in coner case Key: IGNITE-4078 URL: https://issues.apache.org/jira/browse/IGNITE-4078 Project: Ignite

[jira] [Created] (IGNITE-4077) Web console: 'export all' needs to be improved

2016-10-13 Thread Pavel Konstantinov (JIRA)
Pavel Konstantinov created IGNITE-4077: -- Summary: Web console: 'export all' needs to be improved Key: IGNITE-4077 URL: https://issues.apache.org/jira/browse/IGNITE-4077 Project: Ignite I

[jira] [Created] (IGNITE-4076) Web console: can not choose a cache by clicking on it

2016-10-13 Thread Pavel Konstantinov (JIRA)
Pavel Konstantinov created IGNITE-4076: -- Summary: Web console: can not choose a cache by clicking on it Key: IGNITE-4076 URL: https://issues.apache.org/jira/browse/IGNITE-4076 Project: Ignite

Re: Cassandra store questions

2016-10-13 Thread Igor Rudyak
Ok, thanks. Igor On Oct 13, 2016 4:37 PM, "Valentin Kulichenko" < valentin.kuliche...@gmail.com> wrote: > Here is the ticket: https://issues.apache.org/jira/browse/IGNITE-4075 > > -Val > > On Wed, Oct 12, 2016 at 6:45 PM, Igor Rudyak wrote: > >> Hi Val, >> >> I don't have any objections - pleas

Re: Cassandra store questions

2016-10-13 Thread Valentin Kulichenko
Here is the ticket: https://issues.apache.org/jira/browse/IGNITE-4075 -Val On Wed, Oct 12, 2016 at 6:45 PM, Igor Rudyak wrote: > Hi Val, > > I don't have any objections - please create a ticket and link it to the > root ticket https://issues.apache.org/jira/browse/IGNITE-1371 > > Igor > > On We

[jira] [Created] (IGNITE-4075) Cassandra store should load all available data when no parameters are provided in loadCache()

2016-10-13 Thread Valentin Kulichenko (JIRA)
Valentin Kulichenko created IGNITE-4075: --- Summary: Cassandra store should load all available data when no parameters are provided in loadCache() Key: IGNITE-4075 URL: https://issues.apache.org/jira/browse/IG

Re: Improve "direct" serialization

2016-10-13 Thread Valentin Kulichenko
Vladimir, We don't write length because be don't know it in advance. Sounds like you're proposing to marshal the message first and then copy it to the write buffer. But that's actually our previous implementation and the whole purpose of direct serialization was to avoid this copy. The optimizati

[GitHub] ignite pull request #1159: IGNITE-4054 Add debug to trace HadoopMapReducePla...

2016-10-13 Thread tledkov-gridgain
GitHub user tledkov-gridgain opened a pull request: https://github.com/apache/ignite/pull/1159 IGNITE-4054 Add debug to trace HadoopMapReducePlanner results You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite

[jira] [Created] (IGNITE-4074) Refactor future operations in PlatformTarget

2016-10-13 Thread Pavel Tupitsyn (JIRA)
Pavel Tupitsyn created IGNITE-4074: -- Summary: Refactor future operations in PlatformTarget Key: IGNITE-4074 URL: https://issues.apache.org/jira/browse/IGNITE-4074 Project: Ignite Issue Type:

[GitHub] ignite pull request #1158: IGNITE-4073: OFFHEAP cache context method isOffHe...

2016-10-13 Thread AMashenkov
GitHub user AMashenkov opened a pull request: https://github.com/apache/ignite/pull/1158 IGNITE-4073: OFFHEAP cache context method isOffHeapEnabled() return false You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ig

[jira] [Created] (IGNITE-4073) OFFHEAP cache context isOffHeapEnabled return false

2016-10-13 Thread Andrew Mashenkov (JIRA)
Andrew Mashenkov created IGNITE-4073: Summary: OFFHEAP cache context isOffHeapEnabled return false Key: IGNITE-4073 URL: https://issues.apache.org/jira/browse/IGNITE-4073 Project: Ignite

[jira] [Created] (IGNITE-4072) Web console: Disable Anotation variant of "Query metadata" when POJO is disabled.

2016-10-13 Thread Vasiliy Sisko (JIRA)
Vasiliy Sisko created IGNITE-4072: - Summary: Web console: Disable Anotation variant of "Query metadata" when POJO is disabled. Key: IGNITE-4072 URL: https://issues.apache.org/jira/browse/IGNITE-4072 P

Re: Improve "direct" serialization

2016-10-13 Thread Vladimir Ozerov
Writes can be optimized even further: 1) Write to *ByteBuffer *as long as there is a place in it. 2) When it is full - invoke a callback which will submit it to the socket, reset position to 0, and continue marshaling. This way we can probably get rid of write "state" at all. On Thu, Oct 13, 2016

[jira] [Created] (IGNITE-4071) Web console: Focus lost from key type on input.

2016-10-13 Thread Vasiliy Sisko (JIRA)
Vasiliy Sisko created IGNITE-4071: - Summary: Web console: Focus lost from key type on input. Key: IGNITE-4071 URL: https://issues.apache.org/jira/browse/IGNITE-4071 Project: Ignite Issue Type

Improve "direct" serialization

2016-10-13 Thread Vladimir Ozerov
Folks, I went through our so-called "direct serialization" and appears to be not very efficient to me. We never write message length. As a result we have to constantly track what was written and what was not, and whether we have a room for the next write. The same goes for reader. As a result even

[jira] [Created] (IGNITE-4070) .NET: Introduce transformers to SCAN queries

2016-10-13 Thread Pavel Tupitsyn (JIRA)
Pavel Tupitsyn created IGNITE-4070: -- Summary: .NET: Introduce transformers to SCAN queries Key: IGNITE-4070 URL: https://issues.apache.org/jira/browse/IGNITE-4070 Project: Ignite Issue Type:

[jira] [Created] (IGNITE-4069) Web console: error triangle icon is not displayed for some fields

2016-10-13 Thread Pavel Konstantinov (JIRA)
Pavel Konstantinov created IGNITE-4069: -- Summary: Web console: error triangle icon is not displayed for some fields Key: IGNITE-4069 URL: https://issues.apache.org/jira/browse/IGNITE-4069 Project