Unsubscribe

2021-07-12 Thread Saifullah Zahid

ODBC connection error

2017-02-20 Thread Saifullah Zahid
Hi, I have installed ignite odbc driver (1.8) But I am getting following error message An error occurred: Failed to connect: 08001: Failed to establish connection with the host. Ignite server is created using ignite.net 1.8 I am trying to connect using c++ odbc example. connection string std:

ODBC configuratoin for Ignite.Net

2017-02-20 Thread Saifullah Zahid
Hi, How I can provide ODBC configuration in app.config for Ignite.Net. I am using version 1.8. Thanks, Saif

Re: ODBC connection error

2017-02-20 Thread Saifullah Zahid
ke a look on [1]? You need to enable OdbcProcessor on the node > side. > Does it help? > > [1] - https://apacheignite.readme.io/docs/odbc-driver#section- > cluster-configuration > > Best Regards, > Igor > > On Mon, Feb 20, 2017 at 7:47 PM, Saifullah Zahid > wrote: &

Re: ODBC connection error

2017-02-20 Thread Saifullah Zahid
Thanks, it worked. On Mon, Feb 20, 2017 at 10:42 PM, Igor Sapego wrote: > Pavel already answered this question in another mail. > > Best Regards, > Igor > > On Mon, Feb 20, 2017 at 8:35 PM, Saifullah Zahid > wrote: > >> Igor, >> >> Thanks for you

Re: ODBC configuratoin for Ignite.Net

2017-02-20 Thread Saifullah Zahid
bed in the docs: > https://apacheignite.readme.io/docs/odbc-driver# > section-cluster-configuration) > and then use IgniteConfiguration.SpringConfigUrl property to load it: > > > > Pavel > > > On Mon, Feb 20, 2017 at 8:13 PM, Saifullah Zahid > wrote: > &

java.lang.OutOfMemoryError: Java heap space

2017-02-21 Thread Saifullah Zahid
Hi, Following is my Metrics for local node but getting out of memory exception (details below). Metrics for local node (to disable set 'metricsLogFrequency' to 0) ^-- Node [id=80a92be0, name=null, uptime=00:01:00:001] ^-- H/N/C [hosts=1, nodes=1, CPUs=8] ^-- CPU [cur=13.4%, avg=14.68%

Apache.Ignite.Core.Common.IgniteException: Failed to initialize JVM.

2017-03-07 Thread Saifullah Zahid
Hi, I have created an ignite server node using Ignite.Net. When I run this node in windows service node I get following exception. Apache.Ignite.Core.Common.IgniteException: Failed to initialize JVM. ---> Apache.Ignite.Core.Common.IgniteException: Java class is not found (did you set IGNITE_HOME

Re: Apache.Ignite.Core.Common.IgniteException: Failed to initialize JVM.

2017-03-07 Thread Saifullah Zahid
Hi, My project is 64bit and I am using 64bit JVM Still I need to specify above option? Thanks, Saif On Tue, Mar 7, 2017 at 6:30 PM, davida wrote: > Have You checked "Prefer 32 bit" option in VS project properties ? > > > > -- > View this message in context: http://apache-ignite-users. > 70518

Ignite.NET ReadThrough?

2017-03-12 Thread Saifullah Zahid
Hi, I am using Ignite.NET and following code is used to get list of details from Cache List result = new List(); var query = m_productDetailStore.Query(new ScanQuery(new ProductDetailFilter(nProductHeaderID))); foreach (var cacheEntry in query) { result.Add(cacheEntry.Value); } return result;

Ignite.NET very slow Cache Loading

2017-03-15 Thread Saifullah Zahid
Hi, I am facing an issue on cache loading, In the start cache loads quickly but after some time it becomes very slow almost 1 row per second. There are about 4 million rows in a table. OS = Windows Server 2012 RAM = 64 GB Node Heap config is 16 GB. Following is Cache configuration TransactionsDet

Re: Ignite.NET very slow Cache Loading

2017-03-15 Thread Saifullah Zahid
Wed, Mar 15, 2017 at 7:02 PM, Pavel Tupitsyn wrote: > Hi, > > You have cache store configured, which probably causes the slowdown. > Please try to disable cache store (remove CacheStoreFactory from config) > and see if it makes any difference. > > On Wed, Mar 15, 2017 at 4:0

Re: Ignite.NET very slow Cache Loading

2017-03-15 Thread Saifullah Zahid
ing XML Thanks, Saif On Wed, Mar 15, 2017 at 8:29 PM, Pavel Tupitsyn wrote: > Have you tried commenting out cache store as I descrived above? > > On Wed, Mar 15, 2017 at 6:10 PM, Saifullah Zahid > wrote: > >> Hi, >> >> following is my load cache method >> i

Re: Ignite.NET very slow Cache Loading

2017-03-15 Thread Saifullah Zahid
loading data from database. thanks, On Wed, Mar 15, 2017 at 10:00 PM, Pavel Tupitsyn wrote: > Why use Spring? > I propose to do just one thing - comment out the CacheStoreFactory line. > > On Wed, Mar 15, 2017 at 7:30 PM, Saifullah Zahid > wrote: > >> Hi, >> &g

Re: Ignite.NET very slow Cache Loading

2017-03-16 Thread Saifullah Zahid
o attach Ignite log. > > On Wed, Mar 15, 2017 at 8:13 PM, Saifullah Zahid > wrote: > >> I tried that but it is throwing exception >> >> class org.apache.ignite.IgniteCheckedException: Cannot enable >> write-behind (writer or store is not provided) for cache: >

Re: ODBC driver installation error

2017-03-16 Thread Saifullah Zahid
Try by opening command prompt in administrative mode On Thu, Mar 16, 2017 at 5:18 PM, kavitha wrote: > Hi, > > I tired to following command in command prompt. But I get Access is denied > error message. > (Before executing command, successfully build all projects in ignite.sln) > > F:\Ignite\apa