.net decimal -> Ignite is being stored as Other

2018-09-18 Thread wt
i have the following class [QuerySqlField] public int vd { get; set; } [QuerySqlField] public long sharesinindex { get; set; } [QuerySqlField] public string name { get; set; } [QuerySqlField] public string isin { get; set; }

ignite .net plugin for security

2018-09-17 Thread wt
I have almost completed a plugin in java and was wondering if this plugin could be made available in .net. I have seen an example online (here - https://dzone.com/articles/implementing-ignitenet-plugin-distributed-semaphor) where plugin methods in java are made available in .net. Do you know if it

Re: loadcache very very slow

2018-09-17 Thread wt
hi The reason i am asking here and not on the users forum is to get down to the code details of how loadcache works and specifically what the developers recommendation is on using it for bulk load operations. In reading up on the subject, i discovered that it is suggested to override the method

Re: IgniteDataStreamer - into table and not key\value

2018-09-17 Thread wt
this is making no sense. There is absolutely nothing in the documentation that says remove those items from the configuration. All i am looking for is an example of a table that can be loaded with the data streamer without the data ending up outside of the table. I have tried with and without that

Re: IgniteDataStreamer - into table and not key\value

2018-09-17 Thread wt
that is a typo, changing the name of the class to Indexcomposition doesn't make any difference. I also added the following to the config the class names in

Re: IgniteDataStreamer - into table and not key\value

2018-09-17 Thread wt
hi Ilya Table initialised? it is a rmdbs integrated here is the config file Cluster-server.xml here is the class class IndexHistory { [QuerySqlField] public int VD {

IgniteDataStreamer - into table and not key\value

2018-09-17 Thread wt
I am trying to load ignite using the data streamer into an ignite table. The streamer works but when querying the table it is empty. Upon further investigation it looks like the streamer is creating a key\value store in the same cache that the table resided. When querying the metadata it shows no

Re: loadcache very very slow

2018-09-17 Thread wt
hi Alexey When i debug it is like going down a maize. what i can see is that it enters class = IgniteCacheProxyImpl void = loadCache which calls globalLoadCache which calls globalLoadCacheAsync then it goes all into all sorts of classes back and forth and fails because debugging

loadcache very very slow

2018-09-17 Thread wt
Hi I have a project that is generated by the web console (2.5) and it is loading an integrated db (SQL Server) table that has 4.5 million rows. When running the load cache it is loading 1-3 records per second which is unacceptable. Looking at the documentation i see examples of the overridden

Re: Failed to activate node components

2018-09-04 Thread wt
POC5-server.xml Here is my config file -- Sent from: http://apache-ignite-developers.2346864.n4.nabble.com/

Re: Failed to activate node components

2018-09-04 Thread wt
this is how i am starting the service - IgniteConfiguration cfg = Ignition.loadSpringBean("POC5-server.xml","grid.cfg"); Ignite ig =Ignition.start(cfg); ig.cluster().active(true); *i should point out that if i start it like this i don't get the error* Ignite ig =

Failed to activate node components

2018-09-03 Thread wt
I am getting the following error when starting a single node cluster (intellij) and then the instance crashes. I did have some persistence issues so cleaned up the work dir after which this started happening ignite-5885b9e6.log

Re: How can i make my custom plugin serializable - Failed to serialize object: plugins.CustomSecurityProcessor

2018-09-03 Thread wt
thanks, found the anonymous class and created new ones with serializable -- Sent from: http://apache-ignite-developers.2346864.n4.nabble.com/

Ignition.loadSpringBean("POC5-server.xml","grid.cfg") - error Failed to activate node components

2018-09-03 Thread wt
I have a project that starts fine if i start it like this Ignite ig = Ignition.start("POC5-server.xml"); ig.cluster().active(true); I need to however use the config file and also set other details before starting so When i do this i get an error: IgniteConfiguration cfg =

How can i make my custom plugin serializable - Failed to serialize object: plugins.CustomSecurityProcessor

2018-08-31 Thread wt
How can i make my custom plugin serializable? Caused by: class org.apache.ignite.spi.IgniteSpiException: Failed to authenticate local node (will shutdown local node). at org.apache.ignite.spi.discovery.tcp.ServerImpl.localAuthentication(ServerImpl.java:1008) at

Looking for information on these methods

2018-08-31 Thread wt
okay i have a white list plugin class that is now working - ThankYou Ilya (GridGain) I can now control nodes joining the cluster be it clients or servers. My next task is to manage user requests to specific caches and what they can do on those. I already have the GridSecurityProcessor class