web console question

2015-10-29 Thread Dmitriy Setrakyan
I have a question on XML generation in the Ignite web console (we have had it deployed on GridGain server for a while): https://console.gridgain.com On the summary page, we can save client and server XML files. After I save either one, I get a mini-zip files with all the generated domain model an

[jira] [Created] (IGNITE-1813) Need to add metrics for data structures

2015-10-29 Thread Valentin Kulichenko (JIRA)
Valentin Kulichenko created IGNITE-1813: --- Summary: Need to add metrics for data structures Key: IGNITE-1813 URL: https://issues.apache.org/jira/browse/IGNITE-1813 Project: Ignite Issue

Re: Portables hash code.

2015-10-29 Thread Dmitriy Setrakyan
I am not sure I like this. We now require creation of some sort of BuilderIgniteObjectView, which looks a bit over the top for me. How about using the hasher to calculate the hash-code and setting it into the builder manually in your implementation? To my knowledge, builder allows you to get indiv

[GitHub] ignite pull request: ignite-1717 Portable marshaller fixed for cas...

2015-10-29 Thread agura
Github user agura closed the pull request at: https://github.com/apache/ignite/pull/180 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabl

log4j2 garbage files

2015-10-29 Thread Raul Kripalani
Gianfranco, Artem, Could you please check why we have garbage source files ending in a twiddle ~ inside the log4j2 module? https://github.com/apache/ignite/tree/master/modules/log4j2/src/main/java/org/apache/ignite/logger/log4j2 Thanks, *Raúl Kripalani* PMC & Committer @ Apache Ignite, Apache C

[jira] [Created] (IGNITE-1812) Create a Maven BOM for Apache Ignite

2015-10-29 Thread JIRA
Raúl Kripalani created IGNITE-1812: -- Summary: Create a Maven BOM for Apache Ignite Key: IGNITE-1812 URL: https://issues.apache.org/jira/browse/IGNITE-1812 Project: Ignite Issue Type: New Fea

[GitHub] ignite pull request: ignite-1380 Random eviction policy for near c...

2015-10-29 Thread agura
GitHub user agura opened a pull request: https://github.com/apache/ignite/pull/185 ignite-1380 Random eviction policy for near cache works incorrectly You can merge this pull request into a Git repository by running: $ git pull https://github.com/agura/incubator-ignite ignite-

[GitHub] ignite pull request: Ignite 1778

2015-10-29 Thread iveselovskiy
GitHub user iveselovskiy opened a pull request: https://github.com/apache/ignite/pull/184 Ignite 1778 You can merge this pull request into a Git repository by running: $ git pull https://github.com/iveselovskiy/ignite ignite-1778 Alternatively you can review and apply these c

Re: AWS Tests on TeamCity

2015-10-29 Thread Raul Kripalani
Nikolay helped me set up the AWS account and the tests were green after the upgrade. No regressions after 3 local runs. I'll merge to master. The problem with the tests may be that the env variables include dots (.) – which are invalid in Linux machines. I had to change these to underscores to tes

[GitHub] ignite pull request: IGNITE-1770 Portables: implement constant-tim...

2015-10-29 Thread ptupitsyn
GitHub user ptupitsyn opened a pull request: https://github.com/apache/ignite/pull/183 IGNITE-1770 Portables: implement constant-time field lookup. .NET part You can merge this pull request into a Git repository by running: $ git pull https://github.com/ptupitsyn/ignite ignite-

[GitHub] ignite pull request: IGNITE-1770 Portables: implement constant-tim...

2015-10-29 Thread ptupitsyn
Github user ptupitsyn closed the pull request at: https://github.com/apache/ignite/pull/182 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is e

[jira] [Created] (IGNITE-1811) Get from backup in Dht cache can be optimized

2015-10-29 Thread Yakov Zhdanov (JIRA)
Yakov Zhdanov created IGNITE-1811: - Summary: Get from backup in Dht cache can be optimized Key: IGNITE-1811 URL: https://issues.apache.org/jira/browse/IGNITE-1811 Project: Ignite Issue Type:

Re: AWS Tests on TeamCity

2015-10-29 Thread Raul Kripalani
I'm out of my free tier ;-) That's why I asked. *Raúl Kripalani* PMC & Committer @ Apache Ignite, Apache Camel | Integration, Big Data and Messaging Engineer http://about.me/raulkripalani | http://www.linkedin.com/in/raulkripalani http://blog.raulkr.net | twitter: @raulvk On Thu, Oct 29, 2015 at

Re: Portables hash code.

2015-10-29 Thread Alexey Kuznetsov
Alexey, I like this very much, this almost solve my problems and I do not need any fabrics! Thanks! On Thu, Oct 29, 2015 at 9:19 PM, Alexey Goncharuk < alexey.goncha...@gmail.com> wrote: > Alexey, > > What if we create a thin wrapper around PortableBuilder that implements > IgniteObject? Since

Re: Portables hash code.

2015-10-29 Thread Alexey Goncharuk
Alexey, What if we create a thin wrapper around PortableBuilder that implements IgniteObject? Since PortableBuilder already has getField() method, you only need to delegate to a builder in this wrapper. Then we can invoke the interface Dmitriy suggested, obtain hashCode and set it back to the buil

Re: AWS Tests on TeamCity

