Re: Possible issue with Web Console

2018-08-16 Thread sv
Thank you! Looking forward to 2.7. I would suggest escalating this one to 'Critical', since it impacts a very basic operation of Web Console, the very operation that is promoted in many Ignite 'get started' videos. Thank you, --Stan -- Sent from:

Source code of latest benchmarks

2018-08-16 Thread eugene miretsky
Hi, I am trying to write my own benchmark. The Ignite benchmarks github linked on the website is very old, is there a newer version I could work off? Cheers, Eugene

RE: Performance degradation in embed mode

2018-08-16 Thread Kvon, Dmitriy
Hello! It’s incredible! Thank you for help! Dmitriy From: Ilya Kasnacheev [mailto:ilya.kasnach...@gmail.com] Sent: Tuesday, August 14, 2018 6:02 PM To: user@ignite.apache.org Subject: Re: Performance degradation in embed mode Hello! It looks like you have debug enabled when running inside

Apache Ignite SQL- read Only User Creation

2018-08-16 Thread ApacheUser
Hello Ignite team, We are using Apache Ignite are SQL reporting cluster . Ignite Persistence and authenticationEnabled . We need a read only user role apart from ignite user, is there any role or a way to create user with read only previllages? Thanks -- Sent from:

Re: sql query log

2018-08-16 Thread Вячеслав Коптилин
Hello, If I am not mistaken, there is no such capability out of the box. You can try to use IgniteConfiguration#longQueryWarningTimeout property as a workaround. For example, you can set this property to 1ms. In this case, every SQL request that spends more than 1ms will be printed in the log as

How to detect sql schema changes and make update

2018-08-16 Thread Dmitry Lazurkin
Hello. I have cache with query entity. Now I want to add new field to query entity of existing cache. I take query entity from existing cache and query entity with new fields, search new field and add it with DLL 'ALTER TABLE'. And now I have problem because query entity from cache configuration

sql query log

2018-08-16 Thread Som Som
hi. how can i log all the sql queries on the server node side?

Re: ignite.net spring config ( jdbc classpath)

2018-08-16 Thread wt
Brilliant thanks that did the trick. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

答复: data loss using IgniteDataStreamer API

2018-08-16 Thread Huang Meilong
Thank you, i found that autoflus is what i need. 发件人: Ilya Kasnacheev 发送时间: 2018年8月16日 21:22:10 收件人: user@ignite.apache.org 主题: Re: data loss using IgniteDataStreamer API Hello! For starters, I don't see that you do stmr.close() anywhere. Data Streamer is only

答复: data loss using IgniteDataStreamer API

2018-08-16 Thread Huang Meilong
Thank you, i found that autoflus is what i need. 发件人: Ilya Kasnacheev 发送时间: 2018年8月16日 21:22:10 收件人: user@ignite.apache.org 主题: Re: data loss using IgniteDataStreamer API Hello! For starters, I don't see that you do stmr.close() anywhere. Data Streamer is only

Re: ignite.net spring config ( jdbc classpath)

2018-08-16 Thread Ilya Kasnacheev
Hello! I think you will need an unzipped binary release of corresponding version by that path: https://ignite.apache.org/download.cgi#binaries And there you can drop additional jars into libs/ or so I hope. Regards, -- Ilya Kasnacheev 2018-08-16 17:30 GMT+03:00 wt : > hi Ilya > > thanks for

Re: ignite.net spring config ( jdbc classpath)

2018-08-16 Thread wt
hi Ilya thanks for the quick response. I am running this from code using a visual studio project so there isn't an ignite home but if i create one and update the env variable to use either a windows format for the path or a /folder format i get the following error

Re: ignite.net spring config ( jdbc classpath)

2018-08-16 Thread Ilya Kasnacheev
Hello! .net usually uses external IGNITE_HOME with Ignite binary distribution. You should put JAR files into its libs\ directory to make Ignite JVM process use them. Regards, -- Ilya Kasnacheev 2018-08-16 16:59 GMT+03:00 wt : > i am playing with getting ignite working on .net and it works

ignite.net spring config ( jdbc classpath)

