[MDEV-10197] Document what integer in error log means Created: 2016-06-08 Updated: 2016-06-15 Resolved: 2016-06-15 |
|
| Status: | Closed |
| Project: | MariaDB Server |
| Component/s: | Documentation |
| Fix Version/s: | N/A |
| Type: | Task | Priority: | Major |
| Reporter: | Geoff Montee (Inactive) | Assignee: | Ian Gilfillan |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | documentation, logging | ||
| Description |
|
The error log in MariaDB 10.1 has entries like the following:
What does "140452469635200" mean in this context? It is not documented here: https://mariadb.com/kb/en/mariadb/error-log/ Is this the process ID, as added in this upstream patch? https://bugs.mysql.com/bug.php?id=56240 Or is this some thread ID, as referenced in the MySQL 5.7 documentation?
http://dev.mysql.com/doc/refman/5.7/en/error-log.html |
| Comments |
| Comment by Valerii Kravchuk [ 2016-06-09 ] | |||||||||||||||
|
In current 10.1 code from GitHub I see the following call eventually (line 8399 in sql/log.cc):
So, this is thread ID as pthread_self() shows, see http://linux.die.net/man/3/pthread_self. | |||||||||||||||
| Comment by Ian Gilfillan [ 2016-06-15 ] | |||||||||||||||
|
A description of the error log format has been added to the documentation |