1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591
|
system_variable_list = [ ( 'audit_log_buffer_size',
'The size of the audit log buffer',
False,
['Logging/Audit']),
( 'audit_log_connection_policy',
'Audit logging policy for connection-related events',
True,
['Logging/Audit']),
('audit_log_current_session', 'Whether to audit current session', False, []),
( 'audit_log_exclude_accounts',
'Accounts not to audit',
True,
['Logging/Audit']),
( 'audit_log_file',
'The name of the audit log file',
False,
['Logging/Audit']),
('audit_log_flush', 'Close and reopen the audit log file', True, []),
('audit_log_format', 'The audit log file format', False, ['Logging/Audit']),
('audit_log_include_accounts', 'Accounts to audit', True, ['Logging/Audit']),
('audit_log_policy', 'Audit logging policy', True, ['Logging/Audit']),
( 'audit_log_rotate_on_size',
'Close and reopen the audit log file at a certain size',
True,
['Logging/Audit']),
( 'audit_log_statement_policy',
'Audit logging policy for statement-related events',
True,
['Logging/Audit']),
( 'audit_log_strategy',
'The audit logging strategy',
False,
['Logging/Audit']),
( 'auto_generate_certs',
'Whether to autogenerate SSL key and certificate files',
False,
['Security/Security']),
( 'auto_increment_increment',
'AUTO_INCREMENT columns are incremented by this value',
True,
[]),
( 'auto_increment_offset',
'Offset added to AUTO_INCREMENT columns',
True,
[]),
('autocommit', 'Sets the autocommit mode', True, ['General/Transactions']),
( 'automatic_sp_privileges',
'Creating and dropping stored procedures alters ACLs',
True,
[]),
( 'avoid_temporal_upgrade',
'Whether ALTER TABLE should upgrade pre-5.6.4 temporal columns',
True,
[]),
( 'back_log',
'Number of outstanding connection requests MySQL can have',
False,
[]),
( 'backup_elevation',
'Enable or disable BACKUP DATABASE privilege elevation',
False,
['General/Backup']),
( 'backup_history_log',
'Enable or disable MySQL Backup history log',
True,
['General/Backup']),
( 'backup_history_log_file',
'Name of the MySQL Backup history log file',
True,
['General/Backup']),
( 'backup_progress_log',
'Enable or disable MySQL Backup progress log',
True,
['General/Backup']),
( 'backup_progress_log_file',
'Name of the MySQL Backup progress log file',
True,
['General/Backup']),
( 'backup_wait_timeout',
'Number of seconds DDL statements wait for BACKUP DATABASE or RESTORE before aborting',
True,
[]),
( 'backupdir',
'Default backup image file directory',
True,
['General/Backup']),
( 'basedir',
'Path of installation directory',
False,
['General/Directories']),
('bdb-data-direct', 'bdb-data-direct', False, []),
('bdb-home', 'Berkeley DB home directory', False, []),
('bdb-lock-detect', 'Berkeley DB lock detect', False, []),
('bdb-log-direct', 'bdb-log-direct', False, []),
('bdb-logdir', 'Berkeley DB log file directory', False, []),
('bdb-shared-data', 'Start Berkeley DB in multi-process mode', False, []),
('bdb-tmpdir', 'Berkeley DB tempfile name', False, []),
( 'bdb_cache_size',
'The buffer that is allocated to cache index and rows for BDB tables',
False,
[]),
( 'bdb_log_buffer_size',
'The buffer that is allocated to cache index and rows for BDB tables',
False,
[]),
( 'bdb_max_lock',
'The maximum number of locks that can be active for a BDB table',
False,
[]),
( 'big-tables',
'Allow big result sets by saving all temporary sets on file',
True,
[]),
('bind-address', 'IP address or host name to bind to', False, []),
('binlog-format', 'Specifies the format of the binary log', True, []),
( 'binlog_cache_size',
'Size of the cache to hold the SQL statements for the binary log during a transaction',
True,
['Logging/Binlog Options']),
('binlog_checksum', 'Enable/disable binary log checksums', True, []),
( 'binlog_direct_non_transactional_updates',
'Causes updates using statement format to nontransactional engines to be written directly to binary log. See documentation before using.',
True,
['Logging/Binlog Options']),
( 'binlog_error_action',
'Controls what happens when the server cannot write to the binary log.',
True,
['Logging/Binlog Options']),
( 'binlog_group_commit_sync_delay',
'Sets the number of microseconds to wait before synchronizing transactions to disk.',
True,
['Logging/Binlog Options']),
( 'binlog_group_commit_sync_no_delay_count',
'Sets the maximum number of transactions to wait for before aborting the current delay specified by binlog_group_commit_sync_delay.',
True,
['Logging/Binlog Options']),
( 'binlog_gtid_simple_recovery',
'Controls how binary logs are iterated during GTID recovery',
False,
['Logging/Binlog Options']),
( 'binlog_max_flush_queue_time',
'How long to read transactions before flushing to binary log',
True,
[]),
( 'binlog_order_commits',
'Whether to commit in same order as writes to binary log',
True,
[]),
( 'binlog_row_image',
'Use full or minimal images when logging row changes. Allowed values are full, minimal, and noblob.',
True,
['Logging/Binlog Options']),
( 'binlog_rows_query_log_events',
'When TRUE, enables logging of rows query log events in row-based logging mode. FALSE by default. Do not enable when producing logs for pre-5.6.2 replication slaves or other readers.',
True,
[]),
( 'binlog_stmt_cache_size',
'Size of the cache to hold nontransactional statements for the binary log during a transaction',
True,
['Logging/Binlog Options']),
( 'binlogging_impossible_mode',
'Deprecated and will be removed in a future version. Use the renamed binlog_error_action instead.',
True,
['Logging/Binlog Options']),
( 'block_encryption_mode',
'Mode for block-based encryption algorithms',
True,
['Security/Security']),
( 'bulk_insert_buffer_size',
'Size of tree cache used in bulk insert optimization',
True,
['Advanced/Various']),
('character-set-filesystem', 'Set the file system character set', True, []),
('character-set-server', 'Specify default character set', True, []),
( 'character-sets-dir',
'Directory where character sets are installed',
False,
[]),
('character_set', 'The default character set', False, []),
('character_set_client', 'Current client character set', True, []),
('character_set_connection', 'Current connection character set', True, []),
( 'character_set_database',
'The character set used by the default database',
True,
[]),
('character_set_results', 'Current result character set', True, []),
( 'character_set_system',
'The character set used by the server for storing identifiers',
False,
[]),
( 'check_proxy_users',
'Whether built-in authentication plugins do proxying',
True,
[]),
('collation-server', 'Specify default collation', True, []),
('collation_connection', 'The collation of the connection', True, []),
( 'collation_database',
'The collation used by the default database',
True,
[]),
( 'completion_type',
'Default completion type',
True,
['Advanced/Transactions']),
( 'concurrent_insert',
'Use concurrent insert with MyISAM',
True,
['MyISAM/General']),
( 'connect_timeout',
"Number of seconds the mysqld server waits for a connect packet before responding with 'Bad handshake'",
True,
['Networking/Timeout Settings']),
('core_file', 'Write core file on server crashes', False, []),
( 'create_old_temporals',
'Use pre-5.6.4 storage format for temporal types when creating tables. Intended for use in replication and upgrades/downgrades between NDB 7.2 and NDB 7.3/7.4.',
False,
[]),
('daemon_memcached_enable_binlog', '', False, ['Other/Memcached']),
( 'daemon_memcached_engine_lib_name',
'Specifies the shared library that implements the InnoDB memcached plugin',
False,
['Other/Memcached']),
( 'daemon_memcached_engine_lib_path',
'Path of directory that contains the shared library that implements the InnoDB memcached plugin',
False,
['Other/Memcached']),
( 'daemon_memcached_option',
'Space-separated options that are passed to the underlying memcached daemon on startup',
False,
['Other/Memcached']),
( 'daemon_memcached_r_batch_size',
'Specifies how many memcached read operations to perform before doing a COMMIT to start a new transaction',
False,
['Other/Memcached']),
( 'daemon_memcached_w_batch_size',
'Specifies how many memcached write operations to perform before doing a COMMIT to start a new transaction',
False,
['Other/Memcached']),
('datadir', 'Path of data directory', False, ['General/Directories']),
('date_format', 'The DATE format (unused)', False, []),
('datetime_format', 'The DATETIME/TIMESTAMP format (unused)', False, []),
( 'debug',
'Output debug log; supported only if MySQL was built with debugging support',
True,
['Advanced/General']),
('debug_sync', 'Interface to Debug Sync facility', True, []),
( 'default-storage-engine',
'The default storage engine (table type) for tables',
True,
[]),
( 'default_authentication_plugin',
'The default authentication plugin',
False,
['Security/Authentication']),
( 'default_password_lifetime',
'Age in days when passwords effectively expire',
True,
['Security/Authentication']),
( 'default_tmp_storage_engine',
'The default storage engine (table type) for TEMPORARY tables',
True,
['General/General']),
( 'default_week_format',
'The default week format used by WEEK() functions',
True,
['General/International']),
('delay-key-write', 'Type of DELAY_KEY_WRITE', True, []),
( 'delayed_insert_limit',
'After inserting delayed_insert_limit rows, the INSERT DELAYED handler will check if there are any SELECT statements pending. If so, it allows these to execute before continuing',
True,
['Advanced/Insert delayed settings']),
( 'delayed_insert_timeout',
'How many seconds an INSERT DELAYED thread should wait for INSERT statements before terminating',
True,
['Advanced/Insert delayed settings']),
( 'delayed_queue_size',
'What size queue (in rows) should be allocated for handling INSERT DELAYED',
True,
['Advanced/Insert delayed settings']),
( 'disable-gtid-unsafe-statements',
'Obsolete: Replaced by --enforce-gtid-consistency in MySQL 5.6.9.',
False,
['Replication/General']),
( 'disable_gtid_unsafe_statements',
'Obsolete: Replaced by enforce_gtid_consistency in MySQL 5.6.9.',
False,
['Replication/General']),
( 'disabled_storage_engines',
'Storage engines that cannot be used to create tables',
False,
[]),
( 'disconnect_on_expired_password',
'Whether the server disconnects clients with expired passwords if clients cannot handle such accounts',
False,
['Security/Authentication']),
( 'div_precision_increment',
"Scale of the result of '/' operator will be increased by this many digits",
True,
['Advanced/General']),
( 'end_markers_in_json',
'Whether optimizer JSON output should add end markers',
True,
[]),
( 'enforce-gtid-consistency',
'Prevents execution of statements that cannot be logged in a transactionally safe manner',
False,
['Replication/General']),
( 'enforce_gtid_consistency',
'Prevents execution of statements that cannot be logged in a transactionally safe manner',
False,
['Replication/General']),
( 'engine-condition-pushdown',
'Push supported query conditions to the storage engine',
True,
[]),
( 'eq_range_index_dive_limit',
'The cutoff for switching from index dives to index statistics',
True,
[]),
('error_count', 'Number of errors', False, []),
( 'event-scheduler',
'Enable/disable and start/stop the event scheduler. Note that this variable underwent significant changes in behavior and permitted values in MySQL 5.1.11 and 5.1.12',
True,
[]),
( 'executed_gtids_compression_period',
'Deprecated and will be removed in a future version. Use the renamed gtid_executed_compression_period instead.',
True,
[]),
( 'expire_logs_days',
'If nonzero, binary logs will be purged after expire_logs_days days; possible purges happen at startup and at binary log rotation',
True,
['Logging/Advanced log options']),
( 'explicit_defaults_for_timestamp',
'Whether TIMESTAMP columns are nullable and have DEFAULT NULL',
False,
['General/SQL']),
('external_user', 'The external proxy user', False, []),
( 'falcon_checkpoint_schedule',
'Sets the frequency that in-memory structures are synchronized to disk',
True,
[]),
('falcon_checksums', 'Enable Falcon checksum validation', True, []),
( 'falcon_consistent_read',
'Sets the repeatable read isolation mode',
True,
[]),
( 'falcon_debug_mask',
'Sets the log information written to the standard output by the Falcon engine in the event of an error',
True,
[]),
( 'falcon_debug_server',
'Specifies whether the debug server should be enabled.',
False,
[]),
('falcon_disable_fsync', 'Disables the periodic fsync operation.', True, []),
('falcon_gopher_threads', 'Sets the number of gopher threads', False, []),
( 'falcon_index_chill_threshold',
'Number of megabytes of pending index data that should be stored until the data is flushed to the serial log',
True,
[]),
( 'falcon_initial_allocation',
'Initial size of a Falcon tablespace file when created',
True,
[]),
('falcon_io_threads', 'Number of asynchronous I/O threads', True, []),
( 'falcon_large_blob_threshold',
'Blobs smaller than this value are stored in data pages not blob pages',
False,
[]),
( 'falcon_lock_wait_timeout',
'Number of seconds Falcon will force one transaction to wait on another',
True,
[]),
( 'falcon_max_transaction_backlog',
'falcon_max_transaction_backlog',
True,
[]),
( 'falcon_page_cache_size',
'Size of the memory cache (in bytes) for pages from the tablespace file',
False,
[]),
( 'falcon_page_size',
'Size of the pages (in bytes) used to store information within the tablespace',
False,
[]),
( 'falcon_record_chill_threshold',
'Number of megabytes of pending record data stored before flushing the records to the serial log',
True,
[]),
( 'falcon_record_memory_max',
'Maximum amount of memory (in bytes) that will be allocated for caching record data',
True,
[]),
( 'falcon_record_scavenge_floor',
'Percentage of falcon_record_scavenge_threshold that will be retained in the record cache after a scavenge',
True,
[]),
( 'falcon_record_scavenge_threshold',
'Percentage of falcon_record_memory_max that will cause the scavenger thread to start removing old generations of records from the record cache',
True,
[]),
('falcon_scavenge_schedule', 'Record scavenging threshold', False, []),
( 'falcon_serial_log_buffers',
'Memory windows (1MB each) allocated for the Falcon serial log',
False,
[]),
( 'falcon_serial_log_dir',
'Location for the Falcon serial log files',
False,
[]),
( 'falcon_serial_log_priority',
'Set the priority for writing the Falcon serial log',
True,
[]),
( 'falcon_support_xa',
'Enables two-phase commit for Falcon tables',
False,
[]),
( 'falcon_use_deferred_index_hash',
'Use a deferred index hash lookup',
False,
[]),
( 'falcon_use_sectorcache',
'Use the sector cache for reading blocks from disk',
False,
[]),
('falcon_use_supernodes', 'Use index supernodes', False, []),
( 'flush',
'Flush tables to disk between SQL statements',
True,
['Advanced/General']),
( 'flush_time',
'A dedicated thread is created to flush all tables at the given interval',
True,
['Advanced/General']),
( 'foreign_key_checks',
'If set to 1 (the default), foreign key constraints for InnoDB tables are checked.',
True,
[]),
( 'ft_boolean_syntax',
'List of operators for MATCH ... AGAINST ( ... IN BOOLEAN MODE)',
True,
['MyISAM/Fulltext search']),
( 'ft_max_word_len',
'The maximum length of the word to be included in a FULLTEXT index. Note: FULLTEXT indexes must be rebuilt after changing this variable',
False,
['MyISAM/Fulltext search']),
( 'ft_min_word_len',
'The minimum length of the word to be included in a FULLTEXT index. Note: FULLTEXT indexes must be rebuilt after changing this variable',
False,
['MyISAM/Fulltext search']),
( 'ft_query_expansion_limit',
'Number of best matches to use for query expansion',
False,
['MyISAM/Fulltext search']),
( 'ft_stopword_file',
'Use stopwords from this file instead of built-in list',
False,
['MyISAM/Fulltext search']),
('general-log', 'Enable|disable general log', True, []),
( 'general_log_file',
'Name of the general query log file',
True,
['Logging/General']),
( 'group_concat_max_len',
'The maximum length of the result of function group_concat',
True,
['Advanced/Various']),
( 'gtid-mode',
'Controls whether GTID based logging is enabled and what type of transactions the logs can contain',
False,
[]),
( 'gtid_done',
'Obsolete: Replaced by gtid_executed in MySQL 5.6.9.',
False,
[]),
( 'gtid_executed',
'Global: All GTIDs in the binary log (global) or current transaction (session). Read-only.',
False,
[]),
( 'gtid_executed_compression_period',
'Compress gtid_executed table each time this many transactions have occurred. 0 means never compress this table. Applies only when binary logging is disabled.',
True,
[]),
( 'gtid_lost',
'Obsolete: Replaced by gtid_purged in MySQL 5.6.9.',
False,
[]),
( 'gtid_mode',
'Controls whether GTID based logging is enabled and what type of transactions the logs can contain',
False,
[]),
( 'gtid_next',
'Specifies the GTID for the next statement to execute. See documentation for details.',
True,
[]),
( 'gtid_owned',
'The set of GTIDs owned by this client (session), or by all clients, together with the thread ID of the owner (global). Read-only.',
False,
[]),
( 'gtid_purged',
'The set of all GTIDs that have been purged from the binary log.',
True,
[]),
('have_archive', 'Whether mysqld supports archive tables', False, []),
('have_bdb', 'Is Berkeley DB supported', False, []),
( 'have_blackhole_engine',
'Whether mysqld supports BLACKHOLE tables',
False,
[]),
( 'have_community_features',
'Whether statement profiling capability is available',
False,
[]),
('have_compress', 'Availability of the zlib compression library', False, []),
('have_crypt', 'Availability of the crypt() system call', False, []),
('have_csv', 'Whether mysqld supports csv tables', False, []),
( 'have_dynamic_loading',
'Whether mysqld supports dynamic loading of plugins',
False,
[]),
('have_example_engine', 'Whether mysqld supports EXAMPLE tables', False, []),
( 'have_federated_engine',
'Whether mysqld supports FEDERATED tables',
False,
[]),
('have_geometry', 'Whether mysqld supports spatial data types', False, []),
('have_innodb', 'Whether mysqld supports InnoDB tables', False, []),
('have_isam', 'Whether mysqld supports isam tables', False, []),
('have_merge_engine', 'Whether mysqld supports merge tables', False, []),
( 'have_ndbcluster',
'Whether mysqld supports NDB Cluster tables (set by --ndbcluster option)',
False,
[]),
('have_openssl', 'Whether mysqld supports SSL connections', False, []),
('have_partition_engine', 'Whether mysqld supports partitioning', False, []),
('have_partitioning', 'Whether mysqld supports partitioning', False, []),
( 'have_profiling',
'Whether statement profiling capability is available',
False,
[]),
('have_query_cache', 'Whether mysqld supports query cache', False, []),
('have_raid', 'Whether mysqld supports the raid option', False, []),
( 'have_row_based_replication',
'Shows whether row-based replication is supported',
False,
[]),
( 'have_rtree_keys',
'YES if RTREE indexes are available, NO if not. (These are used for spatial indexes in MyISAM tables.)',
False,
[]),
('have_ssl', 'Whether mysqld supports SSL connections', False, []),
( 'have_statement_timeout',
'Whether statement execution timeout is available',
False,
[]),
('have_symlink', 'Is symbolic link support enabled', False, []),
('host_cache_size', 'Size of the host cache', True, []),
('hostname', 'The name of the server host', False, []),
( 'identity',
'This variable is a synonym for the LAST_INSERT_ID variable. It exists for compatibility with other database systems',
True,
[]),
('ignore-builtin-innodb', 'Ignore the built-in InnoDB', False, []),
( 'ignore_db_dirs',
'Directories treated as nondatabase directories',
False,
[]),
('init-file', 'Read SQL statements from this file at startup', False, []),
( 'init_connect',
'Statements that are executed for each new connection',
True,
['Advanced/General']),
( 'init_slave',
'Statements that are executed when a slave connects to a master',
True,
['Advanced/General', 'Replication/Slave']),
( 'innodb_adaptive_flushing',
'Control InnoDB adaptive flushing of dirty pages',
True,
['InnoDB/General']),
( 'innodb_adaptive_flushing_lwm',
'Low water mark representing percentage of redo log capacity at which adaptive flushing is enabled.',
True,
['InnoDB/General']),
( 'innodb_adaptive_hash_index',
'Enable or disable InnoDB adaptive hash indexes',
False,
['InnoDB/General']),
( 'innodb_adaptive_hash_index_parts',
'Partitions the adaptive hash index search system into n partitions, with each partition protected by a separate latch. Each index is bound to a specific partition based on space ID and index ID attributes.',
False,
['InnoDB/General']),
( 'innodb_adaptive_max_sleep_delay',
'Allows InnoDB to automatically adjust the value of innodb_thread_sleep_delay up or down according to the current workload',
True,
['InnoDB/General']),
( 'innodb_api_bk_commit_interval',
'How often to auto-commit idle connections that use the InnoDB memcached interface, in seconds.',
True,
['InnoDB/General']),
('innodb_api_disable_rowlock', '', False, ['InnoDB/General']),
( 'innodb_api_enable_binlog',
'Lets you use the InnoDB memcached plugin with the MySQL binary log',
False,
['InnoDB/General']),
( 'innodb_api_enable_mdl',
'Locks the table used by the InnoDB memcached plugin, so that it cannot be dropped or altered by DDL through the SQL interface',
False,
['InnoDB/General']),
( 'innodb_api_trx_level',
'Lets you control the transaction isolation level on queries processed by the memcached interface',
True,
['InnoDB/General']),
( 'innodb_autoextend_increment',
'Data file autoextend increment in megabytes',
True,
['InnoDB/General']),
( 'innodb_autoinc_lock_mode',
'Set InnoDB auto-increment lock mode',
False,
['InnoDB/General']),
( 'innodb_background_drop_list_empty',
'This debug option delays table creation until the background drop list is empty.',
True,
['InnoDB/General']),
( 'innodb_buffer_pool_awe_mem_mb',
'If Windows AWE is used, size in Megabytes of InnoDB buffer pool allocated from the AWE memory',
False,
['InnoDB/Buffer pool']),
( 'innodb_buffer_pool_chunk_size',
'Defines the chunk size that is used when resizing the buffer pool dynamically.',
False,
['InnoDB/Buffer pool']),
( 'innodb_buffer_pool_dump_at_shutdown',
'Specifies whether to record the pages cached in the InnoDB buffer pool when the MySQL server is shut down, to shorten the warmup process at the next restart',
True,
['InnoDB/Buffer pool']),
( 'innodb_buffer_pool_dump_now',
'Immediately records the pages cached in the InnoDB buffer pool',
True,
['InnoDB/Buffer pool']),
( 'innodb_buffer_pool_dump_pct',
'Specifies the percentage of the most recently used pages for each buffer pool to read out and dump.',
True,
['InnoDB/General']),
( 'innodb_buffer_pool_filename',
'Specifies the file that holds the list of page numbers produced by innodb_buffer_pool_dump_at_shutdown or innodb_buffer_pool_dump_now',
True,
['InnoDB/Buffer pool']),
( 'innodb_buffer_pool_instances',
'Specifies how many parts the InnoDB buffer pool is divided into',
False,
['InnoDB/Buffer pool', 'InnoDB/Memory']),
( 'innodb_buffer_pool_load_abort',
'Interrupts process of restoring InnoDB buffer pool contents triggered by innodb_buffer_pool_load_at_startup or innodb_buffer_pool_load_now',
True,
['InnoDB/Buffer pool']),
( 'innodb_buffer_pool_load_at_startup',
'Specifies that, on MySQL server startup, the InnoDB buffer pool is automatically "warmed up" by loading the same pages it held at an earlier time',
False,
['InnoDB/Buffer pool']),
( 'innodb_buffer_pool_load_now',
'Immediately "warms up" the InnoDB buffer pool by loading a set of data pages, without waiting for a server restart',
True,
['InnoDB/Buffer pool']),
( 'innodb_buffer_pool_size',
'Size of the memory buffer InnoDB uses to cache data and indexes of its tables',
False,
['InnoDB/Buffer pool', 'InnoDB/Memory']),
( 'innodb_change_buffer_max_size',
'Maximum size for the InnoDB change buffer, as a percentage of the total size of buffer pool',
True,
['InnoDB/General']),
( 'innodb_change_buffering',
'Whether InnoDB performs insert buffering.',
True,
['InnoDB/General']),
( 'innodb_change_buffering_debug',
'Sets a debug flag for InnoDB change buffering',
True,
['InnoDB/General']),
( 'innodb_checksum_algorithm',
'Specifies how to generate and verify the checksum stored in each disk block of each InnoDB tablespace',
True,
['InnoDB/General']),
( 'innodb_checksums',
'Enable InnoDB checksums validation',
False,
['InnoDB/General']),
( 'innodb_cmp_per_index_enabled',
'Enables per-index compression-related statistics in the INFORMATION_SCHEMA.INNODB_CMP_PER_INDEX table',
True,
['InnoDB/General']),
( 'innodb_commit_concurrency',
'Helps in performance tuning in heavily concurrent environments',
True,
['InnoDB/General']),
( 'innodb_compress_debug',
'Compresses all tables using a specified compression algorithm',
True,
['InnoDB/General']),
( 'innodb_compression_failure_threshold_pct',
'Sets the cutoff point at which MySQL begins adding padding within compressed pages to avoid expensive compression failures',
True,
['InnoDB/General']),
( 'innodb_compression_level',
'Specifies the level of zlib compression to use for InnoDB compressed tables and indexes',
True,
['InnoDB/General']),
( 'innodb_compression_pad_pct_max',
'Specifies the maximum percentage that can be reserved as free space within each compressed page, to avoid compression failures when tightly packed data is recompressed',
True,
['InnoDB/General']),
( 'innodb_concurrency_tickets',
'Number of times a thread is allowed to enter InnoDB within the same SQL query after it has once got the ticket',
True,
['InnoDB/General']),
( 'innodb_create_intrinsic',
'Enable this option to create performance-optimized temporary tables using CREATE TEMPORY TABLE syntax',
True,
['InnoDB/General']),
( 'innodb_data_file_path',
'Path to individual files and their sizes',
False,
['InnoDB/Datafiles']),
( 'innodb_data_home_dir',
'The common part for InnoDB table spaces',
False,
['InnoDB/Datafiles']),
( 'innodb_default_row_format',
'Defines the default row format (ROW_FORMAT) for InnoDB tables.',
True,
['InnoDB/General']),
( 'innodb_disable_sort_file_cache',
'Disable OS file system cache for merge-sort temporary files',
True,
['InnoDB/General']),
( 'innodb_disable_resize_buffer_pool_debug',
'Disables resizing of the InnoDB buffer pool',
True,
['InnoDB/General']),
( 'innodb_doublewrite',
'Enable InnoDB doublewrite buffer',
False,
['InnoDB/General']),
( 'innodb_extra_dirty_writes',
'Whether to flush dirty buffer pages when the percentage of dirty pages is less than the maximum dirty percent',
False,
['InnoDB/General']),
( 'innodb_fast_shutdown',
'Speeds up the shutdown process of the InnoDB storage engine',
True,
['InnoDB/Various']),
( 'innodb_fil_make_page_dirty_debug',
'Dirties the first page of the specified tablespace',
True,
[]),
( 'innodb_file_format',
'The format for new InnoDB tables',
True,
['InnoDB/Datafiles']),
( 'innodb_file_format_check',
'Whether InnoDB performs file format compatibility checking',
True,
['InnoDB/Datafiles']),
( 'innodb_file_format_max',
'The file format tag in the shared tablespace',
True,
['InnoDB/Datafiles']),
( 'innodb_file_io_threads',
'Number of file I/O threads in InnoDB',
False,
['InnoDB/General']),
( 'innodb_file_per_table',
'Stores each InnoDB table and its indexes in a separate .ibd file in the database directory',
False,
['InnoDB/General']),
( 'innodb_fill_factor',
'Defines the percentage B-tree leaf and non-leaf page space that is to be filled with data. The remaining space is reserved for future growth.',
True,
['InnoDB/General']),
( 'innodb_flush_log_at_timeout',
'Write and flush logs every N seconds',
True,
[]),
( 'innodb_flush_log_at_trx_commit',
'Set to 0 (write and flush once per second), 1 (write and flush at each commit) or 2 (write at commit, flush once per second)',
True,
['InnoDB/Logfiles']),
( 'innodb_flush_method',
'Specifies to flush data',
False,
['InnoDB/Logfiles']),
( 'innodb_flush_neighbors',
'Specifies whether flushing a page from the InnoDB buffer pool also flushes other dirty pages in the same extent',
True,
['InnoDB/Logfiles']),
( 'innodb_flush_sync',
'Enable innodb_flush_sync to ignore the innodb_io_capacity setting for bursts of I/O activity that occur at checkpoints. Disable innodb_flush_sync to adhere to the limit on I/O activity defined by the innodb_io_capacity setting.',
True,
['InnoDB/Logfiles']),
( 'innodb_flushing_avg_loops',
'Number of iterations for which InnoDB keeps the previously calculated snapshot of the flushing state, controlling how quickly adaptive flushing responds to changing workloads',
True,
['InnoDB/General']),
( 'innodb_force_load_corrupted',
'Lets InnoDB load tables at startup that are marked as corrupted; use only during troubleshooting',
False,
['InnoDB/General']),
( 'innodb_force_recovery',
'Helps to save your data in case the disk image of the database becomes corrupt',
False,
['InnoDB/General']),
( 'innodb_ft_aux_table',
'Specifies which InnoDB table with a FULLTEXT index to examine by querying several innodb_ft_* tables in the information_schema',
True,
['InnoDB/Fulltext search']),
( 'innodb_ft_cache_size',
'Size of the cache that holds a parsed document in memory while creating an InnoDB FULLTEXT index',
False,
['InnoDB/Fulltext search']),
( 'innodb_ft_enable_diag_print',
'Whether to enable additional full-text search diagnostic output',
True,
['InnoDB/Fulltext search']),
( 'innodb_ft_enable_stopword',
'During creation of an InnoDB FULLTEXT index, omits stopwords from the search index',
True,
['InnoDB/Fulltext search']),
( 'innodb_ft_max_token_size',
'Maximum length of words that are stored in an InnoDB FULLTEXT index',
False,
['InnoDB/Fulltext search']),
( 'innodb_ft_min_token_size',
'Minimum length of words that are stored in an InnoDB FULLTEXT index',
False,
['InnoDB/Fulltext search']),
( 'innodb_ft_num_word_optimize',
'Number of words to process during each OPTIMIZE TABLE operation on an InnoDB FULLTEXT index',
True,
['InnoDB/Fulltext search']),
( 'innodb_ft_result_cache_limit',
'The InnoDB FULLTEXT search query result cache limit.',
True,
['InnoDB/Fulltext search']),
( 'innodb_ft_server_stopword_table',
'Specifies a table holding a list of stopwords for InnoDB FULLTEXT indexes, which overrides the default stopword list and can be overridden by innodb_ft_user_stopword_table',
True,
['InnoDB/Fulltext search']),
( 'innodb_ft_sort_pll_degree',
'Number of threads used to create an InnoDB FULLTEXT index in parallel, when building a search index for a large table',
False,
['InnoDB/Fulltext search']),
( 'innodb_ft_total_cache_size',
'The total memory allocated for the InnoDB FULLTEXT search index cache.',
False,
['InnoDB/Fulltext search']),
( 'innodb_ft_user_stopword_table',
'Specifies a table holding a list of stopwords for InnoDB FULLTEXT indexes, which overrides the default stopword list and also innodb_ft_server_stopword_table',
True,
['InnoDB/Fulltext search']),
( 'innodb_io_capacity',
'The limit on the maximum number of I/O operations per second',
False,
['InnoDB/General']),
( 'innodb_io_capacity_max',
'The limit up to which InnoDB is allowed to extend the innodb_io_capacity setting in case of emergency',
True,
['InnoDB/General']),
( 'innodb_large_prefix',
'Enables longer keys for column prefix indexes',
True,
['InnoDB/General']),
( 'innodb_limit_optimistic_insert_debug',
'Limits the number of records per B-tree page',
True,
['InnoDB/General']),
( 'innodb_lock_wait_timeout',
'Timeout in seconds an InnoDB transaction may wait for a lock before a rollback occurs',
False,
['InnoDB/General']),
( 'innodb_locks_unsafe_for_binlog',
'Force InnoDB not to use next-key locking. Instead use only row-level locking',
False,
['InnoDB/General']),
( 'innodb_log_arch_dir',
'Where full logs should be archived',
False,
['InnoDB/Logfiles']),
('innodb_log_archive', 'Unused', False, ['InnoDB/Logfiles']),
( 'innodb_log_buffer_size',
'Size of buffer which InnoDB uses to write log to the log files on disk',
False,
['InnoDB/Logfiles']),
( 'innodb_log_checksum_algorithm',
'Specifies how to generate and verify the checksum stored in each redo log disk block',
True,
['InnoDB/Logfiles']),
( 'innodb_log_checksums',
'Enables or disables checksums for redo log pages.',
True,
['InnoDB/Logfiles']),
( 'innodb_log_compressed_pages',
'Specifies whether images of re-compressed pages are stored in InnoDB redo logs',
True,
['InnoDB/Logfiles']),
( 'innodb_log_file_size',
'Size of each log file in a log group',
False,
['InnoDB/Logfiles']),
( 'innodb_log_files_in_group',
'Number of InnoDB log files in the log group',
False,
['InnoDB/Logfiles']),
( 'innodb_log_group_home_dir',
'Path to InnoDB log files',
False,
['InnoDB/Logfiles']),
( 'innodb_log_write_ahead_size',
'The write-ahead block size for the redo log.',
True,
['InnoDB/Logfiles']),
( 'innodb_lru_scan_depth',
'Influences the algorithms and heuristics for the flush operation for the InnoDB buffer pool',
True,
['InnoDB/General']),
( 'innodb_max_dirty_pages_pct',
'Percentage of dirty pages allowed in bufferpool',
True,
['InnoDB/General']),
( 'innodb_max_dirty_pages_pct_lwm',
'Low water mark representing percentage of dirty pages where preflushing is enabled to control the dirty page ratio',
True,
['InnoDB/General']),
( 'innodb_max_merged_io',
'The maximum number of background I/O requests to merge to issue a larger I/O request',
False,
['InnoDB/General']),
( 'innodb_max_purge_lag',
'Desired maximum length of the purge queue (0 = no limit)',
True,
['InnoDB/General']),
( 'innodb_max_purge_lag_delay',
'Specifies the maximum delay in milliseconds for the formula calculated using the innodb_max_purge_lag configuration option',
True,
['InnoDB/General']),
( 'innodb_max_undo_log_size',
'Sets the threshold for truncating the InnoDB undo log',
True,
['InnoDB/General']),
( 'innodb_additional_mem_pool_size',
'Size of a memory pool InnoDB uses to store data dictionary information and other internal data structures',
False,
['InnoDB/Memory']),
( 'innodb_merge_threshold_set_all_debug',
'Overrides the current MERGE_THRESHOLD setting with the specified value for all indexes that are currently in the dictionary cache',
True,
[]),
( 'innodb_mirrored_log_groups',
'Obsolete setting; do not use',
False,
['InnoDB/Logfiles']),
( 'innodb_monitor_disable',
'Turns off one or more counters in the information_schema.innodb_metrics table',
True,
['InnoDB/General']),
( 'innodb_monitor_enable',
'Turns on one or more counters in the information_schema.innodb_metrics table',
True,
['InnoDB/General']),
( 'innodb_monitor_reset',
'Resets to zero the count value for one or more counters in the information_schema.innodb_metrics table',
True,
['InnoDB/General']),
( 'innodb_monitor_reset_all',
'Resets all values (minimum, maximum, and so on) for one or more counters in the information_schema.innodb_metrics table',
True,
['InnoDB/General']),
( 'innodb_numa_interleave',
'Enables the NUMA MPOL_INTERLEAVE memory policy for allocation of the InnoDB buffer pool',
False,
['InnoDB/General']),
( 'innodb_old_blocks_pct',
'Percentage of the InnoDB buffer pool to reserve for old blocks',
True,
['InnoDB/General']),
( 'innodb_old_blocks_time',
'How long (in ms) blocks must remain in old end of InnoDB buffer pool before moving to new end',
True,
['InnoDB/General']),
( 'innodb_online_alter_log_max_size',
'Specifies an upper limit on size of the temporary log files used during online DDL operations for InnoDB tables.',
True,
['InnoDB/General', 'InnoDB/Logfiles']),
( 'innodb_open_files',
'The maximum number of files that InnoDB keeps open at the same time',
False,
['InnoDB/General']),
( 'innodb_optimize_fulltext_only',
'Makes the OPTIMIZE TABLE statement for an InnoDB table process the newly added, deleted, and updated token data for a FULLTEXT index, rather than reorganizing the data in the clustered index of the table',
True,
['InnoDB/Fulltext search', 'InnoDB/General']),
( 'innodb_optimize_point_storage',
'Enable this option to store POINT data as fixed-length data rather than a variable-length data.',
True,
['InnoDB/General']),
( 'innodb_page_cleaners',
'Number of page cleaner threads.',
False,
['InnoDB/Memory']),
( 'innodb_page_size',
'Specifies the page size for all InnoDB tablespaces in an instance',
False,
['InnoDB/Memory']),
( 'innodb_print_all_deadlocks',
'During shutdown, prints information about all InnoDB deadlocks to the server error log',
True,
['InnoDB/General']),
( 'innodb_purge_batch_size',
'Specifies the number of InnoDB redo logs that trigger a purge operation.',
True,
['InnoDB/General']),
( 'innodb_purge_rseg_truncate_frequency',
'The rate at which undo log purge should be invoked as part of the purge action. A value of n invokes undo log purge on every nth iteration of purge invocation.',
True,
['InnoDB/General']),
( 'innodb_purge_threads',
'Specifies whether the InnoDB purge operation should be performed in one or more separate threads. By default, this operation is part of the InnoDB master thread.',
False,
['InnoDB/General']),
( 'innodb_random_read_ahead',
'Enables the random read-ahead technique for optimizing InnoDB I/O',
True,
['InnoDB/General']),
( 'innodb_read_ahead_threshold',
'The sensitivity of InnoDB linear read-ahead',
True,
['InnoDB/General']),
( 'innodb_read_io_threads',
'Number of background I/O threads for read prefetch requests',
False,
['InnoDB/General']),
( 'innodb_read_only',
'Starts the server in read-only mode',
False,
['InnoDB/General']),
( 'innodb_replication_delay',
'The slave server replication thread delay',
True,
['InnoDB/General']),
( 'innodb_rollback_on_timeout',
'Roll back entire transaction on transaction timeout, not just last statement',
False,
['InnoDB/General']),
( 'innodb_rollback_segments',
'Defines how many of the rollback segments in the system tablespace that InnoDB uses within a transaction',
True,
['InnoDB/General']),
( 'innodb_saved_page_number_debug',
'Saves a page number',
True,
['InnoDB/General']),
( 'innodb_sort_buffer_size',
'Specifies size of a buffer used for sorting data during creation of an InnoDB index',
False,
['InnoDB/General', 'InnoDB/Memory']),
( 'innodb_spin_wait_delay',
'The maximum delay between polls for a spin lock',
True,
['InnoDB/General']),
( 'innodb_stats_auto_recalc',
'Causes InnoDB to automatically recalculate persistent statistics after the data in a table is changed substantially',
True,
['InnoDB/General']),
( 'innodb_stats_method',
'Specifies how InnoDB index statistics collection code should treat NULLs',
True,
['InnoDB/General']),
( 'innodb_stats_on_metadata',
'Enable or disable InnoDB table statistics updates for metadata statements',
False,
['InnoDB/General']),
( 'innodb_stats_persistent',
'Turns on the InnoDB persistent statistics feature',
True,
['InnoDB/General']),
( 'innodb_stats_persistent_sample_pages',
'Number of pages to sample in each InnoDB index, when the persistent statistics feature is also enabled',
True,
['InnoDB/General']),
( 'innodb_stats_sample_pages',
'Number of index pages to sample for index distribution statistics',
True,
['InnoDB/General']),
( 'innodb_stats_transient_sample_pages',
'Number of pages to sample in each InnoDB index, when the persistent statistics feature is turned off (the default setting)',
True,
['InnoDB/General']),
( 'innodb_status_output',
'Used to enable or disable periodic output for the standard InnoDB Monitor. Also used in combination with innodb_status_output_locks to enable and disable periodic output for the InnoDB Lock Monitor.',
True,
['InnoDB/General']),
( 'innodb_status_output_locks',
'Used to enable or disable periodic output for the standard InnoDB Lock Monitor. innodb_status_output must also be enabled to produce periodic output for the InnoDB Lock Monitor.',
True,
['InnoDB/General']),
( 'innodb_strict_mode',
'Whether InnoDB returns errors rather than warnings for exceptional conditions',
True,
['InnoDB/General']),
( 'innodb_support_xa',
'Enable InnoDB support for the XA two-phase commit',
True,
['InnoDB/General']),
( 'innodb_sync_array_size',
'Splits an internal data structure used to coordinate threads, for higher concurrency in workloads with large numbers of waiting threads',
False,
['InnoDB/General']),
( 'innodb_sync_spin_loops',
'Count of spin-loop rounds in InnoDB mutexes',
True,
['InnoDB/General']),
( 'innodb_sync_debug',
'Enables InnoDB sync debug checking',
False,
['InnoDB/General']),
( 'innodb_table_locks',
'Enable InnoDB locking in LOCK TABLES',
True,
['InnoDB/General']),
( 'innodb_temp_data_file_path',
'Defines the path to temporary tablespace data files and their sizes.',
False,
['InnoDB/General']),
( 'innodb_tmpdir',
'Defines a directory location for the temporary table files created during online ALTER TABLE operations.',
True,
['InnoDB/General']),
( 'innodb_thread_concurrency',
'Sets the maximum number of threads allowed inside InnoDB. Value 0 will disable the thread throttling',
True,
['InnoDB/General']),
( 'innodb_thread_concurrency_timer_based',
'Whether to use the lock-free method of handling thread concurrency',
False,
['InnoDB/General']),
( 'innodb_thread_sleep_delay',
'Time, in microseconds, that an InnoDB thread sleeps before joining InnoDB queue. Value 0 disables the sleep behavior',
True,
['InnoDB/General']),
( 'innodb_trx_purge_view_update_only_debug',
'Pauses purging of delete-marked records while allowing the purge view to be updated',
True,
['InnoDB/General']),
( 'innodb_trx_rseg_n_slots_debug',
'Sets a debug flag that limits TRX_RSEG_N_SLOTS to a given value for the trx_rsegf_undo_find_free function',
True,
['InnoDB/General']),
( 'innodb_undo_directory',
'The relative or absolute directory path where InnoDB creates separate tablespaces for the undo logs; typically used to place those logs on a different storage device',
False,
['InnoDB/General', 'InnoDB/Logfiles']),
( 'innodb_undo_log_truncate',
'Enable this option to mark the InnoDB undo tablespace for truncation',
True,
['InnoDB/General', 'InnoDB/Logfiles']),
( 'innodb_undo_logs',
'Defines the number of undo logs (rollback segments) used by InnoDB; replaces the innodb_rollback_segments setting',
True,
['InnoDB/General', 'InnoDB/Logfiles']),
( 'innodb_undo_tablespaces',
'Number of undo logs to place in each tablespace created by a non-zero innodb_undo_logs setting',
False,
['InnoDB/General']),
( 'innodb_use_legacy_cardinality_algorithm',
'Whether to use legacy InnoDB index cardinality calculation algorithm',
True,
['InnoDB/General']),
( 'innodb_use_native_aio',
'Specifies whether to use the Linux asynchronous I/O subsystem',
False,
['InnoDB/General']),
( 'innodb_use_sys_malloc',
'Whether InnoDB uses the OS or its own memory allocator',
False,
['InnoDB/General']),
('innodb_version', 'The version of InnoDB', False, []),
( 'innodb_write_io_threads',
'Number of background I/O threads for writing dirty pages from the buffer cache to disk',
False,
['InnoDB/General']),
( 'insert_id',
'Set the value to be used by the following INSERT or ALTER TABLE statement when inserting an AUTO_INCREMENT value',
True,
[]),
( 'interactive_timeout',
'Number of seconds the server waits for activity on an interactive connection before closing it',
True,
['Networking/Timeout Settings']),
( 'internal_tmp_disk_storage_engine',
'Storage engine for internal temporary tables',
True,
[]),
( 'join_buffer_size',
'Size of buffer that is used for full joins',
True,
['General/Memory usage']),
( 'join_cache_level',
'How join buffers are used',
True,
['General/Memory usage']),
( 'keep_files_on_create',
'Do not overwrite existing .MYD/.MYI files in default database directory',
True,
['MyISAM/General']),
( 'key_buffer_size',
'Size of buffer used for index blocks for MyISAM tables',
True,
['MyISAM/General']),
( 'key_cache_age_threshold',
'This characterizes the number of hits a hot block has to be untouched until it is considered aged enough to be downgraded to a warm block. This specifies the percentage ratio of that number of hits to the total number of blocks in key cache',
True,
['MyISAM/General']),
( 'key_cache_block_size',
'The default size of key cache blocks',
True,
['Advanced/Various']),
( 'key_cache_division_limit',
'The minimum percentage of warm blocks in key cache',
True,
['Advanced/Various']),
('keyring_file_data', 'Keyring plugin data file', True, []),
( 'language',
'Client error messages in given language. May be given as a full path',
False,
['General/International']),
('large-pages', 'Enable support for large pages', False, []),
('large_files_support', 'Whether large files are supported', False, []),
( 'large_page_size',
'Size of memory pages when large page support is enabled',
False,
[]),
('last_insert_id', 'The most recent AUTO_INCREMENT value', True, []),
('lc-messages', 'Locale for error messages', True, []),
( 'lc-messages-dir',
'Directory where error messages are installed',
False,
[]),
( 'lc_time_names',
'The locale that controls the language used to display day and month names',
True,
[]),
('license', 'Type of license for the server', False, []),
( 'local_infile',
'Whether LOCAL is supported for LOAD DATA INFILE statements',
True,
[]),
( 'lock_wait_timeout',
'Timeout for metadata locks',
True,
['General/General']),
('locked_in_memory', 'Whether mysqld is locked in memory', False, []),
('log', 'Log connections and queries to file', False, ['Logging/General']),
( 'log-backup-output',
'The destination for MySQL Backup history and progress log output. Syntax: log-backup-output[=value[,value...]], where "value" could be TABLE, FILE, or NONE',
True,
[]),
('log-bin', 'Specifies binary log file name', False, []),
( 'log-bin-trust-function-creators',
'If equal to 0 (the default), then when --log-bin is used, creation of a stored function is allowed only to users having the SUPER privilege and only if the function created does not break binary logging',
True,
[]),
( 'log-bin-trust-routine-creators',
'(deprecated) Use log-bin-trust-function-creators',
True,
[]),
( 'log-bin-use-v1-row-events',
'Use version 1 binary log row events',
False,
['Logging/Binlog Options']),
('log-error', 'Error log file', False, []),
( 'log-output',
'The destination for general query log and slow query log output',
True,
[]),
( 'log-queries-not-using-indexes',
'Log queries that are executed without benefit of any index to the slow query log if it is open',
True,
[]),
( 'log-slave-updates',
'Tells the slave to log the updates performed by its SQL thread to its own binary log',
False,
['Logging/General']),
( 'log-slow-queries',
'Whether to log slow queries. Logging defaults to hostname-slow.log file. Must be enabled to activate other slow query log options',
False,
[]),
('log-warnings', 'Log some noncritical warnings to the log file', True, []),
( 'log_backward_compatible_user_definitions',
'Whether to log CREATE/ALTER USER, GRANT in backward-compatible fashion',
True,
['Logging/General']),
('log_bin', 'Whether the binary log is enabled', False, []),
( 'log_bin_basename',
'Complete path to binary log, including filename',
False,
[]),
( 'log_bin_index',
'File that holds the names for last binary log files',
False,
[]),
( 'log_bin_use_v1_row_events',
'Shows whether server is using version 1 binary log row events',
False,
['Logging/Binlog Options']),
( 'log_builtin_as_identified_by_password',
'Whether to log CREATE/ALTER USER, GRANT in backward-compatible fashion',
True,
['Logging/General']),
( 'log_error_verbosity',
'Error logging verbosity level',
True,
['Logging/General']),
( 'log_slave_updates',
'Whether the slave should log the updates performed by its SQL thread to its own binary log. Read-only; set using the --log-slave-updates server option.',
False,
['Logging/General']),
( 'log_slow_admin_statements',
'Log slow OPTIMIZE, ANALYZE, ALTER and other administrative statements to the slow query log if it is open',
True,
[]),
( 'log_slow_slave_statements',
'Cause slow statements as executed by the slave to be written to the slow query log',
True,
[]),
( 'log_statements_unsafe_for_binlog',
'Disables error 1592 warnings being written to the error log',
True,
[]),
( 'log_syslog',
'Whether to write error log to syslog',
True,
['Logging/General']),
( 'log_syslog_facility',
'Facility for syslog messages',
True,
['Logging/General']),
( 'log_syslog_include_pid',
'Whether to include server PID in syslog messages',
True,
['Logging/General']),
( 'log_syslog_tag',
'Tag for server identifier in syslog messages',
True,
['Logging/General']),
( 'log_throttle_queries_not_using_indexes',
'Throttle write rate to slow log for queries not using indexes slow query log if it is open',
True,
[]),
('log_timestamps', 'Log timestamp format', True, ['Logging/General']),
( 'long_query_time',
'Log all queries that have taken more than long_query_time seconds to execute to file',
True,
['Logging/Slow query log options']),
( 'low-priority-updates',
'INSERT/DELETE/UPDATE has lower priority than selects',
True,
[]),
( 'lower_case_file_system',
'This variable describes the case sensitivity of file names on the file system',
False,
[]),
( 'lower_case_table_names',
'If set to 1, table names are stored in lowercase on disk and table names will be case insensitive. Should be set to 2 if you are using a case-insensitive file system.',
False,
['General/System']),
('maria-block-size', 'Sets the block size for Maria tables', False, []),
( 'maria-checkpoint-interval',
'Sets the interval between automatic checkpoints',
True,
[]),
( 'maria-log-file-size',
'Sets size of each of the Maria log files',
True,
[]),
( 'maria-log-purge-type',
'Sets the mode for purging Maria log files',
True,
[]),
( 'maria-max-sort-file-size',
'The maximum size of an external sort file',
True,
[]),
( 'maria-page-checksum',
'Sets the default mode for page checksums',
True,
[]),
('maria-pagecache-age-threshold', 'Sets the pagecache age', True, []),
( 'maria-pagecache-buffer-size',
'Sets the buffer size for data and index pages',
False,
[]),
( 'maria-pagecache-division-limit',
'The minimum percentage of warm blocks in the page cache',
True,
[]),
( 'maria-recover',
'Force recovery of Maria tables without the log file',
True,
[]),
( 'maria-repair-threads',
'Number of threads to be used when repairing tables',
True,
[]),
( 'maria-sort-buffer-size',
'Sets the sort buffer size for indexes',
True,
[]),
('maria-stats-method', 'Sets the statistics collection method', True, []),
( 'maria-sync-log-dir',
'Controls the synchronization of the directory after a log file has been extended or created',
True,
[]),
( 'master_info_repository',
"Whether to write master status information and replication I/O thread location in the master's binary logs to a file or table",
True,
['Replication/Master']),
( 'master_verify_checksum',
'Cause master to read checksums from binary log.',
True,
[]),
( 'max_allowed_packet',
'Max packet length to send to/receive from server',
True,
['Networking/Data / Memory size']),
( 'max_binlog_cache_size',
'Can be used to restrict the total size used to cache a multi-statement transaction',
True,
['Logging/Binlog Options']),
( 'max_binlog_size',
'Binary log will be rotated automatically when size exceeds this value',
True,
['Logging/Binlog Options']),
( 'max_binlog_stmt_cache_size',
'Can be used to restrict the total size used to cache all nontransactional statements during a transaction',
True,
['Logging/Binlog Options']),
( 'max_connect_errors',
'Number of interrupted connections from a host before this host is blocked from further connections',
True,
['Networking/Advanced']),
( 'max_connections',
'Number of simultaneous clients allowed',
True,
['Networking/Advanced']),
( 'max_delayed_threads',
'Do not start more than this number of threads to handle INSERT DELAYED statements. If set to zero, which means INSERT DELAYED is not used',
True,
['Advanced/Insert delayed settings']),
( 'max_digest_length',
'The maximum digest size in bytes',
False,
['Advanced/General']),
( 'max_error_count',
'Max number of errors/warnings to store for a statement',
True,
['Advanced/General']),
( 'max_execution_time',
'Statement execution timeout value',
True,
['Advanced/Various']),
( 'max_heap_table_size',
'Do not allow creation of heap tables bigger than this',
True,
['Advanced/Various']),
( 'max_insert_delayed_threads',
'This variable is a synonym for max_delayed_threads',
True,
[]),
( 'max_join_size',
'Joins that are probably going to read more than max_join_size records return an error',
True,
['Advanced/Various']),
( 'max_length_for_sort_data',
'Max number of bytes in sorted records',
True,
['Advanced/Various']),
( 'max_long_data_size',
'Max size of parameter values that mysql_stmt_send_long_data() can send',
False,
['General/General']),
( 'max_points_in_geometry',
'Maximum number of points in geometry values for ST_Buffer_Strategy()',
True,
['Advanced/Various']),
( 'max_prepared_stmt_count',
'Maximum number of prepared statements in the server',
True,
['Advanced/General']),
( 'max_relay_log_size',
'If nonzero, relay log is rotated automatically when its size exceeds this value. If zero, size at which rotation occurs is determined by the value of max_binlog_size.',
True,
['Replication/Relay Log']),
( 'max_seeks_for_key',
'Limit assumed max number of seeks when looking up rows based on a key',
True,
['Advanced/Various']),
( 'max_sort_length',
'Number of bytes to use when sorting data values',
True,
['Advanced/Various']),
( 'max_sp_recursion_depth',
'Maximum stored procedure recursion depth',
True,
['Advanced/General']),
('max_statement_time', 'Statement execution timeout value', True, []),
('max_tmp_tables', 'Unused', True, []),
( 'max_user_connections',
'The maximum number of active connections for a single user (0 = no limit)',
True,
['Networking/Advanced']),
( 'max_write_lock_count',
'After this many write locks, allow some read locks to run in between',
True,
['Advanced/Various']),
( 'mecab_rc_file',
'Defines the path to the mecabrc configuration file for the MeCab parser for InnoDB Full-Text Search.',
False,
[]),
('metadata_locks_cache_size', 'Size of the metadata locks cache', False, []),
( 'metadata_locks_hash_instances',
'Number of metadata lock hashes',
False,
[]),
( 'min-examined-row-limit',
'Queries examining fewer than this number of rows are not logged to slow query log',
True,
[]),
( 'multi_range_count',
'The maximum number of ranges to send to a table handler at once during range selects',
True,
['Advanced/Various']),
( 'myisam_data_pointer_size',
'Default pointer size to be used for MyISAM tables',
True,
['MyISAM/Advanced Settings']),
( 'myisam_max_extra_sort_file_size',
'Deprecated option',
False,
['MyISAM/Advanced Settings']),
( 'myisam_max_sort_file_size',
'Do not use the fast sort index method to create index if the temporary file would get bigger than this',
True,
['MyISAM/Advanced Settings']),
( 'myisam_mmap_size',
'The maximum amount of memory to use for memory mapping compressed MyISAM files.',
False,
['MyISAM/Advanced Settings']),
( 'myisam_recover_options',
'The value of the --myisam-recover option',
False,
[]),
( 'myisam_repair_threads',
'Number of threads to use when repairing MyISAM tables. The value of 1 disables parallel repair',
True,
['MyISAM/Advanced Settings']),
( 'myisam_sort_buffer_size',
'The buffer allocated when sorting the index for a REPAIR TABLE or when creating indexes for CREATE INDEX or ALTER TABLE',
True,
['MyISAM/Advanced Settings']),
( 'myisam_stats_method',
'Specifies how MyISAM index statistics collection code should treat NULLs',
True,
['MyISAM/Advanced Settings']),
( 'myisam_use_mmap',
'Use memory mapping for reading and writing MyISAM tables',
True,
['MyISAM/Advanced Settings']),
( 'mysql_native_password_proxy_users',
'Whether the mysql_native_password authentication plugin does proxying',
True,
[]),
( 'mysql_firewall_max_query_size',
'Maximum size of recorded statements',
False,
['General/Firewall']),
( 'mysql_firewall_mode',
'Whether MySQL Enterprise Firewall is operational',
True,
['General/Firewall']),
( 'mysql_firewall_trace',
'Whether to enable firewall trace',
True,
['General/Firewall']),
( 'named_pipe',
'Whether the server supports connections over named pipes',
False,
[]),
( 'ndb-batch-size',
'Size (in bytes) to use for NDB transaction batches',
False,
[]),
( 'ndb-blob-read-batch-bytes',
'Specifies size in bytes that large BLOB reads should be batched into. 0 = no limit.',
True,
[]),
( 'ndb-blob-write-batch-bytes',
'Specifies size in bytes that large BLOB writes should be batched into. 0 = no limit.',
True,
[]),
( 'ndb-cluster-connection-pool',
'Number of connections to the cluster used by MySQL',
False,
[]),
( 'ndb-cluster-connection-pool-nodeids',
'Comma-separated list of node IDs for connections to the cluster used by MySQL; the number of nodes in the list must be the same as the value set for --ndb-cluster-connection-pool',
False,
[]),
( 'ndb-deferred-constraints',
'Specifies that constraint checks on unique indexes (where these are supported) should be deferred until commit time. Not normally needed or used; for testing purposes only.',
True,
['Other/NDB']),
( 'ndb-distribution',
'Default distribution for new tables in NDBCLUSTER (KEYHASH or LINHASH, default is KEYHASH)',
True,
['Other/NDB']),
( 'ndb-log-apply-status',
'Cause a MySQL server acting as a slave to log mysql.ndb_apply_status updates received from its immediate master in its own binary log, using its own server ID. Effective only if the server is started with the --ndbcluster option.',
False,
['Other/NDB']),
( 'ndb-log-empty-epochs',
'When enabled, causes epochs in which there were no changes to be written to the ndb_apply_status and ndb_binlog_index tables, even when --log-slave-updates is enabled.',
True,
['Other/NDB']),
( 'ndb-log-exclusive-reads',
'Log primary key reads with exclusive locks; allow conflict resolution based on read conflicts.',
True,
['Other/NDB']),
( 'ndb-log-orig',
'Log originating server id and epoch in mysql.ndb_binlog_index table.',
False,
['Other/NDB']),
( 'ndb-log-transaction-id',
'Write NDB transaction IDs in the binary log. Requires --log-bin-v1-events=OFF.',
False,
[]),
( 'ndb-log-update-as-write',
'Toggles logging of updates on the master between updates (OFF) and writes (ON)',
True,
[]),
( 'ndb-wait-connected',
'Time (in seconds) for the MySQL server to wait for connection to cluster management and data nodes before accepting MySQL client connections.',
False,
[]),
( 'ndb-wait-setup',
'Time (in seconds) for the MySQL server to wait for NDB engine setup to complete.',
False,
[]),
( 'ndb-allow-copying-alter-table',
'Set to OFF to keep ALTER TABLE from using copying operations on NDB tables',
True,
[]),
( 'ndb_autoincrement_prefetch_sz',
'NDB auto-increment prefetch size',
True,
['Other/NDB']),
( 'ndb_cache_check_time',
'Number of milliseconds between checks of cluster SQL nodes made by the MySQL query cache',
True,
['Other/NDB']),
( 'ndb_clear_apply_status',
'Causes RESET SLAVE to clear all rows from the ndb_apply_status table. ON by default.',
True,
[]),
( 'Ndb_conflict_last_conflict_epoch',
'Most recent NDB epoch on this slave in which a conflict was detected.',
False,
[]),
( 'ndb_deferred_constraints',
'Specifies that constraint checks should be deferred (where these are supported). Not normally needed or used; for testing purposes only.',
True,
['Other/NDB']),
( 'ndb_distribution',
'Default distribution for new tables in NDBCLUSTER (KEYHASH or LINHASH, default is KEYHASH)',
True,
['Other/NDB']),
( 'ndb_eventbuffer_free_percent',
'Percentage of free memory that should be available in event buffer before resumption of buffering, after reaching limit set by ndb_eventbuffer_max_alloc.',
True,
['Other/NDB']),
( 'ndb_eventbuffer_max_alloc',
'Maximum memory that can be allocated for buffering events by the NDB API. Defaults to 0 (no limit).',
True,
['Other/NDB']),
( 'ndb_extra_logging',
'Controls logging of MySQL Cluster schema, connection, and data distribution events in the MySQL error log',
True,
['Other/NDB']),
( 'ndb_force_send',
'Forces sending of buffers to NDB immediately, without waiting for other threads',
True,
['Other/NDB']),
( 'ndb_index_stat_cache_entries',
'Sets the granularity of the statistics by determining the number of starting and ending keys',
True,
['Other/NDB']),
( 'ndb_index_stat_enable',
'Use NDB index statistics in query optimization',
True,
['Other/NDB']),
( 'ndb_index_stat_option',
'Comma-separated list of tunable options for NDB index statistics; the list should contain no spaces',
True,
['Other/NDB']),
( 'ndb_index_stat_update_freq',
'How often to query data nodes instead of the statistics cache',
True,
['Other/NDB']),
( 'ndb_join_pushdown',
'Enables pushing down of joins to data nodes',
True,
[]),
( 'ndb_log_apply_status',
'Whether or not a MySQL server acting as a slave logs mysql.ndb_apply_status updates received from its immediate master in its own binary log, using its own server ID.',
False,
['Other/NDB']),
( 'ndb_log_bin',
'Write updates to NDB tables in the binary log. Effective only if binary logging is enabled with --log-bin.',
True,
[]),
( 'ndb_log_binlog_index',
'Insert mapping between epochs and binary log positions into the ndb_binlog_index table. Defaults to ON. Effective only if binary logging is enabled on the server.',
True,
[]),
( 'ndb_log_empty_epochs',
'When enabled, epochs in which there were no changes are written to the ndb_apply_status and ndb_binlog_index tables, even when log_slave_updates is enabled.',
True,
['Other/NDB']),
( 'ndb_log_exclusive_reads',
'Log primary key reads with exclusive locks; allow conflict resolution based on read conflicts.',
True,
['Other/NDB']),
( 'ndb_log_orig',
'Whether the id and epoch of the originating server are recorded in the mysql.ndb_binlog_index table. Set using the --ndb-log-orig option when starting mysqld.',
False,
['Other/NDB']),
( 'ndb_log_transaction_id',
'Whether NDB transaction IDs are written into the binary log. (Read-only.)',
False,
[]),
( 'ndb_log_updated_only',
'Log complete rows (ON) or updates only (OFF)',
True,
['Other/NDB']),
( 'ndb_optimization_delay',
'Sets the number of milliseconds to wait between processing sets of rows by OPTIMIZE TABLE on NDB tables.',
True,
[]),
( 'ndb_optimized_node_selection',
'Determines how an SQL node chooses a cluster data node to use as transaction coordinator',
False,
['Other/NDB']),
( 'ndb_recv_thread_cpu_mask',
'CPU mask for locking receiver threads to specific CPUs; specified as hexadecimal. See documentation for details.',
True,
[]),
( 'ndb_show_foreign_key_mock_tables',
'Show the mock tables used to support foreign_key_checks=0.',
True,
['Other/NDB']),
( 'ndb_slave_conflict_role',
'Role for slave to play in conflict detection and resolution. Value is one of PRIMARY, SECONDARY, PASS, or NONE (default). Can be changed only when slave SQL thread is stopped. See documentation for further information.',
True,
['Other/NDB']),
( 'Ndb_slave_max_replicated_epoch',
'The most recently committed NDB epoch on this slave. When this value is greater than or equal to Ndb_conflict_last_conflict_epoch, no conflicts have yet been detected.',
False,
[]),
( 'ndb_table_no_logging',
'NDB tables created when this setting is enabled are not checkpointed to disk (although table schema files are created). The setting in effect when the table is created with or altered to use NDBCLUSTER persists for the lifetime of the table.',
True,
[]),
( 'ndb_table_temporary',
'NDB tables are not persistent on disk: no schema files are created and the tables are not logged',
True,
[]),
( 'ndb_use_copying_alter_table',
'Use copying ALTER TABLE operations in MySQL Cluster',
False,
[]),
( 'ndb_use_exact_count',
'Use exact row count when planning queries',
True,
[]),
( 'ndb_use_transactions',
'Forces NDB to use a count of records during SELECT COUNT(*) query planning to speed up this type of query',
True,
['Other/NDB']),
( 'ndb_version',
'Shows build and NDB engine version as an integer.',
False,
[]),
( 'ndb_version_string',
'Shows build information including NDB engine version in ndb-x.y.z format.',
False,
[]),
( 'ndbinfo_database',
'The name used for the NDB information database; read only.',
False,
[]),
('ndbinfo_max_bytes', 'Used for debugging only.', True, []),
('ndbinfo_max_rows', 'Used for debugging only.', True, []),
( 'ndbinfo_offline',
'Put the ndbinfo database into offline mode, in which no rows are returned from tables or views.',
True,
[]),
( 'ndbinfo_show_hidden',
'Whether to show ndbinfo internal base tables in the mysql client. The default is OFF.',
True,
[]),
( 'ndbinfo_table_prefix',
'The prefix to use for naming ndbinfo internal base tables',
True,
[]),
( 'ndbinfo_version',
'The version of the ndbinfo engine; read only.',
False,
[]),
( 'net_buffer_length',
'Buffer length for TCP/IP and socket communication',
True,
['Networking/Data / Memory size']),
( 'net_read_timeout',
'Number of seconds to wait for more data from a connection before aborting the read',
True,
['Networking/Timeout Settings']),
( 'net_retry_count',
'Number of times to retry an interrupted read or write on a communication port before giving up',
True,
['Networking/Advanced']),
( 'net_write_timeout',
'Number of seconds to wait for a block to be written to a connection before aborting the write',
True,
['Networking/Timeout Settings']),
( 'new',
"Use very new, possibly 'unsafe' functions",
True,
['Advanced/Various']),
( 'ngram_token_size',
'Defines the n-gram token size for the InnoDB Full-Text Search n-gram parser.',
False,
[]),
('offline_mode', 'Whether server is offline', True, []),
( 'old',
'Cause the server to revert to certain behaviors present in older versions',
False,
['General/General']),
('old-alter-table', 'Use old, nonoptimized alter table', True, []),
( 'old_passwords',
'Selects password hashing method for PASSWORD()',
True,
[]),
( 'open-files-limit',
'If this is not 0, then mysqld will use this value to reserve file descriptors to use with setrlimit()',
False,
[]),
( 'optimizer_join_cache_level',
'How join buffers are used',
True,
['Performance/Optimizer']),
( 'optimizer_prune_level',
'Controls the heuristic(s) applied during query optimization to prune less-promising partial plans from the optimizer search space',
True,
['Performance/Optimizer']),
( 'optimizer_search_depth',
'Maximum depth of search performed by the query optimizer',
True,
['Performance/Optimizer']),
( 'optimizer_switch',
'Enable control over which optimizations to use',
True,
['Performance/Optimizer']),
('optimizer_trace', 'Control optimizer tracing', True, []),
('optimizer_trace_features', 'Control optimizer tracing', True, []),
('optimizer_trace_limit', 'Control optimizer tracing', True, []),
('optimizer_trace_max_mem_size', 'Control optimizer tracing', True, []),
('optimizer_trace_offset', 'Control optimizer tracing', True, []),
( 'optimizer_use_mrr',
'How the optimizer reads multiple ranges of index tuples',
True,
[]),
( 'parser_max_mem_size',
'Maximum amount of memory available to parser',
True,
[]),
( 'performance_schema',
'Whether Performance Schema is enabled',
False,
['Performance/Performance Schema']),
( 'performance_schema_accounts_size',
'Number of rows in the accounts table',
False,
['Performance/Performance Schema']),
( 'performance_schema_digests_size',
'Number of rows in the events_statements_summary_by_digest table',
False,
['Performance/Performance Schema']),
( 'performance_schema_events_stages_history_long_size',
'Number of rows in the events_stages_history_long table',
False,
['Performance/Performance Schema']),
( 'performance_schema_events_stages_history_size',
'Number of rows per thread in the events_stages_history table',
False,
['Performance/Performance Schema']),
( 'performance_schema_events_statements_history_long_size',
'Number of rows in the events_statements_history_long table',
False,
['Performance/Performance Schema']),
( 'performance_schema_events_statements_history_size',
'Number of rows per thread in the events_statements_history table',
False,
['Performance/Performance Schema']),
( 'performance_schema_events_transactions_history_long_size',
'Number of rows in the events_transactions_history_long table',
False,
['Performance/Performance Schema']),
( 'performance_schema_events_transactions_history_size',
'Number of rows per thread in the events_transactions_history table',
False,
['Performance/Performance Schema']),
( 'performance_schema_events_waits_history_long_size',
'Number of rows in the events_waits_history_long table',
False,
['Performance/Performance Schema']),
( 'performance_schema_events_waits_history_size',
'Number of rows per thread in the events_waits_history table',
False,
['Performance/Performance Schema']),
( 'performance_schema_hosts_size',
'Number of rows in the hosts table',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_cond_classes',
'The maximum number of condition instruments',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_cond_instances',
'The maximum number of instrumented condition objects',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_digest_length',
'The maximum Performance Schema digest size in bytes',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_file_classes',
'The maximum number of file instruments',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_file_handles',
'The maximum number of opened file objects',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_file_instances',
'The maximum number of instrumented file objects',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_index_stat',
'Maximum number of indexes to keep statistics for',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_memory_classes',
'The maximum number of memory instruments',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_metadata_locks',
'The maximum number of metadata locks to track',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_mutex_classes',
'The maximum number of mutex instruments',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_mutex_instances',
'The maximum number of instrumented mutex objects',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_prepared_statements_instances',
'Number of rows in the prepared_statements_instances table',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_program_instances',
'The maximum number of stored programs for statistics',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_rwlock_classes',
'The maximum number of rwlock instruments',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_rwlock_instances',
'The maximum number of instrumented rwlock objects',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_socket_classes',
'The maximum number of socket instruments',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_socket_instances',
'The maximum number of instrumented socket objects',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_sql_text_length',
'The maximum number of bytes stored from SQL statements',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_stage_classes',
'The maximum number of stage instruments',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_statement_classes',
'The maximum number of statement instruments',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_statement_stack',
'The maximum stored program nesting for statistics',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_table_handles',
'The maximum number of opened table objects',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_table_instances',
'The maximum number of instrumented table objects',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_table_lock_stat',
'Maximum number of tables to keep lock statistics for',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_thread_classes',
'The maximum number of thread instruments',
False,
['Performance/Performance Schema']),
( 'performance_schema_max_thread_instances',
'The maximum number of instrumented thread objects',
False,
['Performance/Performance Schema']),
( 'performance_schema_session_connect_attrs_size',
'Size of the connection attribute strings buffer per thread',
False,
['Performance/Performance Schema']),
( 'performance_schema_setup_actors_size',
'Number of rows in the setup_actors table',
False,
['Performance/Performance Schema']),
( 'performance_schema_setup_objects_size',
'Number of rows in the setup_objects table',
False,
['Performance/Performance Schema']),
( 'performance_schema_users_size',
'Number of rows in the users table',
False,
['Performance/Performance Schema']),
('pid-file', 'Process ID file used by mysqld_safe', False, []),
('plugin_dir', 'Directory for plugins', False, ['General/Directories']),
( 'port',
'Port number on which to listen for TCP/IP connections',
False,
['Networking/General']),
( 'preload_buffer_size',
'Size of buffer that is allocated when preloading indexes',
True,
['Advanced/Various']),
( 'prepared_stmt_count',
'The current number of prepared statements',
False,
[]),
('profiling', 'Enable or disable statement profiling', True, []),
( 'profiling_history_size',
'How many statements to maintain profiling information for',
True,
['General/Features', 'Performance/General']),
( 'protocol_version',
'The version of the client/server protocol used by the MySQL server',
False,
[]),
('proxy_user', 'The user proxied by the external proxy user', False, []),
('pseudo_slave_mode', 'For internal server use', True, []),
('pseudo_thread_id', 'For internal server use', True, []),
( 'query_alloc_block_size',
'Allocation block size for query parsing and execution',
True,
['Advanced/Various', 'General/Memory usage']),
( 'query_cache_limit',
'Do not cache results that are bigger than this',
True,
['Performance/Query cache']),
( 'query_cache_min_res_unit',
'Minimal size of unit in which space for results is allocated (last unit will be trimmed after writing all result data)',
True,
['Performance/Query cache']),
( 'query_cache_size',
'The memory allocated to store results from old queries',
True,
['Performance/Query cache']),
('query_cache_type', 'Query cache type', True, ['Performance/Query cache']),
( 'query_cache_wlock_invalidate',
'Invalidate queries in query cache on LOCK for write',
True,
['Performance/Query cache']),
( 'query_prealloc_size',
'Persistent buffer for query parsing and execution',
True,
['Advanced/Various']),
( 'rand_seed1',
'Used to support replication of the RAND() function',
True,
[]),
( 'rand_seed2',
'Used to support replication of the RAND() function',
True,
[]),
( 'range_alloc_block_size',
'Allocation block size for storing ranges during optimization',
True,
['Advanced/Various']),
( 'range_optimizer_max_mem_size',
'Limit on range optimizer memory consumption',
True,
['Advanced/Various']),
( 'rbr_exec_mode',
'Allows for switching the server between IDEMPOTENT mode (key and some other errors suppressed) and STRICT mode; STRICT mode is the default.',
True,
[]),
( 'read_buffer_size',
'Each thread that does a sequential scan for a MyISAM table allocates a buffer of this size for each table it scans',
True,
['Advanced/Various']),
( 'read_only',
'Prevent client updates except from clients with SUPER',
True,
['Security/Security']),
( 'read_rnd_buffer_size',
'When reading rows from a MyISAM table in sorted order after a sort, the rows are read through this buffer to avoid a disk seeks. If not set, then it is set to the value of record_buffer.',
True,
['Advanced/Various']),
('relay-log', 'The location and base name to use for relay logs', False, []),
( 'relay-log-index',
'The location and name to use for the file that keeps a list of the last relay logs',
False,
['Replication/Relay Log']),
( 'relay_log_basename',
'Complete path to relay log, including filename',
False,
[]),
( 'relay_log_index',
'The name of the relay log index file',
False,
['Replication/Relay Log']),
( 'relay_log_info_file',
'The name of the file in which the slave records information about the relay logs',
False,
['Replication/Relay Log']),
( 'relay_log_info_repository',
"Whether to write the replication SQL thread's location in the relay logs to a file or a table",
True,
[]),
( 'relay_log_purge',
'Determines whether relay logs are purged',
True,
['Replication/Relay Log']),
( 'relay_log_recovery',
'Whether automatic recovery of relay log files from master at startup is enabled; must be enabled for a crash-safe slave.',
True,
['Replication/Relay Log']),
( 'relay_log_space_limit',
'Maximum space to use for all relay logs',
False,
['Replication/Relay Log']),
( 'report-host',
'Host name or IP of the slave to be reported to the master during slave registration',
False,
[]),
( 'report-password',
'An arbitrary password that the slave server should report to the master. Not the same as the password for the MySQL replication user account.',
False,
[]),
( 'report-port',
'Port for connecting to slave reported to the master during slave registration',
False,
[]),
( 'report-user',
'An arbitrary user name that a slave server should report to the master. Not the same as the name used with the MySQL replication user account.',
False,
[]),
( 'require_secure_transport',
'Whether client connections must use secure transport',
True,
[]),
( 'restore_disables_events',
'Whether RESTORE disables restored events',
True,
['Advanced/General']),
( 'restore_elevation',
'Enable or disable RESTORE privilege elevation',
False,
['Advanced/General']),
( 'restore_precheck',
'Whether RESTORE performs privilege checking before restoring',
True,
['Advanced/General']),
( 'rewriter_enabled',
'Whether the example query rewrite plugin is enabled',
True,
[]),
('rewriter_verbose', 'For internal use', True, []),
('rpl_recovery_rank', 'Not used; removed in later versions', True, []),
( 'rpl_semi_sync_master_enabled',
'Whether semisynchronous replication is enabled on the master',
True,
[]),
('rpl_semi_sync_master_reply_log_file_pos', 'Internal use', True, []),
( 'rpl_semi_sync_master_timeout',
'Number of milliseconds to wait for slave acknowledgment',
True,
[]),
( 'rpl_semi_sync_master_trace_level',
'The semisynchronous replication debug trace level on the master',
True,
[]),
( 'rpl_semi_sync_master_wait_for_slave_count',
'How many slave acknowledgments the master must receive per transaction before proceeding',
True,
[]),
( 'rpl_semi_sync_master_wait_no_slave',
'Whether master waits for timeout even with no slaves',
True,
[]),
( 'rpl_semi_sync_master_wait_point',
'The wait point for slave transaction receipt acknowledgment',
True,
[]),
( 'rpl_semi_sync_slave_enabled',
'Whether semisynchronous replication is enabled on slave',
True,
[]),
( 'rpl_semi_sync_slave_trace_level',
'The semisynchronous replication debug trace level on the slave',
True,
[]),
( 'rpl_stop_slave_timeout',
'Set the number of seconds that STOP SLAVE waits before timing out.',
True,
['Replication/Slave']),
( 'safe-show-database',
'Deprecated option; use GRANT SHOW DATABASES instead',
True,
[]),
( 'schema_definition_cache',
'The number of cached schema definitions',
True,
['Security/Security']),
( 'secure-auth',
'Disallow authentication for accounts that have old (pre-4.1) passwords',
True,
[]),
( 'secure-backup-file-priv',
'Limit BACKUP DATABASE and RESTORE to files in a single directory',
False,
[]),
( 'secure-file-priv',
'Limit LOAD DATA, and SELECT ... INTO OUTFILE, and LOAD_FILE() to files in specified directory',
False,
[]),
( 'server-id',
'Uniquely identifies the server instance in the community of replication partners. Must be set to a value greater than 0 to enable replication.',
True,
[]),
( 'server-id-bits',
'Sets the number of least significant bits in the server_id actually used for identifying the server, permitting NDB API applications to store application data in the most significant bits. server_id must be less than 2 to the power of this value.',
False,
[]),
( 'server_id_bits',
'The effective value of server_id if the server was started with the --server-id-bits option set to a nondefault value.',
False,
[]),
( 'server_uuid',
"The server's globally unique ID, automatically (re)generated at server start",
False,
[]),
( 'session_track_gtids',
'Enables a tracker which can be configured to track different GTIDs.',
True,
['General/General']),
( 'session_track_schema',
'Whether to track schema changes',
True,
['General/General']),
( 'session_track_state_change',
'Whether to track session state changes',
True,
['General/General']),
( 'session_track_system_variables',
'Session variables to track changes for',
True,
['General/General']),
( 'sha256_password_auto_generate_rsa_keys',
'Whether to autogenerate RSA key-pair files',
False,
[]),
( 'sha256_password_private_key_path',
'The SHA2 password plugin private key path name',
False,
[]),
( 'sha256_password_proxy_users',
'Whether the sha256_password authentication plugin does proxying',
True,
[]),
( 'sha256_password_public_key_path',
'The SHA2 password plugin public key path name',
False,
[]),
( 'shared_memory',
'Whether the server allows shared-memory connections',
False,
[]),
( 'shared_memory_base_name',
'The name of shared memory to use for shared-memory connections',
False,
[]),
( 'show_compatibility_56',
'Compatibility for SHOW STATUS/VARIABLES',
True,
[]),
( 'show_old_temporals',
'Whether SHOW CREATE TABLE should indicate pre-5.6.4 temporal columns',
True,
[]),
( 'simplified_binlog_gtid_recovery',
'Controls how binary logs are iterated during GTID recovery',
False,
[]),
( 'skip-name-resolve',
"Do not resolve host names. All host names are IPs or 'localhost'",
False,
[]),
('skip-networking', 'Do not allow connection with TCP/IP', False, []),
('skip-show-database', 'Do not allow SHOW DATABASE statements', False, []),
('skip-sync-bdb-logs', 'Disables synchronous BDB log flushes', False, []),
( 'skip_external_locking',
'Skip system (external) locking',
False,
['General/System']),
( 'slave-load-tmpdir',
'The location where the slave should put its temporary files when replicating a LOAD DATA INFILE statement',
False,
[]),
( 'slave-net-timeout',
'Number of seconds to wait for more data from a master/slave connection before aborting the read',
True,
[]),
( 'slave-skip-errors',
'Tells the slave thread to continue replication when a query returns an error from the provided list',
False,
[]),
( 'slave_allow_batching',
'Turns update batching on and off for a replication slave',
True,
['Replication/Slave']),
( 'slave_checkpoint_group',
'Maximum number of transactions processed by a multi-threaded slave before a checkpoint operation is called to update progress status. Not supported by MySQL Cluster.',
True,
['Replication/Slave']),
( 'slave_checkpoint_period',
'Update progress status of multi-threaded slave and flush relay log info to disk after this number of milliseconds. Not supported by MySQL Cluster.',
True,
['Replication/Slave']),
( 'slave_compressed_protocol',
'Use compression on master/slave protocol',
True,
['Replication/Slave']),
( 'slave_exec_mode',
'Allows for switching the slave thread between IDEMPOTENT mode (key and some other errors suppressed) and STRICT mode; STRICT mode is the default, except for MySQL Cluster, where IDEMPOTENT is always used',
True,
['Replication/Slave']),
( 'slave_max_allowed_packet',
'Maximum size, in bytes, of a packet that can be sent from a replication master to a slave; overrides max_allowed_packet.',
True,
[]),
( 'slave_parallel_type',
'Tells the slave to use database partioning (DATABASE) or information (LOGICAL_CLOCK) from master to parallelize transactions. The default is DATABASE.',
True,
[]),
( 'slave_parallel_workers',
'Number of worker threads for executing events in parallel. Set to 0 (the default) to disable slave multi-threading. Not supported by MySQL Cluster.',
True,
[]),
( 'slave_pending_jobs_size_max',
'Maximum size of slave worker queues holding events not yet applied.',
True,
[]),
( 'slave_preserve_commit_order',
'Ensures that all commits by slave workers happen in the same order as on the master to maintain consistency when using parallel worker threads.',
True,
[]),
( 'slave_rows_search_algorithms',
'Determines search algorithms used for slave update batching. Any 2 or 3 from the list INDEX_SEARCH, TABLE_SCAN, HASH_SCAN; the default is TABLE_SCAN,INDEX_SCAN.',
True,
[]),
( 'slave_sql_verify_checksum',
'Cause slave to examine checksums when reading from relay log.',
True,
[]),
( 'slave_transaction_retries',
'Number of times the slave SQL thread will retry a transaction in case it failed with a deadlock or elapsed lock wait timeout, before giving up and stopping',
True,
['Replication/Slave']),
( 'slave_type_conversions',
'Controls type conversion mode on replication slave. Value is a list of zero or more elements from the list: ALL_LOSSY, ALL_NON_LOSSY. Set to an empty string to disallow type conversions between master and slave.',
False,
['Replication/Slave']),
('slow-query-log', 'Enable|disable slow query log', True, []),
( 'slow_launch_time',
'If creating the thread takes longer than this value (in seconds), the Slow_launch_threads counter will be incremented',
True,
['Advanced/Thread specific settings']),
( 'slow_query_log_file',
'Name of the slow query log file',
True,
['Logging/Slow query log options']),
( 'socket',
'Socket file on which to listen for Unix socket connections',
False,
['Networking/General']),
( 'sort_buffer_size',
'Each thread that needs to do a sort allocates a buffer of this size',
True,
['General/Memory usage']),
('sql-mode', 'Set the SQL server mode', True, []),
( 'sql_auto_is_null',
'If set to 1, you can find the last inserted row for a table that contains an AUTO_INCREMENT column by using the following construct: WHERE auto_increment_column IS NULL',
True,
[]),
( 'sql_big_selects',
'If set to 0, MySQL aborts SELECT statements that are likely to take a very long time to execute',
True,
[]),
( 'sql_big_tables',
'This variable is deprecated, and is mapped to big_tables',
True,
[]),
( 'sql_buffer_result',
'Forces the result to be put into a temporary table',
True,
[]),
('sql_log_bin', 'Toggle binary logging', True, []),
( 'sql_log_off',
'If set to 1, no logging is done to the general query log for this client',
True,
[]),
( 'sql_log_update',
'This variable is deprecated, and is mapped to SQL_LOG_BIN',
True,
[]),
( 'sql_low_priority_updates',
'This variable is deprecated, and is mapped to low_priority_updates',
True,
[]),
( 'sql_max_join_size',
'This variable is deprecated, and is mapped to max_join_size',
True,
[]),
('sql_notes', 'If set to 1, warnings of Note level are recorded', True, []),
( 'sql_quote_show_create',
'If set to 1 the server quotes identifiers for SHOW CREATE TABLE and SHOW CREATE DATABASE statements',
True,
[]),
( 'sql_safe_updates',
'If set to 1, MySQL aborts UPDATE or DELETE statements that do not use a key in the WHERE clause or a LIMIT clause',
True,
[]),
( 'sql_select_limit',
'The maximum number of rows to return from SELECT statements',
True,
[]),
( 'sql_slave_skip_counter',
'Number of events from the master that a slave server should skip. Not compatible with GTID replication.',
True,
[]),
( 'sql_warnings',
'This variable controls whether single-row INSERT statements produce an information string if warnings occur',
True,
[]),
('ssl-ca', 'Path of file that contains list of trusted SSL CAs', False, []),
( 'ssl-capath',
'Path of directory that contains trusted SSL CA certificates in PEM format',
False,
[]),
( 'ssl-cert',
'Path of file that contains X509 certificate in PEM format',
False,
[]),
( 'ssl-cipher',
'List of permitted ciphers to use for connection encryption',
False,
[]),
( 'ssl-crl',
'Path of file that contains certificate revocation lists',
False,
[]),
( 'ssl-crlpath',
'Path of directory that contains certificate revocation list files',
False,
[]),
('ssl-key', 'Path of file that contains X509 key in PEM format', False, []),
('storage_engine', 'The default storage engine', True, []),
( 'stored_program_cache',
'Sets a "soft" upper limit for number of cached stored routines per connection. Stored procedures and stored functions are cached separately; this variable sets size for both of these.',
True,
['General/General']),
( 'stored_program_definition_cache',
'The number of cached stored program definitions',
True,
[]),
( 'super_read_only',
'Whether to ignore SUPER exceptions to read-only mode',
True,
[]),
( 'sync-bdb-logs',
'Synchronously flush Berkeley DB logs. Enabled by default',
False,
[]),
( 'sync_binlog',
'Synchronously flush binary log to disk after every #th event',
True,
['Logging/Binlog Options']),
( 'sync_frm',
'Sync .frm to disk on create. Enabled by default',
True,
['Advanced/General']),
( 'sync_master_info',
'Synchronize master.info to disk after every #th event.',
True,
['Replication/Master']),
( 'sync_relay_log',
'Synchronize relay log to disk after every #th event.',
True,
['Replication/Relay Log']),
( 'sync_relay_log_info',
'Synchronize relay.info file to disk after every #th event.',
True,
['Replication/Relay Log']),
('system_time_zone', 'The server system time zone', False, []),
( 'tablespace_definition_cache',
'The number of cached tablespace definitions',
True,
[]),
('table_cache', 'Number of open tables for all threads', True, []),
( 'table_definition_cache',
'Number of table definitions that can be stored in the definition cache.',
True,
[]),
('table_lock_wait_timeout', 'Currently unused', True, []),
('table_open_cache', 'Number of open tables for all threads', True, []),
( 'table_open_cache_instances',
'Number of open tables cache instances',
False,
[]),
('table_type', 'A synonym for storage_engine', True, []),
( 'thread_cache_size',
'How many threads we should keep in a cache for reuse',
True,
['Advanced/Thread specific settings']),
( 'thread_concurrency',
'Permits the application to give the threads system a hint for the desired number of threads that should be run at the same time',
False,
['Advanced/Thread specific settings']),
( 'thread_handling',
'The thread-handling model',
False,
['Advanced/Thread specific settings']),
( 'thread_pool_algorithm',
'The thread pool algorithm',
False,
['Advanced/Thread specific settings']),
( 'thread_pool_high_priority_connection',
'Whether the current session is high priority',
True,
['Advanced/Thread specific settings']),
( 'thread_pool_max_unused_threads',
'The maximum permitted number of unused threads',
True,
['Advanced/Thread specific settings']),
( 'thread_pool_prio_kickup_timer',
'How long before a statement is moved to high-priority execution',
True,
['Advanced/Thread specific settings']),
( 'thread_pool_size',
'Number of thread groups in the thread pool',
False,
['Advanced/Thread specific settings']),
( 'thread_pool_stall_limit',
'How long before a statement is defined as stalled',
True,
['Advanced/Thread specific settings']),
( 'thread_stack',
'The stack size for each thread',
False,
['Advanced/Thread specific settings']),
('time_format', 'The TIME format (unused)', False, []),
('time_zone', 'The current time zone.', True, []),
( 'timed_mutexes',
'Specify whether to time mutexes (only InnoDB mutexes are currently supported)',
True,
['InnoDB/General']),
('timestamp', 'Change the value returned by NOW()', True, []),
('tls_version', 'Protocols permitted for secure connections', False, []),
( 'tmp_table_size',
'If an in-memory temporary table exceeds this size, MySQL will automatically convert it to an on-disk MyISAM table',
True,
['Advanced/Various']),
('tmpdir', 'Path for temporary files', False, ['General/Directories']),
( 'transaction_alloc_block_size',
'Allocation block size for transactions to be stored in binary log',
True,
['Advanced/Transactions']),
( 'transaction_allow_batching',
'Allows batching of statements within a transaction. Disable AUTOCOMMIT to use.',
True,
[]),
( 'transaction_prealloc_size',
'Persistent buffer for transactions to be stored in binary log',
True,
['Advanced/Transactions']),
('transaction_write_set_extraction', 'Reserved for future use.', True, []),
('tx_isolation', 'The default transaction isolation level', True, []),
('tx_read_only', 'Default transaction access mode', True, []),
( 'unique_checks',
'If set to 1 (the default), uniqueness checks for secondary indexes in InnoDB tables are performed',
True,
[]),
( 'updatable_views_with_limit',
'This variable controls whether updates to a view can be made when the view does not contain all columns of the primary key',
True,
['Advanced/General']),
( 'validate_password_dictionary_file',
'validate_password dictionary file',
True,
[]),
( 'validate_password_length',
'validate_password required password length',
True,
[]),
( 'validate_password_mixed_case_count',
'validate_password required number of uppercase/lowercase characters',
True,
[]),
( 'validate_password_number_count',
'validate_password required number of digit characters',
True,
[]),
('validate_password_policy', 'validate_password password policy', True, []),
( 'validate_password_special_char_count',
'validate_password required number of special characters',
True,
[]),
( 'validate_user_plugins',
'Whether to perform additional validation of user plugins',
False,
[]),
('version', 'Output version information and exit', False, []),
( 'version_comment',
'This variable contains the value of the --with-comment option specified when building MySQL',
False,
[]),
( 'version_compile_machine',
'The type of machine or architecture on which MySQL was built',
False,
[]),
( 'version_compile_os',
'The type of operating system on which MySQL was built',
False,
[]),
('version_tokens_session', 'Client token list for Version Tokens', True, []),
('version_tokens_session_number', 'For internal use', False, []),
( 'wait_timeout',
'Number of seconds the server waits for activity on a connection before closing it',
True,
['Networking/Timeout Settings']),
('warning_count', 'Number of warnings', False, [])]
status_variable_list = [ ( 'mysqlx_port',
'Port on which the MySQL X plugin accepts connections',
True,
[]),
( 'mysqlx_max_connections',
'Maximum number of concurrent client connections the MySQL X plugin can accept',
True,
[]),
( 'mysqlx_initial_incoming_queue_bytes',
'Default size of the MySQL X plugin input buffer',
True,
[]),
( 'Aborted_clients',
'Number of connections aborted because the client died without closing the connection properly',
False,
['Networking/Stats']),
( 'Aborted_connects',
'Number of failed attempts to connect to MySQL server',
False,
['Networking/Stats']),
( 'Audit_log_current_size',
'Audit log file current size',
False,
['General']),
( 'Audit_log_event_max_drop_size',
'Size of largest dropped audited event',
False,
['General']),
('Audit_log_events', 'Number of handled audited events', False, ['General']),
( 'Audit_log_events_filtered',
'Number of filtered audited events',
False,
['General']),
( 'Audit_log_events_lost',
'Number of dropped audited events',
False,
['General']),
( 'Audit_log_events_written',
'Number of written audited events',
False,
['General']),
( 'Audit_log_total_size',
'Combined size of written audited events',
False,
['General']),
( 'Audit_log_write_waits',
'Number of write-delayed audited events',
False,
['General']),
( 'Binlog_cache_disk_use',
'Number of transactions that used a temporary file instead of the binary log cache',
False,
['Binlog']),
( 'Binlog_cache_use',
'Number of transactions that used the temporary binary log cache',
False,
['Binlog']),
( 'Binlog_stmt_cache_disk_use',
'Number of nontransactional statements that used a temporary file instead of the binary log statement cache',
False,
['Binlog']),
( 'Binlog_stmt_cache_use',
'Number of statements that used the temporary binary log statement cache',
False,
['Binlog']),
( 'Bytes_received',
'Number of bytes received from all clients',
False,
['Networking/Stats']),
( 'Bytes_sent',
'Number of bytes sent to all clients',
False,
['Networking/Stats']),
( 'Com_admin_commands',
'Count of admin statements',
False,
['Commands/Admin']),
( 'Com_alter_db',
'Count of ALTER DATABASE statements',
False,
['Commands/DDL']),
( 'Com_alter_db_upgrade',
'Count of ALTER DATABASE ... UPGRADE DATA DIRECTORY NAMEstatements',
False,
['Commands/DDL']),
( 'Com_alter_event',
'Count for ALTER EVENT statements',
False,
['Commands/DDL']),
( 'Com_alter_function',
'Count of ALTER FUNCTION statements',
False,
['Commands/DDL']),
( 'Com_alter_procedure',
'Count of ALTER PROCEDURE statements',
False,
['Commands/DDL']),
( 'Com_alter_server',
'Count of ALTER SERVER statements',
False,
['Commands/DDL']),
( 'Com_alter_table',
'Count of ALTER TABLE statements',
False,
['Commands/DDL']),
( 'Com_alter_tablespace',
'Count of ALTER TABLESPACE statements',
False,
['Commands/DDL']),
( 'Com_alter_user',
'Count of ALTER USER statements',
False,
['Commands/Admin']),
('Com_analyze', 'Count of ANALYZE statements', False, ['Commands/General']),
( 'Com_assign_to_keycache',
'Count of CACHE INDEX statements',
False,
['Commands/General']),
('Com_backup', 'Count of BACKUP DATABASE statements', False, []),
('Com_backup_table', 'Count of BACKUP TABLE statements', False, []),
('Com_begin', 'Count of BEGIN statements', False, ['Commands/Transaction']),
( 'Com_binlog',
'Count of BINLOG statements',
False,
['Binlog', 'Commands/General']),
( 'Com_call_procedure',
'Number of calls to stored procedures',
False,
['Commands/DML']),
( 'Com_change_db',
'Count of CHANGE DATABASE statements',
False,
['Commands/General']),
( 'Com_change_master',
'Count of CHANGE MASTER TO statements',
False,
['Commands/Admin']),
( 'Com_change_repl_filter',
'Count of CHANGE REPLICATION FILTER statements',
False,
[]),
('Com_check', 'Count of CHECK statements', False, ['Commands/Admin']),
( 'Com_checksum',
'Count of CHECKSUM statements',
False,
['Commands/General']),
('Com_commit', 'Count of COMMIT statements', False, ['Commands/General']),
( 'Com_create_db',
'Count of CREATE DATABASE statements',
False,
['Commands/DDL']),
( 'Com_create_event',
'Count of CREATE EVENT statements',
False,
['Commands/DDL']),
( 'Com_create_function',
'Count of CREATE FUNCTION statements',
False,
['Commands/DDL']),
( 'Com_create_index',
'Count of CREATE INDEX statements',
False,
['Commands/DDL']),
( 'Com_create_procedure',
'Count of CREATE PROCEDURE statements',
False,
['Commands/DDL']),
( 'Com_create_server',
'Count of CREATE SERVER statements',
False,
['Commands/DDL']),
( 'Com_create_table',
'Count of CREATE TABLE statements',
False,
['Commands/DDL']),
( 'Com_create_trigger',
'Count of CREATE TRIGGER statements',
False,
['Commands/DDL']),
( 'Com_create_udf',
'Count of CREATE FUNCTION (UDF) statements',
False,
['Commands/Admin']),
( 'Com_create_user',
'Count of CREATE USER statements',
False,
['Commands/Admin']),
( 'Com_create_view',
'Count of CREATE VIEW statements',
False,
['Commands/DDL']),
( 'Com_dealloc_sql',
'Count of DEALLOCATE PREPARE statements',
False,
['Commands/DML']),
('Com_delete', 'Count of DELETE statements', False, ['Commands/DML']),
( 'Com_delete_multi',
'Count of multiple table DELETE statements',
False,
['Commands/DML']),
('Com_do', 'Count of DO statements', False, ['Commands/DML']),
( 'Com_drop_db',
'Count of DROP DATABASE statements',
False,
['Commands/DDL']),
( 'Com_drop_event',
'Count of DROP EVENT statements',
False,
['Commands/DDL']),
( 'Com_drop_function',
'Count of DROP FUNCTION statements',
False,
['Commands/DDL']),
( 'Com_drop_index',
'Count of DROP INDEX statements',
False,
['Commands/DDL']),
( 'Com_drop_procedure',
'Count of DROP PROCEDURE statements',
False,
['Commands/DDL']),
( 'Com_drop_server',
'Count of DROP SERVER statements',
False,
['Commands/DDL']),
( 'Com_drop_table',
'Count of DROP TABLE statements',
False,
['Commands/DDL']),
( 'Com_drop_trigger',
'Count of DROP TRIGGER statements',
False,
['Commands/DDL']),
('Com_drop_user', 'Count of DROP USER statements', False, ['Commands/DDL']),
('Com_drop_view', 'Count of DROP_VIEW statements', False, ['Commands/DDL']),
( 'Com_empty_query',
'Count of empty statements',
False,
['Commands/General']),
( 'Com_execute_sql',
'Count of EXECUTE statements',
False,
['Commands/General']),
( 'Com_explain_other',
'Count of EXPLAIN FOR CONNECTION statements',
False,
['Commands/General']),
('Com_flush', 'Count of FLUSH statements', False, ['Commands/General']),
( 'Com_get_diagnostics',
'Count of GET DIAGNOSTICS statements',
False,
['Commands/Admin']),
('Com_grant', 'Count of GRANT statements', False, ['Commands/Admin']),
( 'Com_ha_close',
'Count of HANDLER CLOSE statements',
False,
['Commands/Admin']),
( 'Com_ha_open',
'Count of HANDLER OPEN statements',
False,
['Commands/Admin']),
( 'Com_ha_read',
'Count of HANDLER READ statements',
False,
['Commands/Admin']),
('Com_help', 'Count of HELP statements', False, ['Commands/General']),
('Com_insert', 'Count of INSERT statements', False, ['Commands/DML']),
( 'Com_insert_select',
'Count of INSERT SELECT statements',
False,
['Commands/DML']),
( 'Com_install_plugin',
'Count of INSTALL PLUGIN statements',
False,
['Commands/Admin']),
('Com_kill', 'Count of KILL statements', False, ['Commands/Admin']),
('Com_load', 'Count of LOAD statements', False, ['Commands/Admin']),
( 'Com_load_master_data',
'Count of LOAD MASTER DATA statements',
False,
['Commands/Admin']),
( 'Com_load_master_table',
'Count of LOAD MASTER TABLE statements',
False,
['Commands/Admin']),
( 'Com_lock_tables',
'Count of LOCK TABLES statements',
False,
['Commands/General']),
('Com_optimize', 'Count of OPTIMIZE statements', False, ['Commands/Admin']),
( 'Com_preload_keys',
'Count of PRELOAD KEYS statements',
False,
['Commands/Admin']),
('Com_prepare_sql', 'Count of PREPARE statements', False, ['Commands/DML']),
('Com_purge', 'Count of PURGE statements', False, ['Commands/Admin']),
( 'Com_purge_before_date',
'Count of PURGE BEFORE DATE statements',
False,
['Commands/Admin']),
( 'Com_purge_bup_log',
'Count of PURGE BACKUP LOG statements',
False,
['Commands/Admin']),
( 'Com_release_savepoint',
'Count of RELEASE SAVEPOINT statements',
False,
['Commands/Admin']),
( 'Com_rename_table',
'Count of RENAME TABLE statements',
False,
['Commands/DDL']),
( 'Com_rename_user',
'Count of RENAME USER statements',
False,
['Commands/Admin']),
('Com_repair', 'Count of REPAIR statements', False, ['Commands/Admin']),
('Com_replace', 'Count of REPLACE statements', False, ['Commands/DML']),
( 'Com_replace_select',
'Count of REPLACE SELECT statements',
False,
['Commands/DML']),
('Com_reset', 'Count of RESET statements', False, ['Commands/Admin']),
('Com_resignal', 'Count of RESIGNAL statements', False, ['Commands/Admin']),
( 'Com_restore',
'Count of RESTORE DATABASE statements',
False,
['Commands/Admin']),
( 'Com_restore_table',
'Count of RESTORE TABLE statements',
False,
['Commands/Admin']),
('Com_revoke', 'Count of REVOKE statements', False, ['Commands/Admin']),
( 'Com_revoke_all',
'Count of REVOKE ALL statements',
False,
['Commands/Admin']),
( 'Com_rollback',
'Count of ROLLBACK statements',
False,
['Commands/Transaction']),
( 'Com_rollback_to_savepoint',
'Count of ROLLBACK TO SAVEPOINT statements',
False,
['Commands/Transaction']),
( 'Com_savepoint',
'Count of SAVEPOINT statements',
False,
['Commands/Transaction']),
('Com_select', 'Count of SELECT statements', False, ['Commands/General']),
( 'Com_set_option',
'Count of SET OPTION statements',
False,
['Commands/General']),
( 'Com_show_authors',
'Count of SHOW AUTHORS statements',
False,
['Commands/Show']),
( 'Com_show_binlog_events',
'Count of SHOW BINLOG EVENTS statements',
False,
['Commands/Show']),
( 'Com_show_binlogs',
'Count of SHOW BINLOGS statements',
False,
['Commands/Show']),
( 'Com_show_charsets',
'Count of SHOW CHARSET statements',
False,
['Commands/Show']),
( 'Com_show_collations',
'Count of SHOW COLLATION statements',
False,
['Commands/Show']),
( 'Com_show_column_types',
'Count of SHOW COLUMN TYPES statements',
False,
['Commands/Show']),
( 'Com_show_contributors',
'Count of SHOW CONTRIBUTORS statements',
False,
['Commands/Show']),
( 'Com_show_create_db',
'Count of SHOW CREATE DATABASE statements',
False,
['Commands/Show']),
( 'Com_show_create_event',
'Count of SHOW CREATE EVENT statements',
False,
['Commands/Show']),
( 'Com_show_create_func',
'Count of SHOW CREATE FUNCTION statements',
False,
['Commands/Show']),
( 'Com_show_create_proc',
'Count of SHOW CREATE PROCEDURE statements',
False,
['Commands/Show']),
( 'Com_show_create_table',
'Count of SHOW CREATE TABLE statements',
False,
['Commands/Show']),
( 'Com_show_create_trigger',
'Count of SHOW CREATE TRIGGER statements',
False,
['Commands/Show']),
( 'Com_show_create_user',
'Count of SHOW CREATE USER statements',
False,
['Commands/Show']),
( 'Com_show_databases',
'Count of SHOW DATABASES statements',
False,
['Commands/Show']),
( 'Com_show_engine_logs',
'Count of SHOW ENGINE LOGS statements',
False,
['Commands/Show']),
( 'Com_show_engine_mutex',
'Count of SHOW ENGINE MUTEX statements',
False,
['Commands/Show']),
( 'Com_show_engine_status',
'Count of SHOW ENGINE STATUS statements',
False,
['Commands/Show']),
( 'Com_show_errors',
'Count of SHOW ERRORS statements',
False,
['Commands/Show']),
( 'Com_show_events',
'Count of SHOW EVENTS statements',
False,
['Commands/Show']),
( 'Com_show_fields',
'Count of SHOW FIELDS statements',
False,
['Commands/Show']),
( 'Com_show_function_code',
'Count of SHOW FUNCTION CODE statements',
False,
['Commands/Show']),
( 'Com_show_function_status',
'Count of SHOW FUNCTION STATUS statements',
False,
['Commands/Show']),
( 'Com_show_grants',
'Count of SHOW GRANTS statements',
False,
['Commands/Show']),
( 'Com_show_innodb_status',
'Count of SHOW INNODB STATUS statements',
False,
['Commands/Show']),
('Com_show_keys', 'Count of SHOW KEYS statements', False, ['Commands/Show']),
('Com_show_logs', 'Count of SHOW LOGS statements', False, ['Commands/Show']),
( 'Com_show_master_status',
'Count of SHOW MASTER STATUS statements',
False,
['Commands/Show']),
( 'Com_show_ndb_status',
'Count of SHOW NDB STATUS statements',
False,
['Commands/Show']),
( 'Com_show_new_master',
'Count of SHOW NEW MASTER statements',
False,
['Commands/Show']),
( 'Com_show_open_tables',
'Count of SHOW OPEN TABLES statements',
False,
['Commands/Show']),
( 'Com_show_plugins',
'Count of SHOW PLUGINS statements',
False,
['Commands/Show']),
( 'Com_show_privileges',
'Count of SHOW PRIVILEGES statements',
False,
['Commands/Show']),
( 'Com_show_procedure_code',
'Count of SHOW PROCEDURE CODE statements',
False,
['Commands/Show']),
( 'Com_show_procedure_status',
'Count of SHOW PROCEDURE STATUS statements',
False,
['Commands/Show']),
( 'Com_show_processlist',
'Count of SHOW PROCESSLIST statements',
False,
['Commands/Show']),
( 'Com_show_profile',
'Count of SHOW PROFILE statements',
False,
['Commands/Show']),
( 'Com_show_profiles',
'Count of SHOW PROFILES statements',
False,
['Commands/Show']),
( 'Com_show_relaylog_events',
'Count of SHOW RELAYLOG EVENTS statements',
False,
['Commands/Show']),
( 'Com_show_slave_hosts',
'Count of SHOW SLAVE HOSTS statements',
False,
['Commands/Show']),
( 'Com_show_slave_status',
'Count of SHOW SLAVE STATUS statements',
False,
['Commands/Show']),
( 'Com_show_slave_status_nonblocking',
'Count of SHOW SLAVE STATUS NONBLOCKING statements',
False,
['Commands/Show']),
( 'Com_show_status',
'Count of SHOW STATUS statements',
False,
['Commands/Show']),
( 'Com_show_storage_engines',
'Count of SHOW STORAGE ENGINES statements',
False,
['Commands/Show']),
( 'Com_show_table_status',
'Count of SHOW TABLE STATUS statements',
False,
['Commands/Show']),
( 'Com_show_tables',
'Count of SHOW TABLES statements',
False,
['Commands/Show']),
( 'Com_show_triggers',
'Count of SHOW TRIGGERS statements',
False,
['Commands/Show']),
( 'Com_show_variables',
'Count of SHOW VARIABLES statements',
False,
['Commands/Show']),
( 'Com_show_warnings',
'Count of SHOW WARNINGS statements',
False,
['Commands/Show']),
('Com_shutdown', 'Count of SHUTDOWN statements', False, ['Commands/Show']),
('Com_signal', 'Count of SIGNAL statements', False, ['Commands/Admin']),
( 'Com_slave_start',
'Count of START SLAVE statements',
False,
['Commands/Replication']),
( 'Com_slave_stop',
'Count of STOP SLAVE statements',
False,
['Commands/Replication']),
( 'Com_stmt_close',
'Count of STATEMENT CLOSE statements',
False,
['Commands/Prepared Statement']),
( 'Com_stmt_execute',
'Count of STATEMENT EXECUTE statements',
False,
['Commands/Prepared Statement']),
( 'Com_stmt_fetch',
'Count of STATEMENT FETCH statements',
False,
['Commands/Prepared Statement']),
( 'Com_stmt_prepare',
'Count of STATEMENT PREPARE statements',
False,
['Commands/Prepared Statement']),
( 'Com_stmt_reprepare',
'Count of automatic repreparations of prepared statements',
False,
['Commands/Prepared Statement']),
( 'Com_stmt_reset',
'Count of STATEMENT RESET statements',
False,
['Commands/Prepared Statement']),
( 'Com_stmt_send_long_data',
'Count of STATEMENT SEND LONG DATA statements',
False,
['Commands/Prepared Statement']),
('Com_truncate', 'Count of TRUNCATE statements', False, ['Commands/DML']),
( 'Com_uninstall_plugin',
'Count of UNINSTALL PLUGIN statements',
False,
['Commands/Admin']),
( 'Com_unlock_tables',
'Count of UNLOCK TABLES statements',
False,
['Commands/Admin']),
('Com_update', 'Count of UPDATE statements', False, ['Commands/DML']),
( 'Com_update_multi',
'Count of multiple UPDATE statements',
False,
['Commands/DML']),
( 'Com_xa_commit',
'Count of XA COMMIT statements',
False,
['Commands/Transaction']),
( 'Com_xa_end',
'Count of XA END statements',
False,
['Commands/Transaction']),
( 'Com_xa_prepare',
'Count of XA PREPARE statements',
False,
['Commands/Transaction']),
( 'Com_xa_recover',
'Count of XA RECOVER statements',
False,
['Commands/Transaction']),
( 'Com_xa_rollback',
'Count of XA ROLLBACK statements',
False,
['Commands/Transaction']),
( 'Com_xa_start',
'Count of XA START statements',
False,
['Commands/Transaction']),
( 'Compression',
'Whether the client connection uses compression in the client/server protocol',
False,
['General']),
( 'Connection_errors_accept',
'Number of errors calling accept on the listening port',
False,
['Networking/Errors']),
( 'Connection_errors_internal',
'Number of connections refused due to internal errors',
False,
['Networking/Errors']),
( 'Connection_errors_max_connections',
'Number of connections refused due to the max_connections limit',
False,
['Networking/Errors']),
( 'Connection_errors_peer_addr',
'Number of errors searching for connection client IP addresses',
False,
['Networking/Errors']),
( 'Connection_errors_select',
'Number of errors calling select/poll on the listening port',
False,
['Networking/Errors']),
( 'Connection_errors_tcpwrap',
'Number of connections refused by libwrap',
False,
['Networking/Errors']),
( 'Connections',
'Number of connection attempts',
False,
['Networking/Stats']),
( 'Created_tmp_disk_tables',
'Number of temporary tables on disk created automatically by the server while executing statements',
False,
['General']),
( 'Created_tmp_files',
'How many temporary files mysqld has created',
False,
['General']),
( 'Created_tmp_tables',
'How many temporary tables mysqld has created',
False,
['General']),
( 'Delayed_errors',
'Number of rows written with INSERT DELAYED for which some error occurred',
False,
['General']),
( 'Delayed_insert_threads',
'Number of INSERT DELAYED thread handlers in use',
False,
['General']),
( 'Delayed_writes',
'Number of INSERT DELAYED rows written',
False,
['General']),
( 'Firewall_access_denied',
'Number of statements rejected by MySQL Enterprise Firewall',
False,
['Firewall']),
( 'Firewall_access_granted',
'Number of statements accepted by MySQL Enterprise Firewall',
False,
['Firewall']),
( 'Firewall_cached_entries',
'Number of statements recorded by MySQL Enterprise Firewall',
False,
['Firewall']),
( 'Flush_commands',
'Number of FLUSH statements executed',
False,
['General']),
( 'Handler_commit',
'Number of internal COMMIT statements',
False,
['Handler']),
( 'Handler_delete',
'Number of times that rows have been deleted from tables',
False,
['Handler']),
( 'Handler_discover',
'Number of times that tables have been discovered',
False,
['Handler']),
( 'Handler_external_lock',
'Number of locks started while a statement executed.',
False,
['Handler']),
( 'Handler_mrr_init',
'Number of times storage engine MRR implementation is used for table access',
False,
['Handler']),
( 'Handler_prepare',
'A counter for the prepare phase of two-phase commit operations',
False,
['Handler']),
( 'Handler_read_first',
'Number of times the first entry in an index was read',
False,
['Handler']),
( 'Handler_read_key',
'Number of requests to read a row based on a key',
False,
['Handler']),
( 'Handler_read_last',
'Number of requests to read the last index entry',
False,
['Handler']),
( 'Handler_read_next',
'Number of requests to read the next row in key order',
False,
['Handler']),
( 'Handler_read_prev',
'Number of requests to read the previous row in key order',
False,
['Handler']),
( 'Handler_read_rnd',
'Number of requests to read a row based on a fixed position',
False,
['Handler']),
( 'Handler_read_rnd_next',
'Number of requests to read the next row in the data file',
False,
['Handler']),
( 'Handler_rollback',
'Number of requests for a storage engine to perform a rollback operation',
False,
['Handler']),
( 'Handler_savepoint',
'Number of requests for a storage engine to place a savepoint',
False,
['Handler']),
( 'Handler_savepoint_rollback',
'Number of requests for a storage engine to roll back to a savepoint',
False,
['Handler']),
( 'Handler_update',
'Number of requests to update a row in a table',
False,
['Handler']),
( 'Handler_write',
'Number of requests to insert a row in a table',
False,
['Handler']),
( 'Innodb_available_undo_logs',
'Display total number of InnoDB rollback segments; different from innodb_undo_logs, which displays the number of active rollback segments',
False,
['InnoDB/Stats']),
( 'Innodb_buffer_pool_bytes_data',
'Number of bytes containing data (dirty or clean) in the buffer pool',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_bytes_dirty',
'Number of bytes currently dirty in the buffer pool',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_dump_status',
'Display status of buffer pool recording operation triggered by innodb_buffer_pool_dump_at_shutdown or innodb_buffer_pool_dump_now',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_load_status',
'Display status of buffer pool warmup operation triggered by innodb_buffer_pool_load_at_startup or innodb_buffer_pool_load_now',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_pages_data',
'Number of pages containing data (dirty or clean) in the buffer pool',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_pages_dirty',
'Number of pages currently dirty in the buffer pool',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_pages_flushed',
'Number of buffer pool page-flush requests',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_pages_free',
'Number of buffer pool pages free',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_pages_latched',
'Number of latched pages in InnoDB buffer pool',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_pages_misc',
'Number of pages that are busy because they have been allocated for administrative overhead',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_pages_total',
'The total size of buffer pool, in pages',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_read_ahead',
'Number of pages read by the InnoDB read-ahead thread',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_read_ahead_evicted',
'Number of read-ahead pages evicted without being accessed',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_read_ahead_rnd',
'Number of random read-aheads initiated by InnoDB',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_read_ahead_seq',
'Number of sequential read-aheads initiated by InnoDB',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_read_requests',
'Number of logical read requests InnoDB has done',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_reads',
'Number of logical reads that InnoDB could not satisfy from the buffer pool and had to do a single-page read',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_resize_status',
'The status of the dynamic buffer pool resizing operation.',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_wait_free',
'Counts number of waits for pages to be flushed',
False,
['InnoDB/Buffer pool']),
( 'Innodb_buffer_pool_write_requests',
'Number of writes done to the buffer pool',
False,
['InnoDB/Buffer pool']),
( 'Innodb_data_fsyncs',
'Number of fsync() operations so far',
False,
['InnoDB/Data']),
( 'Innodb_data_pending_fsyncs',
'The current number of pending fsync() operations',
False,
['InnoDB/Data']),
( 'Innodb_data_pending_reads',
'The current number of pending reads',
False,
['InnoDB/Data']),
( 'Innodb_data_pending_writes',
'Number of pending writes',
False,
['InnoDB/Data']),
( 'Innodb_data_read',
'The amount of data read so far, in bytes',
False,
['InnoDB/Data', 'InnoDB/Stats']),
( 'Innodb_data_reads',
'The total number of data reads',
False,
['InnoDB/Data', 'InnoDB/Stats']),
( 'Innodb_data_writes',
'The total number of data writes',
False,
['InnoDB/Data', 'InnoDB/Stats']),
( 'Innodb_data_written',
'The amount of data written in bytes',
False,
['InnoDB/Data', 'InnoDB/Stats']),
( 'Innodb_dblwr_pages_written',
'Number of doublewrite pages that have been written',
False,
['InnoDB/General']),
( 'Innodb_dblwr_writes',
'Number of doublewrite operations that have been performed',
False,
['InnoDB/General']),
( 'Innodb_have_atomic_builtins',
'Whether atomic instructions are available',
False,
['InnoDB/General']),
( 'Innodb_have_sync_atomic',
'Whether atomic instructions are available',
False,
['InnoDB/General']),
( 'Innodb_heap_enabled',
'Whether the InnoDB memory heap is enabled',
False,
['InnoDB/General']),
( 'Innodb_log_waits',
'Number of times that the log buffer was too small and a wait was required for it to be flushed before continuing',
False,
['InnoDB/Stats']),
( 'Innodb_log_write_requests',
'Number of log write requests',
False,
['InnoDB/Stats']),
( 'Innodb_log_writes',
'Number of physical writes to the log',
False,
['InnoDB/Stats']),
( 'Innodb_num_open_files',
'Number of physical files currently opened by InnoDB',
False,
['InnoDB/Stats']),
( 'Innodb_os_log_fsyncs',
'Number of fsync() writes done to the log file',
False,
['InnoDB/Stats']),
( 'Innodb_os_log_pending_fsyncs',
'Number of pending log file fsync() operations',
False,
['InnoDB/Stats']),
( 'Innodb_os_log_pending_writes',
'Number of pending log file writes',
False,
['InnoDB/Stats']),
( 'Innodb_os_log_written',
'Number of bytes written to the log file',
False,
['InnoDB/Stats']),
( 'Innodb_page_size',
'The compiled-in InnoDB page size',
False,
['InnoDB/Stats']),
('Innodb_pages_created', 'Number of pages created', False, ['InnoDB/Stats']),
('Innodb_pages_read', 'Number of pages read', False, ['InnoDB/Stats']),
('Innodb_pages_written', 'Number of pages written', False, ['InnoDB/Stats']),
( 'Innodb_row_lock_current_waits',
'Number of row locks currently being waited for',
False,
['InnoDB/Stats']),
( 'Innodb_row_lock_time',
'The total time spent in acquiring row locks, in milliseconds',
False,
['InnoDB/Stats']),
( 'Innodb_row_lock_time_avg',
'The average time to acquire a row lock, in milliseconds',
False,
['InnoDB/Stats']),
( 'Innodb_row_lock_time_max',
'The maximum time to acquire a row lock, in milliseconds',
False,
['InnoDB/Stats']),
( 'Innodb_row_lock_waits',
'Number of times a row lock had to be waited for',
False,
['InnoDB/Stats']),
( 'Innodb_rows_deleted',
'Number of rows deleted from InnoDB tables',
False,
['InnoDB/Stats']),
( 'Innodb_rows_inserted',
'Number of rows inserted into InnoDB tables',
False,
['InnoDB/Stats']),
( 'Innodb_rows_read',
'Number of rows read from InnoDB tables',
False,
['InnoDB/Stats']),
( 'Innodb_rows_updated',
'Number of rows updated in InnoDB tables',
False,
['InnoDB/Stats']),
( 'Innodb_truncated_status_writes',
'Number of times output from the SHOW ENGINE INNODB STATUS statement has been truncated',
False,
['InnoDB/Stats']),
( 'Innodb_wake_ups',
'Number of wakeups that should not occur',
False,
['InnoDB/Stats']),
( 'Key_blocks_not_flushed',
'Number of key blocks in the key cache that have changed but have not yet been flushed to disk',
False,
['Keycache']),
( 'Key_blocks_unused',
'Number of unused blocks in the key cache',
False,
['Keycache']),
( 'Key_blocks_used',
'Number of used blocks in the key cache',
False,
['Keycache']),
( 'Key_read_requests',
'Number of requests to read a key block from the cache',
False,
['Keycache']),
( 'Key_reads',
'Number of physical reads of a key block from disk',
False,
['Keycache']),
( 'Key_write_requests',
'Number of requests to write a key block to the cache',
False,
['Keycache']),
( 'Key_writes',
'Number of physical writes of a key block from disk',
False,
['Keycache']),
( 'Last_query_cost',
'The total cost of the last compiled query as computed by the query optimizer',
False,
['Performance']),
( 'Last_query_partial_plans',
'Number of iterations in execution plan construction for the previous statement.',
False,
['Performance']),
( 'Locked_connects',
'Number of attempts to connect to locked accounts',
False,
['Networking/Stats']),
( 'Max_execution_time_exceeded',
'Number of statements that exceeded the execution timeout value',
False,
['Networking/Stats']),
( 'Max_execution_time_set',
'Number of statements for which execution timeout was set',
False,
['Networking/Stats']),
( 'Max_execution_time_set_failed',
'Number of statements for which execution timeout setting failed',
False,
['Networking/Stats']),
( 'Max_statement_time_exceeded',
'Number of statements that exceeded the execution timeout value',
False,
['Networking/Stats']),
( 'Max_statement_time_set',
'Number of statements for which execution timeout was set',
False,
['Networking/Stats']),
( 'Max_statement_time_set_failed',
'Number of statements for which execution timeout setting failed',
False,
['Networking/Stats']),
( 'Max_used_connections',
'The maximum number of connections that have been in use simultaneously since the server started',
False,
['Networking/Stats']),
( 'Max_used_connections_time',
'The time at which Max_used_connections reached its current value',
False,
['Networking/Stats']),
( 'mecab_charset',
'The character set currently used by the MeCab full-text parser plugin.',
False,
[]),
('ndb-nodeid', 'MySQL Cluster node ID for this MySQL server', False, []),
( 'Ndb_api_bytes_received_count',
'Amount of data (in bytes) received from the data nodes by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_bytes_received_count_session',
'Amount of data (in bytes) received from the data nodes in this client session.',
False,
['NDB']),
( 'Ndb_api_bytes_received_count_slave',
'Amount of data (in bytes) received from the data nodes by this slave.',
False,
['NDB']),
( 'Ndb_api_bytes_sent_count',
'Amount of data (in bytes) sent to the data nodes by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_bytes_sent_count_session',
'Amount of data (in bytes) sent to the data nodes in this client session.',
False,
['NDB']),
( 'Ndb_api_bytes_sent_count_slave',
'Amount of data (in bytes) sent to the data nodes by this slave.',
False,
['NDB']),
( 'Ndb_api_event_bytes_count',
'Number of bytes of events received by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_event_bytes_count_injector',
'Number of bytes of events received by the NDB binary log injector thread.',
False,
['NDB']),
( 'Ndb_api_event_data_count',
'Number of row change events received by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_event_data_count_injector',
'Number of row change events received by the NDB binary log injector thread.',
False,
['NDB']),
( 'Ndb_api_event_nondata_count',
'Number of events received, other than row change events, by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_event_nondata_count_injector',
'Number of events received, other than row change events, by the NDB binary log injector thread.',
False,
['NDB']),
( 'Ndb_api_pk_op_count',
'Number of operations based on or using primary keys by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_pk_op_count_session',
'Number of operations based on or using primary keys in this client session.',
False,
['NDB']),
( 'Ndb_api_pk_op_count_slave',
'Number of operations based on or using primary keys by this slave.',
False,
['NDB']),
( 'Ndb_api_pruned_scan_count',
'Number of scans that have been pruned to a single partition by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_pruned_scan_count_session',
'Number of scans that have been pruned to a single partition in this client session.',
False,
['NDB']),
( 'Ndb_api_pruned_scan_count_slave',
'Number of scans that have been pruned to a single partition by this slave.',
False,
['NDB']),
( 'Ndb_api_range_scan_count',
'Number of range scans that have been started by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_range_scan_count_session',
'Number of range scans that have been started in this client session.',
False,
['NDB']),
( 'Ndb_api_range_scan_count_slave',
'Number of range scans that have been started by this slave.',
False,
['NDB']),
( 'Ndb_api_read_row_count',
'Total number of rows that have been read by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_read_row_count_session',
'Total number of rows that have been read in this client session.',
False,
['NDB']),
( 'Ndb_api_read_row_count_slave',
'Total number of rows that have been read by this slave.',
False,
['NDB']),
( 'Ndb_api_scan_batch_count',
'Number of batches of rows received by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_scan_batch_count_session',
'Number of batches of rows received in this client session.',
False,
['NDB']),
( 'Ndb_api_scan_batch_count_slave',
'Number of batches of rows received by this slave.',
False,
['NDB']),
( 'Ndb_api_table_scan_count',
'Number of table scans that have been started, including scans of internal tables, by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_table_scan_count_session',
'Number of table scans that have been started, including scans of internal tables, in this client session.',
False,
['NDB']),
( 'Ndb_api_table_scan_count_slave',
'Number of table scans that have been started, including scans of internal tables, by this slave.',
False,
['NDB']),
( 'Ndb_api_trans_abort_count',
'Number of transactions aborted by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_trans_abort_count_session',
'Number of transactions aborted in this client session.',
False,
['NDB']),
( 'Ndb_api_trans_abort_count_slave',
'Number of transactions aborted by this slave.',
False,
['NDB']),
( 'Ndb_api_trans_close_count',
'Number of transactions aborted (may be greater than the sum of TransCommitCount and TransAbortCount) by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_trans_close_count_session',
'Number of transactions aborted (may be greater than the sum of TransCommitCount and TransAbortCount) in this client session.',
False,
['NDB']),
( 'Ndb_api_trans_close_count_slave',
'Number of transactions aborted (may be greater than the sum of TransCommitCount and TransAbortCount) by this slave.',
False,
['NDB']),
( 'Ndb_api_trans_commit_count',
'Number of transactions committed by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_trans_commit_count_session',
'Number of transactions committed in this client session.',
False,
['NDB']),
( 'Ndb_api_trans_commit_count_slave',
'Number of transactions committed by this slave.',
False,
['NDB']),
( 'Ndb_api_trans_local_read_row_count',
'Total number of rows that have been read by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_trans_local_read_row_count_session',
'Total number of rows that have been read in this client session.',
False,
['NDB']),
( 'Ndb_api_trans_local_read_row_count_slave',
'Total number of rows that have been read by this slave.',
False,
['NDB']),
( 'Ndb_api_trans_start_count',
'Number of transactions started by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_trans_start_count_session',
'Number of transactions started in this client session.',
False,
['NDB']),
( 'Ndb_api_trans_start_count_slave',
'Number of transactions started by this slave.',
False,
['NDB']),
( 'Ndb_api_uk_op_count',
'Number of operations based on or using unique keys by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_uk_op_count_session',
'Number of operations based on or using unique keys in this client session.',
False,
['NDB']),
( 'Ndb_api_uk_op_count_slave',
'Number of operations based on or using unique keys by this slave.',
False,
['NDB']),
( 'Ndb_api_wait_exec_complete_count',
'Number of times thread has been blocked while waiting for execution of an operation to complete by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_wait_exec_complete_count_session',
'Number of times thread has been blocked while waiting for execution of an operation to complete in this client session.',
False,
['NDB']),
( 'Ndb_api_wait_exec_complete_count_slave',
'Number of times thread has been blocked while waiting for execution of an operation to complete by this slave.',
False,
['NDB']),
( 'Ndb_api_wait_meta_request_count',
'Number of times thread has been blocked waiting for a metadata-based signal by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_wait_meta_request_count_session',
'Number of times thread has been blocked waiting for a metadata-based signal in this client session.',
False,
['NDB']),
( 'Ndb_api_wait_meta_request_count_slave',
'Number of times thread has been blocked waiting for a metadata-based signal by this slave.',
False,
['NDB']),
( 'Ndb_api_wait_nanos_count',
'Total time (in nanoseconds) spent waiting for some type of signal from the data nodes by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_wait_nanos_count_session',
'Total time (in nanoseconds) spent waiting for some type of signal from the data nodes in this client session.',
False,
['NDB']),
( 'Ndb_api_wait_nanos_count_slave',
'Total time (in nanoseconds) spent waiting for some type of signal from the data nodes by this slave.',
False,
['NDB']),
( 'Ndb_api_wait_scan_result_count',
'Number of times thread has been blocked while waiting for a scan-based signal by this MySQL Server (SQL node).',
False,
['NDB']),
( 'Ndb_api_wait_scan_result_count_session',
'Number of times thread has been blocked while waiting for a scan-based signal in this client session.',
False,
['NDB']),
( 'Ndb_api_wait_scan_result_count_slave',
'Number of times thread has been blocked while waiting for a scan-based signal by this slave.',
False,
['NDB']),
( 'Ndb_cluster_node_id',
'If the server is acting as a MySQL Cluster node, then the value of this variable its node ID in the cluster',
False,
['NDB']),
( 'Ndb_config_from_host',
'The host name or IP address of the Cluster management server. Formerly Ndb_connected_host',
False,
['NDB']),
( 'Ndb_config_from_port',
'The port for connecting to Cluster management server. Formerly Ndb_connected_port',
False,
['NDB']),
( 'Ndb_conflict_fn_epoch',
'Number of rows that have been found in conflict by the NDB$EPOCH() conflict detection function',
False,
['NDB']),
( 'Ndb_conflict_fn_epoch2',
'Number of rows that have been found in conflict by the NDB$EPOCH2() conflict detection function',
False,
['NDB']),
( 'Ndb_conflict_fn_epoch2_trans',
'Number of rows that have been found in conflict by the NDB$EPOCH2_TRANS() conflict detection function',
False,
['NDB']),
( 'Ndb_conflict_fn_epoch_trans',
'Number of rows that have been found in conflict by the NDB$EPOCH_TRANS() conflict detection function',
False,
['NDB']),
( 'Ndb_conflict_fn_max',
'If the server is part of a MySQL Cluster involved in cluster replication, the value of this variable indicates the number of times that conflict resolution based on "greater timestamp wins" has been applied',
False,
['NDB']),
( 'Ndb_conflict_fn_max_del_win',
'Number of times that conflict resolution based on outcome of NDB$MAX_DELETE_WIN() has been applied.',
False,
['NDB']),
( 'Ndb_conflict_fn_old',
'If the server is part of a MySQL Cluster involved in cluster replication, the value of this variable indicates the number of times that "same timestamp wins" conflict resolution has been applied',
False,
['NDB']),
( 'Ndb_conflict_last_stable_epoch',
'Number of rows found to be in conflict by a transactional conflict function',
False,
['NDB']),
( 'Ndb_conflict_reflected_op_discard_count',
'Number of reflected operations that were not applied due an error during execution.',
False,
['NDB']),
( 'Ndb_conflict_reflected_op_prepare_count',
'Number of reflected operations received that have been prepared for execution.',
False,
['NDB']),
( 'Ndb_conflict_refresh_op_count',
'Number of refresh operations that have been prepared.',
False,
['NDB']),
( 'Ndb_conflict_trans_conflict_commit_count',
'Number of epoch transactions committed after requiring transactional conflict handling.',
False,
['NDB']),
( 'Ndb_conflict_trans_detect_iter_count',
'Number of internal iterations required to commit an epoch transaction. Should be (slightly) greater than or equal to Ndb_conflict_trans_conflict_commit_count.',
False,
['NDB']),
( 'Ndb_conflict_trans_reject_count',
'Number of transactions rejected after being found in conflict by a transactional conflict function.',
False,
['NDB']),
( 'Ndb_conflict_trans_row_conflict_count',
'Number of rows found in conflict by a transactional conflict function. Includes any rows included in or dependent on conflicting transactions.',
False,
['NDB']),
( 'Ndb_conflict_trans_row_reject_count',
'Total number of rows realigned after being found in conflict by a transactional conflict function. Includes Ndb_conflict_trans_row_conflict_count and any rows included in or dependent on conflicting transactions.',
False,
['NDB']),
( 'Ndb_epoch_delete_delete_count',
'Number of delete-delete conflicts detected (delete operation is applied, but row does not exist)',
False,
['NDB']),
( 'Ndb_execute_count',
'Provides the number of round trips to the NDB kernel made by operations',
False,
['NDB']),
( 'Ndb_last_commit_epoch_server',
'Epoch most recently committed by NDB.',
False,
['NDB']),
( 'Ndb_last_commit_epoch_session',
'Epoch most recently committed by this NDB client.',
False,
['NDB']),
( 'Ndb_number_of_data_nodes',
'If the server is part of a MySQL Cluster, the value of this variable is the number of data nodes in the cluster',
False,
['NDB']),
( 'Ndb_pruned_scan_count',
'Number of scans executed by NDB since the cluster was last started where partition pruning could be used',
False,
['NDB']),
( 'Ndb_pushed_queries_defined',
'Number of joins that API nodes have attempted to push down to the data nodes',
False,
['NDB']),
( 'Ndb_pushed_queries_dropped',
'Number of joins that API nodes have tried to push down, but failed',
False,
['NDB']),
( 'Ndb_pushed_queries_executed',
'Number of joins successfully pushed down and executed on the data nodes',
False,
['NDB']),
( 'Ndb_pushed_reads',
'Number of reads executed on the data nodes by pushed-down joins',
False,
['NDB']),
( 'ndb_recv_thread_activation_threshold',
'Activation threshold when receive thread takes over the polling of the cluster connection (measured in concurrently active threads)',
False,
['NDB']),
( 'Ndb_scan_count',
'The total number of scans executed by NDB since the cluster was last started',
False,
['NDB']),
( 'Not_flushed_delayed_rows',
'Number of rows waiting to be written in INSERT DELAY queues',
False,
['General']),
( 'Ongoing_anonymous_gtid_violating_transaction_count',
'Number of ongoing anonymous transactions that violate GTID consistency',
False,
[]),
( 'Ongoing_anonymous_transaction_count',
'Number of ongoing anonymous transactions',
False,
[]),
( 'Ongoing_automatic_gtid_violating_transaction_count',
'Number of ongoing automatic transactions that violate GTID consistency',
False,
[]),
('Open_files', 'Number of files that are open', False, ['General']),
( 'Open_streams',
'Number of streams that are open (used mainly for logging)',
False,
['General']),
( 'Open_table_definitions',
'Number of .frm files in the table cache',
False,
['General']),
('Open_tables', 'Number of tables that are open', False, ['General']),
( 'Opened_files',
'Number of files that have been opened using my_open()',
False,
['General']),
( 'Opened_table_definitions',
'Number of .frm files that have been cached',
False,
['General']),
( 'Opened_tables',
'Number of tables that have been opened',
False,
['General']),
( 'Performance_schema_accounts_lost',
'How many accounts table rows could not be added',
False,
['Performance schema']),
( 'Performance_schema_cond_classes_lost',
'How many condition instruments could not be loaded',
False,
['Performance schema']),
( 'Performance_schema_cond_instances_lost',
'How many condition instrument instances could not be created',
False,
['Performance schema']),
( 'Performance_schema_digest_lost',
'How many digests could not be instrumented',
False,
['Performance schema']),
( 'Performance_schema_file_classes_lost',
'How many file instruments could not be loaded',
False,
['Performance schema']),
( 'Performance_schema_file_handles_lost',
'How many file instrument instances could not be opened',
False,
['Performance schema']),
( 'Performance_schema_file_instances_lost',
'How many file instrument instances could not be created',
False,
['Performance schema']),
( 'Performance_schema_hosts_lost',
'How many hosts table rows could not be added',
False,
['Performance schema']),
( 'Performance_schema_index_stat_lost',
'Number of indexes for which statistics were lost',
False,
['Performance schema']),
( 'Performance_schema_locker_lost',
'How many events are lost or not recorded',
False,
['Performance schema']),
( 'Performance_schema_memory_classes_lost',
'How many memory instruments could not be loaded',
False,
['Performance schema']),
( 'Performance_schema_metadata_lock_lost',
'Number of metadata locks that could not be recorded',
False,
['Performance schema']),
( 'Performance_schema_mutex_classes_lost',
'How many mutex instruments could not be loaded',
False,
['Performance schema']),
( 'Performance_schema_mutex_instances_lost',
'How many mutex instrument instances could not be created',
False,
['Performance schema']),
( 'Performance_schema_nested_statement_lost',
'Number of stored program statements for which statistics were lost',
False,
['Performance schema']),
( 'Performance_schema_prepared_statements_lost',
'Number of prepared statements that could not be instrumented',
False,
['Performance schema']),
( 'Performance_schema_program_lost',
'Number of stored programs for which statistics were lost',
False,
['Performance schema']),
( 'Performance_schema_rwlock_classes_lost',
'How many rwlock instruments could not be loaded',
False,
['Performance schema']),
( 'Performance_schema_rwlock_instances_lost',
'How many rwlock instrument instances could not be created',
False,
['Performance schema']),
( 'Performance_schema_session_connect_attrs_lost',
'How many connection attribute strings could not be created',
False,
['Performance schema']),
( 'Performance_schema_socket_classes_lost',
'How many socket instruments could not be loaded',
False,
['Performance schema']),
( 'Performance_schema_socket_instances_lost',
'How many socket instrument instances could not be created',
False,
['Performance schema']),
( 'Performance_schema_stage_classes_lost',
'How many stage instruments could not be loaded',
False,
['Performance schema']),
( 'Performance_schema_statement_classes_lost',
'How many statement instruments could not be loaded',
False,
['Performance schema']),
( 'Performance_schema_table_handles_lost',
'How many table instrument instances could not be opened',
False,
['Performance schema']),
( 'Performance_schema_table_instances_lost',
'How many table instrument instances could not be created',
False,
['Performance schema']),
( 'Performance_schema_table_lock_stat_lost',
'Number of tables for which lock statistics were lost',
False,
['Performance schema']),
( 'Performance_schema_thread_classes_lost',
'How many thread instruments could not be loaded',
False,
['Performance schema']),
( 'Performance_schema_thread_instances_lost',
'How many thread instrument instances could not be created',
False,
['Performance schema']),
( 'Performance_schema_users_lost',
'How many users table rows could not be added',
False,
['Performance schema']),
( 'Prepared_stmt_count',
'The current number of prepared statements',
False,
['General']),
( 'Qcache_free_blocks',
'Number of free memory blocks in the query cache',
False,
['Query cache']),
( 'Qcache_free_memory',
'The amount of free memory for the query cache',
False,
['Query cache']),
('Qcache_hits', 'Number of query cache hits', False, ['Query cache']),
('Qcache_inserts', 'Number of query cache inserts', False, ['Query cache']),
( 'Qcache_lowmem_prunes',
'Number of queries that were deleted from the query cache due to lack of free memory in the cache',
False,
['Query cache']),
( 'Qcache_not_cached',
'Number of noncached queries (not cacheable, or not cached due to the query_cache_type setting)',
False,
['Query cache']),
( 'Qcache_queries_in_cache',
'Number of queries registered in the query cache',
False,
['Query cache']),
( 'Qcache_total_blocks',
'The total number of blocks in the query cache',
False,
['Query cache']),
( 'Queries',
'Number of statements executed by the server',
False,
['General']),
( 'Questions',
'Number of statements that clients have sent to the server',
False,
['General']),
( 'Rewriter_number_loaded_rules',
'Number of rewrite rules successfully loaded into memory',
False,
[]),
( 'Rewriter_number_reloads',
'Number of reloads of rules table into memory',
False,
[]),
( 'Rewriter_number_rewritten_queries',
'Number of queries rewritten since the plugin was loaded',
False,
[]),
( 'Rewriter_reload_error',
'Whether an error occurred when last loading the rewriting rules into memory',
False,
[]),
( 'Rpl_semi_sync_master_clients',
'Number of semisynchronous slaves',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_net_avg_wait_time',
'The average time the master waited for a slave reply',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_net_wait_time',
'The total time the master waited for slave replies',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_net_waits',
'The total number of times the master waited for slave replies',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_no_times',
'Number of times the master turned off semisynchronous replication',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_no_tx',
'Number of commits not acknowledged successfully',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_status',
'Whether semisynchronous replication is operational on the master',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_timefunc_failures',
'Number of times the master failed when calling time functions',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_tx_avg_wait_time',
'The average time the master waited for each transaction',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_tx_wait_time',
'The total time the master waited for transactions',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_tx_waits',
'The total number of times the master waited for transactions',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_wait_pos_backtraverse',
'The total number of times the master waited for an event with binary coordinates lower than events waited for previously',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_wait_sessions',
'Number of sessions currently waiting for slave replies',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_master_yes_tx',
'Number of commits acknowledged successfully',
False,
['Commands/Replication']),
( 'Rpl_semi_sync_slave_status',
'Whether semisynchronous replication is operational on slave',
False,
['Commands/Replication']),
( 'Rpl_status',
'The status of fail-safe replication (not implemented)',
False,
['Commands/Replication']),
('Rsa_public_key', 'The RSA public key value', False, []),
( 'Select_full_join',
'Number of joins that perform table scans because they do not use indexes',
False,
['General']),
( 'Select_full_range_join',
'Number of joins that used a range search on a reference table',
False,
['General']),
( 'Select_range',
'Number of joins that used ranges on the first table',
False,
['General']),
( 'Select_range_check',
'Number of joins without keys that check for key usage after each row',
False,
['General']),
( 'Select_scan',
'Number of joins that did a full scan of the first table',
False,
['General']),
( 'Slave_heartbeat_period',
"The slave's replication heartbeat interval, in seconds",
False,
['Replication']),
( 'Slave_last_heartbeat',
'Shows when the latest heartbeat signal was received, in TIMESTAMP format.',
False,
['Replication']),
( 'Slave_open_temp_tables',
'Number of temporary tables that the slave SQL thread currently has open',
False,
['Replication']),
( 'Slave_received_heartbeats',
'Number of heartbeats received by a replication slave since previous reset',
False,
['Replication']),
( 'Slave_retried_transactions',
'The total number of times since startup that the replication slave SQL thread has retried transactions',
False,
['Replication']),
( 'Slave_running',
'The state of this server as a replication slave (slave I/O thread status)',
False,
['Replication']),
( 'Slow_launch_threads',
'Number of threads that have taken more than slow_launch_time seconds to create',
False,
['Threading']),
( 'Slow_queries',
'Number of queries that have taken more than long_query_time seconds',
False,
['General']),
( 'Sort_merge_passes',
'Number of merge passes that the sort algorithm has had to do',
False,
['General']),
( 'Sort_range',
'Number of sorts that were done using ranges',
False,
['General']),
('Sort_rows', 'Number of sorted rows', False, ['General']),
( 'Sort_scan',
'Number of sorts that were done by scanning the table',
False,
['General']),
( 'Ssl_accept_renegotiates',
'Number of negotiates needed to establish the connection',
False,
['SSL']),
('Ssl_accepts', 'Number of accepted SSL connections', False, ['SSL']),
('Ssl_callback_cache_hits', 'Number of callback cache hits', False, ['SSL']),
('Ssl_cipher', 'The current SSL cipher', False, ['SSL']),
('Ssl_cipher_list', 'The list of possible SSL ciphers', False, ['SSL']),
( 'Ssl_client_connects',
'Number of SSL connection attempts to an SSL-enabled master',
False,
['SSL']),
( 'Ssl_connect_renegotiates',
'Number of negotiates needed to establish the connection to an SSL-enabled master',
False,
['SSL']),
( 'Ssl_ctx_verify_depth',
'The SSL context verification depth (how many certificates in the chain are tested)',
False,
['SSL']),
('Ssl_ctx_verify_mode', 'The SSL context verification mode', False, ['SSL']),
('Ssl_default_timeout', 'The default SSL timeout', False, ['SSL']),
( 'Ssl_finished_accepts',
'Number of successful SSL connections to the server',
False,
['SSL']),
( 'Ssl_finished_connects',
'Number of successful slave connections to an SSL-enabled master',
False,
['SSL']),
('Ssl_server_not_after', 'SSL certificate last valid date', False, ['SSL']),
( 'Ssl_server_not_before',
'SSL certificate first valid date',
False,
['SSL']),
( 'Ssl_session_cache_hits',
'Number of SSL session cache hits',
False,
['SSL']),
( 'Ssl_session_cache_misses',
'Number of SSL session cache misses',
False,
['SSL']),
('Ssl_session_cache_mode', 'The SSL session cache mode', False, ['SSL']),
( 'Ssl_session_cache_overflows',
'Number of SSL session cache overflows',
False,
['SSL']),
('Ssl_session_cache_size', 'The SSL session cache size', False, ['SSL']),
( 'Ssl_session_cache_timeouts',
'Number of SSL session cache timeouts',
False,
['SSL']),
( 'Ssl_sessions_reused',
'How many SSL connections were reused from the cache',
False,
['SSL']),
( 'Ssl_used_session_cache_entries',
'How many SSL session cache entries were used',
False,
['SSL']),
( 'Ssl_verify_depth',
'The verification depth for replication SSL connections',
False,
['SSL']),
( 'Ssl_verify_mode',
'The verification mode for replication SSL connections',
False,
['SSL']),
('Ssl_version', 'The SSL version number', False, ['SSL']),
( 'Table_locks_immediate',
'Number of times that a table lock was acquired immediately',
False,
['General']),
( 'Table_locks_waited',
'Number of times that a table lock could not be acquired immediately and a wait was needed',
False,
['General']),
( 'Table_open_cache_hits',
'Number of hits for open tables cache lookups',
False,
['General']),
( 'Table_open_cache_misses',
'Number of misses for open tables cache lookups',
False,
['General']),
( 'Table_open_cache_overflows',
'Number of overflows for the open tables cache',
False,
['General']),
( 'Tc_log_max_pages_used',
'When the memory-mapped implementation of the log that is used by mysqld acts as the transaction coordinator for recovery of internal XA transactions,this variable indicates the largest number of pages used for the log since the server started',
False,
['General']),
( 'Tc_log_page_size',
'The page size used for the memory-mapped implementation of the XA recovery log',
False,
['General']),
( 'Tc_log_page_waits',
'For the memory-mapped implementation of the recovery log, this variable increments each time the server was not able to commit a transaction and had to wait for a free page in the log',
False,
['General']),
( 'Threads_cached',
'Number of threads in the thread cache',
False,
['Threading']),
( 'Threads_connected',
'Number of currently open connections',
False,
['Threading']),
( 'Threads_created',
'Number of threads created to handle connections',
False,
['Threading']),
( 'Threads_running',
'Number of threads that are not sleeping',
False,
['Threading']),
('Uptime', 'Number of seconds the server has been up', False, ['General']),
( 'Uptime_since_flush_status',
'Number of seconds since the most recent FLUSH STATUS',
False,
['General']),
( 'validate_password_dictionary_file_last_parsed',
'When the dictionary file was last parsed',
False,
[]),
( 'validate_password_dictionary_file_words_count',
'Number of words in dictionary file',
False,
[])]
|