2018-08-16 Thread wt
i am playing with getting ignite working on .net and it works nicely with standard configs. If i try copy a config that has rmdbs integration it doesn't know where to find the jbdc jar file and classpath. Does anyone have any information on how this can be done ? Caused by: class

Re: data loss using IgniteDataStreamer API

2018-08-16 Thread Ilya Kasnacheev
Hello! For starters, I don't see that you do stmr.close() anywhere. Data Streamer is only guaranteed to write all data to cache after it is closed properly. Regards, -- Ilya Kasnacheev 2018-08-16 16:19 GMT+03:00 Huang Meilong : > Hi all, > > > I'm use IgniteDataStreamer API to ingest

data loss using IgniteDataStreamer API

2018-08-16 Thread Huang Meilong
Hi all, I'm use IgniteDataStreamer API to ingest 1,000,000 record to a sql table cache, but only 996,626 records, 0: jdbc:ignite:thin://127.0.0.1/> select count(*) from APMMETRIC; ++ |COUNT(*)| ++ | 996626

Re: Ignite benchamrking issue

2018-08-16 Thread akurbanov
Hi, Could you elaborate any error details? Where do you see it, do you have any logs available? -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: how ignite c++ node set baselinetopology

2018-08-16 Thread Igor Sapego
Filed a ticket: [1] [1] - https://issues.apache.org/jira/browse/IGNITE-9293 Best Regards, Igor On Thu, Aug 16, 2018 at 3:28 AM Denis Magda wrote: > Igor, > > I think it's reasonable to add the baseline topology APIs to C++. Can you > plan this for the nearest releases? > > Pave, do you have

答复: problem when streaming data to a sql table

2018-08-16 Thread Huang Meilong
i resolved it by setting KEY_TYPE and VALUE_TYPE. 发件人: Huang Meilong 发送时间: 2018年8月16日 17:42:33 收件人: user@ignite.apache.org 主题: problem when streaming data to a sql table Hi, I'm streaming data to a sql table like this, ''' public static void main(String[]

Re: Ignite SQL Queries not getting all data back in ignite 2.4 and 2.6

2018-08-16 Thread yfernando
Thanks Vlad / Dmitry, I was able to download the nightly build from teamcity as a guest. However I'm now getting the following error when trying to add data to the cache. Any ideas? class org.apache.ignite.IgniteException: Failed to get affinity mapping from node: TcpDiscoveryNode

problem when streaming data to a sql table

2018-08-16 Thread Huang Meilong
Hi, I'm streaming data to a sql table like this, ''' public static void main(String[] args) throws Exception { Class.forName("org.apache.ignite.IgniteJdbcThinDriver"); Connection conn = DriverManager.getConnection("jdbc:ignite:thin://worker-1/");

Ignite benchamrking issue

2018-08-16 Thread debashissinha
Hi All, I have an ignite distribution running on yarn. I have connected to the worker node and done normal operation using client server mode. But however when I try to benchmark the same and mention the worker nodes as remote server in my benchmark-remote.properties and

Re: Ignite SQL Queries not getting all data back in ignite 2.4 and 2.6

2018-08-16 Thread Vladimir Ozerov
Dmitriy, I wanted to suggest this, but looks like we do not have direct links for regular distribution. User can download it from TeamCity, but username/password is needed for this. May be I missing something. On Thu, Aug 16, 2018 at 11:44 AM Dmitriy Setrakyan wrote: > I also want to point out

Re: Ignite SQL Queries not getting all data back in ignite 2.4 and 2.6

2018-08-16 Thread Dmitriy Setrakyan
I also want to point out that Ignite has nightly builds, so you can try them instead of doing your own build as well. https://ignite.apache.org/download.cgi#nightly-builds D. On Thu, Aug 16, 2018 at 1:38 AM, Vladimir Ozerov wrote: > Hi, > > There were a lot of changes in the product since 2.3

Re: Ignite SQL Queries not getting all data back in ignite 2.4 and 2.6

2018-08-16 Thread Vladimir Ozerov
Hi, There were a lot of changes in the product since 2.3 which may affect it. Most important change was baseline topology, as already mentioned. I am aware of a case when incorrect result might be returned [1], which is already fixed in *master*. Not sure if this is the same issue, but you may