Any status updates on Ignite 3.0?

2024-02-13 Thread Glaviano, Anthony via user
date? Given the fundamental changes planned for v3.0, we were hoping to avoid having to do that. Any advice or insights would be greatly appreciated. Thanks. --Anthony Glaviano The information contained in this message is intended only for the recipient, and

UNSUBSCRIBE

2022-10-16 Thread Anthony Mak
UNSUBSCRIBE >

Internal Node and External Node

2020-04-15 Thread Anthony
Hello, We have a use case where we want two nodes within a machine. One for internal and one for external. To be more precise, the c++ node will handle the communication and java node will handle the communication. Is there a proper way to organize the nodes? Thanks, Anthony

Re: Automatically generate Code using java reflection

2020-04-14 Thread Anthony
Class")); igniteConfiguration.setBinaryConfiguration(bCfg); Thank you ! On Mon, Apr 13, 2020 at 1:57 PM Evgenii Zhuravlev wrote: > Anthony, > > No, I don't think so. If you plan to use it from C++, then you will need > to configure QueryEntity. > > Evgenii > > пн, 13 апр. 2020 г. в 13:02, Anthony : &

Re: Automatically generate Code using java reflection

2020-04-13 Thread Anthony
and it will be generated automatically based on you > annotations. > > Evgenii > > пн, 13 апр. 2020 г. в 09:11, Anthony : > >> Hello, >> If I have the following java class: >> >> public class Person implements Serializable { >> /** */

Automatically generate Code using java reflection

2020-04-13 Thread Anthony
Hello, If I have the following java class: public class Person implements Serializable { /** */ private static final AtomicLong ID_GEN = new AtomicLong(); /** Person ID (indexed). */ @QuerySqlField(index = true) public Long id; /** Organization ID (indexed). */ @Query

Re: Concept Question about Ignite

2020-04-08 Thread Anthony
Evgenii , Have you ever happen to measure that, for cross-language marshalling, the performance between JNI and IGNITE? On Tue, Apr 7, 2020 at 3:04 PM Evgenii Zhuravlev wrote: > Anthony, > > Sorry, looks like I missed it. Here is the link: > https://apacheignite.readme.i

Re: C++ ODBC Example Question

2020-04-08 Thread Anthony
? Regards, Anthony On Tue, Apr 7, 2020 at 4:11 AM Ilya Kasnacheev wrote: > Hello! > > Please take a look at this example, it will store Organization from C++: > > https://github.com/apache/ignite/blob/56975c266e7019f307bb9da42333a6db4e47365e/modules/platforms/cpp/examples/put-

Re: Concept Question about Ignite

2020-04-07 Thread Anthony
Hello Evgenii, I foud that the link for More information on CacheConfiguration can be found here: is missing, could you please resend it to me? Also,is there a way to find out which setting is the fastest and minimal overhead? Thanks, Anthony On Tue, Apr 7, 2020 at 11:46 AM Anthony wrote

Re: Concept Question about Ignite

2020-04-07 Thread Anthony
If you want to replicate data fully, you > can set backups to 1 or create cache as Replicated instead of Partitioned. > More information on CacheConfiguration can be found here: > > Best Regards, > Evgenii > > вт, 7 апр. 2020 г. в 10:25, Anthony : > >> Hello, >> &g

Concept Question about Ignite

2020-04-07 Thread Anthony
yCache"); Will Cache be duplicated to the grid in process 2? Thanks, Anthony

C++ ODBC Example Question

2020-04-06 Thread Anthony
5e/modules/platforms/cpp/examples/odbc-example/src/odbc_example.cpp Thanks, Anthony

Re: Error and Question about communication between java node and c++ node

2020-04-03 Thread Anthony
inaryConfiguration in your Java > node's IgniteConfiguration. Tune it until the error goes away. > Please check > https://apacheignite-cpp.readme.io/docs/cross-platform-interoperability > > Regards, > -- > Ilya Kasnacheev > > > пт, 3 апр. 2020 г. в 17:24, Anthony :

Re: Error and Question about communication between java node and c++ node

2020-04-03 Thread Anthony
21:38,870][INFO ][grid-timeout-worker-#23][IgniteKernal] FreeList [name=default##FreeList, buckets=256, dataPages=1, reusePages=0] [2020-04-03 07:22:38,880][INFO ][grid-timeout-worker-#23][IgniteKernal] Metrics for local node (to disable set 'metricsLogFrequency' to 0) ^-- Node [id=db4efc

Error and Question about communication between java node and c++ node

2020-04-02 Thread Anthony
Hello, I am trying to make java node and c++ node communicate with each other. I have successfully done it between two c++ node (which is straight forward). However, when I tried to do a put in java and a get in c++, I got some errors. Could anyone have a look? Thanks. Also, examples of the comm

Re: Need help for Access Violation

2020-02-10 Thread Anthony
ng the same compiler as you use in your project? > > Best Regards, > Igor > > > On Fri, Feb 7, 2020 at 7:39 PM Anthony wrote: > >> Hello, >> The "usrCp" value is >> NameValueType >> ▶ usrCp const std::string & >> Seems that the &qu

Re: Need help for Access Violation

2020-02-07 Thread Anthony
Hello, The "usrCp" value is NameValueType ▶ usrCp const std::string & Seems that the "cfg.jvmClassPath" was not set properly? I am not familiar with java environment, should i set some environmental variable? Thank you! Anthony On Fri, Feb 7, 2020 at 5:20 AM Igor Sape

Need help for Access Violation

2020-02-06 Thread Anthony
Hello, I am new to ignite C++. I am using windows 10, VS community. I keep getting Access Violation when I am trying to run the following code. #include #include using namespace ignite; int main() { IgniteConfiguration cfg; Ignite node = Ignition::Start(cfg); std::cout << "node started" << std: