Hello Team
Does anyone have any published benchmark results of JDBC vs the Java API? Firstly Im aware of https://github.com/thulab/iotdb-benchmark but I dont see any published results for the various API methods. I currently use JDBC for my non-realtime ingestion of data and while Ive never encountered any bottle necks I am aware that the documentation says that JDBC is not recommended for high velocity data. Ive done some very basic ingestions benchmarking tests of inserting 1 million rows and the Java API is around 2x faster. Is this the typical improvement between JDBC and Java API? For my simplistic test I am inserting 1 millions rows of timestamp & incrementing row id eg insert into root.sg1.d1(timestamp,s1) values(${DateTime.Now}, ${n}) With JDBC I get around 6000 rows per second. With the Java native API I get around 12000 rows per second using session.executeNonQueryStatement. I assume insertTablets and insertRecord(s) would be even faster? Thanks Trevor Hart
