Details
-
Task
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
3.0.7
Description
Hello
I'm migrating from mysql connector J to mariadb connector J.
I have some legacy projects using server side prepared statements.
I have read Marias' connector source code both 2.x and 3.x.
Maria's connector documentation states the following about useServerPrepStmts
The applications that repeatedly use the same queries have value to activate this option, but the general case is to use the direct command (text protocol)
|
My question is : why is the general case documented as set to use the direct command ?
AFAIU binary protocol is better because it has less overhead and execution benefits from a cached execution plan. There is also a safe upper limit of 8192 bytes (on the connector side when clientPrepStmts are used) so cached ones do not add much memory usage.
Of course preparing triggers a prepare & execute instead of a raw query. I'm not sure it may alter performances.
Or is the text protocol just "safer" or "better" ? Is it to avoid cache misshits ?
Thanks
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Fix Version/s | 3.0 [ 25708 ] |
Link | This issue is part of MENT-51 [ MENT-51 ] |
Fix Version/s | N/A [ 22125 ] | |
Fix Version/s | 3.0 (EOL) [ 25708 ] | |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Link | This issue is part of MENT-51 [ MENT-51 ] |
Text is a globaly a safe default behavior. Always working without issue.
Binary protocol has usually good benefits, but that depends:
This is totally depending on queries, but here is some numbers i usually see when benchmarking, in order to explain:
Now there is 2 others thing to consider :
MDEV-19237, server now permits to avoid resending metadata when they haven’t changed. This concerns SQL commands that return a resultset, when using option `useServerPrepStmts`. This avoids useless information transiting on the network and parsing those metadata, and that permit huge gain (around 10-30% depending on query, metadata can be huge compare to resultset data)So, if you use a MariaDB server version 10.6, and application doesn't execute completly differents queries, binary protocol (option 'useServerPrepStmts') is recommended.
So, yes good you ask, documentation has to be improved.