Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
-
Docs Required, Release Notes Required
Description
With Apache Ignite Release 2.9.1,I created a table using jdbc connection and enabled partition awareness. I found that partition awareness took effect when I query data, and the query speed became faster, but when I inserted data, The client always cannot obtain the corresponding partition information sent by the server, but each query will go through the process of partition perception computing node id, but the partition information is null and cannot be calculated.I think the above process of inserting data through partition perception is redundant , because it doesn’t work, it slows down my data insertion speed.
This is my connection information: jdbc:ignite:thin://ignite-0.ignite:10800,ignite-1.ignite:10800,ignite-2.ignite:10800,ignite-3.ignite:10800,ignite-4.ignite:10800?partitionAwareness=true
This is my table information:create table demo(id varchar,name varchar ,PRIMARY KEY (id));
insert into demo(id,name) values (?,?)
select id,name from demo where id = ?
I am not sure if there is a problem with my use, or if it has other uses