2015-10-29 Thread Nikolay Tikhonov
Raul, AWS build on TC is broken by another reason. Admin investigates this issue. For local testing you could use AWS Free Tier. (https://aws.amazon.com/free/ ) On Thu, Oct 29, 2015 at 4:25 PM, Denis Magda wrote: > Nick, should know the credentials. > > Nick, please help Raul with the setup. >

Re: Portables hash code.

2015-10-29 Thread Alexey Kuznetsov
Dmitriy, > How about adding JdbcTypeHasher interface, which will look like this: > interface JdbcTypeHasher { >public int hashCode(IgniteObject o, Collection fields); >} > User should be optionally set this interface at the JdbcType level. If not > set, then we use our default implementation.

Re: AWS Tests on TeamCity

2015-10-29 Thread Denis Magda
Nick, should know the credentials. Nick, please help Raul with the setup. -- Denis On 10/29/2015 4:16 PM, Raul Kripalani wrote: I'm working on upgrading the dependencies of ignite-aws, as we need the upgrade for OSGi integration. Unfortunately, it seems the AWS builds on TeamCity are failing

AWS Tests on TeamCity

2015-10-29 Thread Raul Kripalani
I'm working on upgrading the dependencies of ignite-aws, as we need the upgrade for OSGi integration. Unfortunately, it seems the AWS builds on TeamCity are failing because the AWS API params cannot be resolved: %secure:teamcity.password.env.test.amazon.access.key% %secure:teamcity.password.env.t

Re: [Ignite-429] facing problem with node startup

2015-10-29 Thread Denis Magda
Chandresh, Just in case if you have any questions in regards to MqttStreamer tests I think you can ask Raul for guidance. *Raul*, don't you mind to help Chandresh with tests if it's required? When all the tests (including the new one) are green create a pull-request and someone from the commu

[jira] [Created] (IGNITE-1810) Upgrade ignite-aws dependencies (HttpClient and AWS SDK)

2015-10-29 Thread JIRA
Raúl Kripalani created IGNITE-1810: -- Summary: Upgrade ignite-aws dependencies (HttpClient and AWS SDK) Key: IGNITE-1810 URL: https://issues.apache.org/jira/browse/IGNITE-1810 Project: Ignite

[GitHub] ignite pull request: IGNITE-1770 Portables: implement constant-tim...

2015-10-29 Thread ptupitsyn
GitHub user ptupitsyn opened a pull request: https://github.com/apache/ignite/pull/182 IGNITE-1770 Portables: implement constant-time field lookup Adopt protocol in .NET You can merge this pull request into a Git repository by running: $ git pull https://github.com/ptupitsyn/ig

[GitHub] ignite pull request: ignite-1745 GridCacheIoManager should send co...

2015-10-29 Thread agura
Github user agura closed the pull request at: https://github.com/apache/ignite/pull/177 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabl

Re: [Ignite-429] facing problem with node startup

2015-10-29 Thread Artem Shutak
Hi Chandresh, I think I'm not the best person who can help you with streamer. I'd recommend you to look at ignite/modules/mqtt where you can find MqttStreamer implementation with tests which already has been reviewed. Also, I've been moved the jira [1] from Patch Available status to Open as long

[jira] [Created] (IGNITE-1809) GridCacheAtomicMultiNodeP2PDisabledFullApiSelfTest.testWithSkipStore fails on TC sometimes

2015-10-29 Thread Artem Shutak (JIRA)
Artem Shutak created IGNITE-1809: Summary: GridCacheAtomicMultiNodeP2PDisabledFullApiSelfTest.testWithSkipStore fails on TC sometimes Key: IGNITE-1809 URL: https://issues.apache.org/jira/browse/IGNITE-1809

Re: Review the new Camel Streamer (IGNITE-1790)

2015-10-29 Thread Raul Kripalani
Sure, that's fine. Thanks, Denis. Regards, Raúl. On 29 Oct 2015 08:50, "Denis Magda" wrote: > Hi Raul, > > I'll be able to take a look at the changes. However this should happen not > earlier than in the beginning of the next week. > > Does it work for you? > > -- > Denis > > On 10/28/2015 3:51

Re: Review the new Camel Streamer (IGNITE-1790)

2015-10-29 Thread Denis Magda
Hi Raul, I'll be able to take a look at the changes. However this should happen not earlier than in the beginning of the next week. Does it work for you? -- Denis On 10/28/2015 3:51 PM, Raul Kripalani wrote: Hello, I've pushed a new Apache Camel streamer in the ignite-1790 branch. Build a

[GitHub] ignite pull request: IGNITE-1168 REST metadata command - return me...

2015-10-29 Thread nva
GitHub user nva opened a pull request: https://github.com/apache/ignite/pull/181 IGNITE-1168 REST metadata command - return metadata in all caches. You can merge this pull request into a Git repository by running: $ git pull https://github.com/nva/ignite ignite-1168 Alternati

[jira] [Created] (IGNITE-1808) Wrong Jetty's thread pool size settings

2015-10-29 Thread Roman Shtykh (JIRA)
Roman Shtykh created IGNITE-1808: Summary: Wrong Jetty's thread pool size settings Key: IGNITE-1808 URL: https://issues.apache.org/jira/browse/IGNITE-1808 Project: Ignite Issue Type: Bug