SET
Syntax
Most of the following tests are done on Linux with the MySQL benchmarks, but they should give some indication for other operating systems and workloads.
You get the fastest executable when you link with -static
.
On Linux, you will get the fastest code when compiling with pgcc
and -O3
. To compile `sql_yacc.cc' with these options, you
need about 200M memory because gcc/pgcc
needs a lot of memory to
make all functions inline. You should also set CXX=gcc
when
configuring MySQL to avoid inclusion of the libstdc++
library (it is not needed). Note that with some versions of pgcc
,
the resulting code will only run on true Pentium processors, even if you
use the compiler option that you want the resulting code to be working on
all x586 type processors (like AMD).
By just using a better compiler and/or better compiler options you can get a 10-30% speed increase in your application. This is particularly important if you compile the SQL server yourself!
We have tested both the Cygnus CodeFusion and Fujitsu compilers, but when we tested them, neither was sufficiently bug free to allow MySQL to be compiled with optimisations on.
When you compile MySQL you should only include support for the
character sets that you are going to use. (Option --with-charset=xxx
.)
The standard MySQL binary distributions are compiled with support
for all character sets.
Here is a list of some measurements that we have done:
pgcc
and compile everything with -O6
, the
mysqld
server is 1% faster than with gcc
2.95.2.
-static
), the result is 13%
slower on Linux. Note that you still can use a dynamic linked
MySQL library. It is only the server that is critical for
performance.
mysqld
binary with strip libexec/mysqld
,
the resulting binary can be up to 4% faster.
localhost
,
MySQL will, by default, use sockets.)
--with-debug=full
, you will lose 20% for
most queries. Some queries may take substantially longer (for example,
the MySQL benchmarks ran 35% slower). If you use --with-debug
,
then you will only lose 15%. For a mysqld
version that has
been compiled with --with-debug=full
, you can disable memory
checking at runtime by starting it with the --skip-safemalloc
option. The end result in this case should be close to when configuring
with --with-debug
.
gcc
3.2
gcc
2.95.2 for UltraSPARC with the option
-mcpu=v8 -Wa,-xarch=v8plusa
gives 4% more performance.
--log-bin
makes mysqld 1% slower.
-fomit-frame-pointer
or -fomit-frame-pointer -ffixed-ebp
makes mysqld
1-4% faster.
The MySQL-Linux distribution provided by MySQL AB used
to be compiled with pgcc
, but we had to go back to regular gcc
because of a bug in pgcc
that would generate the code that does
not run on AMD. We will continue using gcc until that bug is resolved.
In the meantime, if you have a non-AMD machine, you can get a faster
binary by compiling with pgcc
. The standard MySQL
Linux binary is linked statically to get it faster and more portable.
Posted by mysql on Wednesday February 19 2003, @4:10am | [Delete] [Edit] |
Did anyone compile MySQL with Intel Compiler for Linux and did some comparing/benchmarking ?
Posted by [name withheld] on Friday April 25 2003, @5:15am | [Delete] [Edit] |
> If you connect using TCP/IP from another computer over a 100M Ethernet, things will be 8-11% slower.
Slower than what? Slower than if connected to localhost via TCP/IP or locally via unix socket?