Re: Does the JDBC thin driver support partition aware execution of INSERT statements?

2024-08-28 Thread Pavel Tupitsyn
JDBC driver does support partition awareness [1] And it works for INSERT statements too, as I understand [2] > When a query is executed for the first time, the driver receives the partition distribution for the table > that is being queried and saves it for future use locally. > When you query thi

Re: Does the JDBC thin driver support partition aware execution of INSERT statements?

2024-08-28 Thread Jeremy McMillan
Probably not in the way you might expect from the question. From the documentation: "The driver connects to one of the cluster nodes and forwards all the queries to it for final execution. The node handles the query distribution and the result’s aggregations. Then the result is sent back to the cli

Does the JDBC thin driver support partition aware execution of INSERT statements?

2024-08-28 Thread 38797715
Does the JDBC thin driver support partition aware execution of INSERT statements?