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
|
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
syntax = "proto2";
package mesos;
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
option go_package = "mesos";
option (gogoproto.benchgen_all) = true;
option (gogoproto.enum_stringer_all) = true;
option (gogoproto.equal_all) = true;
option (gogoproto.goproto_enum_prefix_all) = false;
option (gogoproto.goproto_enum_stringer_all) = false;
option (gogoproto.goproto_stringer_all) = false;
option (gogoproto.goproto_unrecognized_all) = false;
option (gogoproto.gostring_all) = true;
option (gogoproto.marshaler_all) = true;
option (gogoproto.populate_all) = true;
option (gogoproto.protosizer_all) = true;
option (gogoproto.stringer_all) = true;
option (gogoproto.testgen_all) = true;
option (gogoproto.unmarshaler_all) = true;
option (gogoproto.verbose_equal_all) = true;
// NOTES: (gogogo protobuf for idiomatic Golang)
// - enum fields may be nullable if the default enum value is 0, otherwise the Golang zero-value of the enum isn't valid.
// - enums that declare UNKNOWN or other commonly used tokens should specify the goproto_enum_prefix option.
// - required fields are generally marked nullable
// - arrays of non-native types are generally marked nullable
// - fields w/ acronyms are generally renamed (via customname) to be idiomatic w/ respect to Golang
// - fields w/ glued acronyms are also renamed at the author's discretion w/ respect to legibility
/**
* Status is used to indicate the state of the scheduler and executor
* driver after function calls.
*/
enum Status {
DRIVER_NOT_STARTED = 1;
DRIVER_RUNNING = 2;
DRIVER_ABORTED = 3;
DRIVER_STOPPED = 4;
}
/**
* A unique ID assigned to a framework. A framework can reuse this ID
* in order to do failover (see MesosSchedulerDriver).
*/
message FrameworkID {
required string value = 1 [(gogoproto.nullable) = false];
}
/**
* A unique ID assigned to an offer.
*/
message OfferID {
required string value = 1 [(gogoproto.nullable) = false];
}
/**
* A unique ID assigned to an agent. Currently, an agent gets a new ID
* whenever it (re)registers with Mesos. Framework writers shouldn't
* assume any binding between an agent ID and and a hostname.
*/
message AgentID {
required string value = 1 [(gogoproto.nullable) = false];
}
/**
* A framework-generated ID to distinguish a task. The ID must remain
* unique while the task is active. A framework can reuse an ID _only_
* if the previous task with the same ID has reached a terminal state
* (e.g., TASK_FINISHED, TASK_KILLED, etc.). However, reusing task IDs
* is strongly discouraged (MESOS-2198).
*/
message TaskID {
required string value = 1 [(gogoproto.nullable) = false];
}
/**
* A framework-generated ID to distinguish an executor. Only one
* executor with the same ID can be active on the same agent at a
* time. However, reusing executor IDs is discouraged.
*/
message ExecutorID {
required string value = 1 [(gogoproto.nullable) = false];
}
/**
* ID used to uniquely identify a container. If the `parent` is not
* specified, the ID is a UUID generated by the agent to uniquely
* identify the container of an executor run. If the `parent` field is
* specified, it represents a nested container.
*/
message ContainerID {
required string value = 1 [(gogoproto.nullable) = false];
optional ContainerID parent = 2;
}
/**
* A unique ID assigned to a resource provider. Currently, a resource
* provider gets a new ID whenever it (re)registers with Mesos.
*/
message ResourceProviderID {
required string value = 1 [(gogoproto.nullable) = false];
}
/**
* Represents time since the epoch, in nanoseconds.
*/
message TimeInfo {
required int64 nanoseconds = 1 [(gogoproto.nullable) = false];
}
/**
* Represents duration in nanoseconds.
*/
message DurationInfo {
required int64 nanoseconds = 1 [(gogoproto.nullable) = false];
}
/**
* A network address.
*
* TODO(bmahler): Use this more widely.
*/
message Address {
// May contain a hostname, IP address, or both.
optional string hostname = 1;
optional string ip = 2 [(gogoproto.customname) = "IP"];
required int32 port = 3 [(gogoproto.nullable) = false];
}
/**
* Represents a URL.
*/
message URL {
required string scheme = 1 [(gogoproto.nullable) = false];
required Address address = 2 [(gogoproto.nullable) = false];
optional string path = 3;
repeated Parameter query = 4 [(gogoproto.nullable) = false];
optional string fragment = 5;
}
/**
* Represents an interval, from a given start time over a given duration.
* This interval pertains to an unavailability event, such as maintenance,
* and is not a generic interval.
*/
message Unavailability {
required TimeInfo start = 1 [(gogoproto.nullable) = false];
// When added to `start`, this represents the end of the interval.
// If unspecified, the duration is assumed to be infinite.
optional DurationInfo duration = 2;
// TODO(josephw): Add additional fields for expressing the purpose and
// urgency of the unavailability event.
}
/**
* Represents a single machine, which may hold one or more agents.
*
* NOTE: In order to match an agent to a machine, both the `hostname` and
* `ip` must match the values advertised by the agent to the master.
* Hostname is not case-sensitive.
*/
message MachineID {
optional string hostname = 1;
optional string ip = 2 [(gogoproto.customname) = "IP"];
}
/**
* Holds information about a single machine, its `mode`, and any other
* relevant information which may affect the behavior of the machine.
*/
message MachineInfo {
// Describes the several states that a machine can be in. A `Mode`
// applies to a machine and to all associated agents on the machine.
enum Mode {
// In this mode, a machine is behaving normally;
// offering resources, executing tasks, etc.
UP = 1;
// In this mode, all agents on the machine are expected to cooperate with
// frameworks to drain resources. In general, draining is done ahead of
// a pending `unavailability`. The resources should be drained so as to
// maximize utilization prior to the maintenance but without knowingly
// violating the frameworks' requirements.
DRAINING = 2;
// In this mode, a machine is not running any tasks and will not offer
// any of its resources. Agents on the machine will not be allowed to
// register with the master.
DOWN = 3;
}
required MachineID id = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "ID"];
optional Mode mode = 2;
// Signifies that the machine may be unavailable during the given interval.
// See comments in `Unavailability` and for the `unavailability` fields
// in `Offer` and `InverseOffer` for more information.
optional Unavailability unavailability = 3;
}
/**
* Describes a framework.
*/
message FrameworkInfo {
// Used to determine the Unix user that an executor or task should be
// launched as.
//
// When using the MesosSchedulerDriver, if the field is set to an
// empty string, it will automagically set it to the current user.
//
// When using the HTTP Scheduler API, the user has to be set
// explicitly.
required string user = 1 [(gogoproto.nullable) = false];
// Name of the framework that shows up in the Mesos Web UI.
required string name = 2 [(gogoproto.nullable) = false];
// Note that 'id' is only available after a framework has
// registered, however, it is included here in order to facilitate
// scheduler failover (i.e., if it is set then the
// MesosSchedulerDriver expects the scheduler is performing
// failover).
optional FrameworkID id = 3 [(gogoproto.customname) = "ID"];
// The amount of time (in seconds) that the master will wait for the
// scheduler to failover before it tears down the framework by
// killing all its tasks/executors. This should be non-zero if a
// framework expects to reconnect after a failure and not lose its
// tasks/executors.
//
// NOTE: To avoid accidental destruction of tasks, production
// frameworks typically set this to a large value (e.g., 1 week).
optional double failover_timeout = 4 [default = 0.0];
// If set, agents running tasks started by this framework will write
// the framework pid, executor pids and status updates to disk. If
// the agent exits (e.g., due to a crash or as part of upgrading
// Mesos), this checkpointed data allows the restarted agent to
// reconnect to executors that were started by the old instance of
// the agent. Enabling checkpointing improves fault tolerance, at
// the cost of a (usually small) increase in disk I/O.
optional bool checkpoint = 5 [default = false];
// Roles are the entities to which allocations are made.
// The framework must have at least one role in order to
// be offered resources. Note that `role` is deprecated
// in favor of `roles` and only one of these fields must
// be used. Since we cannot distinguish between empty
// `roles` and the default unset `role`, we require that
// frameworks set the `MULTI_ROLE` capability if
// setting the `roles` field.
optional string role = 6 [default = "*", deprecated=true];
repeated string roles = 12;
// Used to indicate the current host from which the scheduler is
// registered in the Mesos Web UI. If set to an empty string Mesos
// will automagically set it to the current hostname if one is
// available.
optional string hostname = 7;
// This field should match the credential's principal the framework
// uses for authentication. This field is used for framework API
// rate limiting and dynamic reservations. It should be set even
// if authentication is not enabled if these features are desired.
optional string principal = 8;
// This field allows a framework to advertise its web UI, so that
// the Mesos web UI can link to it. It is expected to be a full URL,
// for example http://my-scheduler.example.com:8080/.
optional string webui_url = 9 [(gogoproto.customname) = "WebUiURL"];
message Capability {
enum Type {
// This must be the first enum value in this list, to
// ensure that if 'type' is not set, the default value
// is UNKNOWN. This enables enum values to be added
// in a backwards-compatible way. See: MESOS-4997.
UNKNOWN = 0;
// Receive offers with revocable resources. See 'Resource'
// message for details.
REVOCABLE_RESOURCES = 1;
// Receive the TASK_KILLING TaskState when a task is being
// killed by an executor. The executor will examine this
// capability to determine whether it can send TASK_KILLING.
TASK_KILLING_STATE = 2;
// Indicates whether the framework is aware of GPU resources.
// Frameworks that are aware of GPU resources are expected to
// avoid placing non-GPU workloads on GPU agents, in order
// to avoid occupying a GPU agent and preventing GPU workloads
// from running! Currently, if a framework is unaware of GPU
// resources, it will not be offered *any* of the resources on
// an agent with GPUs. This restriction is in place because we
// do not have a revocation mechanism that ensures GPU workloads
// can evict GPU agent occupants if necessary.
//
// TODO(bmahler): As we add revocation we can relax the
// restriction here. See MESOS-5634 for more information.
GPU_RESOURCES = 3;
// Receive offers with resources that are shared.
SHARED_RESOURCES = 4;
// Indicates that (1) the framework is prepared to handle the
// following TaskStates: TASK_UNREACHABLE, TASK_DROPPED,
// TASK_GONE, TASK_GONE_BY_OPERATOR, and TASK_UNKNOWN, and (2)
// the framework will assume responsibility for managing
// partitioned tasks that reregister with the master.
//
// Frameworks that enable this capability can define how they
// would like to handle partitioned tasks. Frameworks will
// receive TASK_UNREACHABLE for tasks on agents that are
// partitioned from the master. If/when a partitioned agent
// reregisters, tasks on the agent that were started by
// PARTITION_AWARE frameworks will not killed.
//
// Without this capability, frameworks will receive TASK_LOST
// for tasks on partitioned agents; such tasks will be killed by
// Mesos when the agent reregisters (unless the master has
// failed over).
PARTITION_AWARE = 5;
// This expresses the ability for the framework to be
// "multi-tenant" via using the newly introduced `roles`
// field, and examining `Offer.allocation_info` to determine
// which role the offers are being made to. We also
// expect that "single-tenant" schedulers eventually
// provide this and move away from the deprecated
// `role` field.
MULTI_ROLE = 6;
// This capability has two effects for a framework.
//
// (1) The framework is offered resources in a new format.
//
// The offered resources have the `Resource.reservations` field set
// rather than `Resource.role` and `Resource.reservation`. In short,
// an empty `reservations` field denotes unreserved resources, and
// each `ReservationInfo` in the `reservations` field denotes a
// reservation that refines the previous one.
//
// See the 'Resource Format' section for more details.
//
// (2) The framework can create refined reservations.
//
// A framework can refine an existing reservation via the
// `Resource.reservations` field. For example, a reservation for role
// `eng` can be refined to `eng/front_end`.
//
// See `ReservationInfo.reservations` for more details.
//
// NOTE: Without this capability, a framework is not offered resources
// that have refined reservations. A resource is said to have refined
// reservations if it uses the `Resource.reservations` field, and
// `Resource.reservations_size() > 1`.
RESERVATION_REFINEMENT = 7; // EXPERIMENTAL.
// Indicates that the framework is prepared to receive offers
// for agents whose region is different from the master's
// region. Network links between hosts in different regions
// typically have higher latency and lower bandwidth than
// network links within a region, so frameworks should be
// careful to only place suitable workloads in remote regions.
// Frameworks that are not region-aware will never receive
// offers for remote agents; region-aware frameworks are assumed
// to implement their own logic to decide which workloads (if
// any) are suitable for placement on remote agents.
REGION_AWARE = 8;
option (gogoproto.goproto_enum_prefix) = true;
}
// Enum fields should be optional, see: MESOS-4997.
optional Type type = 1 [(gogoproto.nullable) = false];
}
// This field allows a framework to advertise its set of
// capabilities (e.g., ability to receive offers for revocable
// resources).
repeated Capability capabilities = 10 [(gogoproto.nullable) = false];
// Labels are free-form key value pairs supplied by the framework
// scheduler (e.g., to describe additional functionality offered by
// the framework). These labels are not interpreted by Mesos itself.
// Labels should not contain duplicate key-value pairs.
optional Labels labels = 11;
}
/**
* Describes a general non-interpreting non-killing check for a task or
* executor (or any arbitrary process/command). A type is picked by
* specifying one of the optional fields. Specifying more than one type
* is an error.
*
* NOTE: This API is unstable and the related feature is experimental.
*/
message CheckInfo {
enum Type {
UNKNOWN = 0;
COMMAND = 1;
HTTP = 2;
TCP = 3;
// TODO(alexr): Consider supporting custom user checks. They should
// probably be paired with a `data` field and complemented by a
// `data` response in `CheckStatusInfo`.
option (gogoproto.goproto_enum_prefix) = true;
}
// Describes a command check. If applicable, enters mount and/or network
// namespaces of the task.
message Command {
required CommandInfo command = 1 [(gogoproto.nullable) = false];
}
// Describes an HTTP check. Sends a GET request to
// http://<host>:port/path. Note that <host> is not configurable and is
// resolved automatically to 127.0.0.1.
message Http {
// Port to send the HTTP request.
required uint32 port = 1 [(gogoproto.nullable) = false];
// HTTP request path.
optional string path = 2;
// TODO(alexr): Add support for HTTP method. While adding POST
// and PUT is simple, supporting payload is more involved.
// TODO(alexr): Add support for custom HTTP headers.
// TODO(alexr): Consider adding an optional message to describe TLS
// options and thus enabling https. Such message might contain certificate
// validation, TLS version.
}
// Describes a TCP check, i.e. based on establishing a TCP connection to
// the specified port. Note that <host> is not configurable and is resolved
// automatically to 127.0.0.1.
message Tcp {
required uint32 port = 1 [(gogoproto.nullable) = false];
}
// The type of the check.
optional Type type = 1 [(gogoproto.nullable) = false];
// Command check.
optional Command command = 2;
// HTTP check.
optional Http http = 3 [(gogoproto.customname) = "HTTP"];
// TCP check.
optional Tcp tcp = 7 [(gogoproto.customname) = "TCP"];
// Amount of time to wait to start checking the task after it
// transitions to `TASK_RUNNING` or `TASK_STARTING` if the latter
// is used by the executor.
optional double delay_seconds = 4 [default = 15.0];
// Interval between check attempts, i.e., amount of time to wait after
// the previous check finished or timed out to start the next check.
optional double interval_seconds = 5 [default = 10.0];
// Amount of time to wait for the check to complete. Zero means infinite
// timeout.
//
// After this timeout, the check attempt is aborted and no result is
// reported. Note that this may be considered a state change and hence
// may trigger a check status change delivery to the corresponding
// scheduler. See `CheckStatusInfo` for more details.
optional double timeout_seconds = 6 [default = 20.0];
}
/**
* Describes a health check for a task or executor (or any arbitrary
* process/command). A type is picked by specifying one of the
* optional fields. Specifying more than one type is an error.
*/
message HealthCheck {
enum Type {
UNKNOWN = 0;
COMMAND = 1;
HTTP = 2;
TCP = 3;
option (gogoproto.goproto_enum_prefix) = true;
}
// Describes an HTTP health check. Sends a GET request to
// scheme://<host>:port/path. Note that <host> is not configurable and is
// resolved automatically, in most cases to 127.0.0.1. Default executors
// treat return codes between 200 and 399 as success; custom executors
// may employ a different strategy, e.g. leveraging the `statuses` field.
message HTTPCheckInfo {
// Currently "http" and "https" are supported.
optional string scheme = 3;
// Port to send the HTTP request.
required uint32 port = 1 [(gogoproto.nullable) = false];
// HTTP request path.
optional string path = 2;
// TODO(alexr): Add support for HTTP method. While adding POST
// and PUT is simple, supporting payload is more involved.
// TODO(alexr): Add support for custom HTTP headers.
// TODO(alexr): Add support for success and possibly failure
// statuses.
// NOTE: It is up to the custom executor to interpret and act on this
// field. Setting this field has no effect on the default executors.
//
// TODO(haosdent): Deprecate this field when we add better support for
// success and possibly failure statuses, e.g. ranges of success and
// failure statuses.
repeated uint32 statuses = 4;
// TODO(haosdent): Consider adding a flag to enable task's certificate
// validation for HTTPS health checks, see MESOS-5997.
// TODO(benh): Include an 'optional bytes data' field for checking
// for specific data in the response.
}
// Describes a TCP health check, i.e. based on establishing
// a TCP connection to the specified port.
message TCPCheckInfo {
// Port expected to be open.
required uint32 port = 1 [(gogoproto.nullable) = false];
}
// TODO(benh): Consider adding a URL health check strategy which
// allows doing something similar to the HTTP strategy but
// encapsulates all the details in a single string field.
// Amount of time to wait to start health checking the task after it
// transitions to `TASK_RUNNING` or `TASK_STATING` if the latter is
// used by the executor.
optional double delay_seconds = 2 [default = 15.0];
// Interval between health checks, i.e., amount of time to wait after
// the previous health check finished or timed out to start the next
// health check.
optional double interval_seconds = 3 [default = 10.0];
// Amount of time to wait for the health check to complete. After this
// timeout, the health check is aborted and treated as a failure. Zero
// means infinite timeout.
optional double timeout_seconds = 4 [default = 20.0];
// Number of consecutive failures until the task is killed by the executor.
optional uint32 consecutive_failures = 5 [default = 3];
// Amount of time after the task is launched during which health check
// failures are ignored. Once a check succeeds for the first time,
// the grace period does not apply anymore. Note that it includes
// `delay_seconds`, i.e., setting `grace_period_seconds` < `delay_seconds`
// has no effect.
optional double grace_period_seconds = 6 [default = 10.0];
// TODO(alexr): Add an optional `KillPolicy` that should be used
// if the task is killed because of a health check failure.
// The type of health check.
optional Type type = 8 [(gogoproto.nullable) = false];
// Command health check.
optional CommandInfo command = 7;
// HTTP health check.
optional HTTPCheckInfo http = 1 [(gogoproto.customname) = "HTTP"];
// TCP health check.
optional TCPCheckInfo tcp = 9 [(gogoproto.customname) = "TCP"];
}
/**
* Describes a kill policy for a task. Currently does not express
* different policies (e.g. hitting HTTP endpoints), only controls
* how long to wait between graceful and forcible task kill:
*
* graceful kill --------------> forcible kill
* grace_period
*
* Kill policies are best-effort, because machine failures / forcible
* terminations may occur.
*
* NOTE: For executor-less command-based tasks, the kill is performed
* via sending a signal to the task process: SIGTERM for the graceful
* kill and SIGKILL for the forcible kill. For the docker executor-less
* tasks the grace period is passed to 'docker stop --time'.
*/
message KillPolicy {
// The grace period specifies how long to wait before forcibly
// killing the task. It is recommended to attempt to gracefully
// kill the task (and send TASK_KILLING) to indicate that the
// graceful kill is in progress. Once the grace period elapses,
// if the task has not terminated, a forcible kill should occur.
// The task should not assume that it will always be allotted
// the full grace period. For example, the executor may be
// shutdown more quickly by the agent, or failures / forcible
// terminations may occur.
optional DurationInfo grace_period = 1;
}
/**
* Describes a command, executed via: '/bin/sh -c value'. Any URIs specified
* are fetched before executing the command. If the executable field for an
* uri is set, executable file permission is set on the downloaded file.
* Otherwise, if the downloaded file has a recognized archive extension
* (currently [compressed] tar and zip) it is extracted into the executor's
* working directory. This extraction can be disabled by setting `extract` to
* false. In addition, any environment variables are set before executing
* the command (so they can be used to "parameterize" your command).
*/
message CommandInfo {
message URI {
required string value = 1 [(gogoproto.nullable) = false];
optional bool executable = 2;
// In case the fetched file is recognized as an archive, extract
// its contents into the sandbox. Note that a cached archive is
// not copied from the cache to the sandbox in case extraction
// originates from an archive in the cache.
optional bool extract = 3 [default = true];
// If this field is "true", the fetcher cache will be used. If not,
// fetching bypasses the cache and downloads directly into the
// sandbox directory, no matter whether a suitable cache file is
// available or not. The former directs the fetcher to download to
// the file cache, then copy from there to the sandbox. Subsequent
// fetch attempts with the same URI will omit downloading and copy
// from the cache as long as the file is resident there. Cache files
// may get evicted at any time, which then leads to renewed
// downloading. See also "docs/fetcher.md" and
// "docs/fetcher-cache-internals.md".
optional bool cache = 4;
// The fetcher's default behavior is to use the URI string's basename to
// name the local copy. If this field is provided, the local copy will be
// named with its value instead. If there is a directory component (which
// must be a relative path), the local copy will be stored in that
// subdirectory inside the sandbox.
optional string output_file = 5;
}
repeated URI uris = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "URIs"];
optional Environment environment = 2;
// There are two ways to specify the command:
// 1) If 'shell == true', the command will be launched via shell
// (i.e., /bin/sh -c 'value'). The 'value' specified will be
// treated as the shell command. The 'arguments' will be ignored.
// 2) If 'shell == false', the command will be launched by passing
// arguments to an executable. The 'value' specified will be
// treated as the filename of the executable. The 'arguments'
// will be treated as the arguments to the executable. This is
// similar to how POSIX exec families launch processes (i.e.,
// execlp(value, arguments(0), arguments(1), ...)).
// NOTE: The field 'value' is changed from 'required' to 'optional'
// in 0.20.0. It will only cause issues if a new framework is
// connecting to an old master.
optional bool shell = 6 [default = true];
optional string value = 3;
repeated string arguments = 7;
// Enables executor and tasks to run as a specific user. If the user
// field is present both in FrameworkInfo and here, the CommandInfo
// user value takes precedence.
optional string user = 5;
}
/**
* Describes information about an executor.
*/
message ExecutorInfo {
enum Type {
UNKNOWN = 0;
// Mesos provides a simple built-in default executor that frameworks can
// leverage to run shell commands and containers.
//
// NOTES:
//
// 1) `command` must not be set when using a default executor.
//
// 2) Default executor only accepts a *single* `LAUNCH` or `LAUNCH_GROUP`
// offer operation.
//
// 3) If `container` is set, `container.type` must be `MESOS`
// and `container.mesos.image` must not be set.
DEFAULT = 1;
// For frameworks that need custom functionality to run tasks, a `CUSTOM`
// executor can be used. Note that `command` must be set when using a
// `CUSTOM` executor.
CUSTOM = 2;
option (gogoproto.goproto_enum_prefix) = true;
}
// For backwards compatibility, if this field is not set when using `LAUNCH`
// offer operation, Mesos will infer the type by checking if `command` is
// set (`CUSTOM`) or unset (`DEFAULT`). `type` must be set when using
// `LAUNCH_GROUP` offer operation.
//
// TODO(vinod): Add support for explicitly setting `type` to `DEFAULT `
// in `LAUNCH` offer operation.
optional Type type = 15 [(gogoproto.nullable) = false];
required ExecutorID executor_id = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "ExecutorID"];
optional FrameworkID framework_id = 8 [(gogoproto.customname) = "FrameworkID"]; // TODO(benh): Make this required.
optional CommandInfo command = 7;
// Executor provided with a container will launch the container
// with the executor's CommandInfo and we expect the container to
// act as a Mesos executor.
optional ContainerInfo container = 11;
repeated Resource resources = 5 [(gogoproto.nullable) = false];
optional string name = 9;
// 'source' is an identifier style string used by frameworks to
// track the source of an executor. This is useful when it's
// possible for different executor ids to be related semantically.
//
// NOTE: 'source' is exposed alongside the resource usage of the
// executor via JSON on the agent. This allows users to import usage
// information into a time series database for monitoring.
//
// This field is deprecated since 1.0. Please use labels for
// free-form metadata instead.
optional string source = 10 [deprecated = true]; // Since 1.0.
// This field can be used to pass arbitrary bytes to an executor.
optional bytes data = 4;
// Service discovery information for the executor. It is not
// interpreted or acted upon by Mesos. It is up to a service
// discovery system to use this information as needed and to handle
// executors without service discovery information.
optional DiscoveryInfo discovery = 12;
// When shutting down an executor the agent will wait in a
// best-effort manner for the grace period specified here
// before forcibly destroying the container. The executor
// must not assume that it will always be allotted the full
// grace period, as the agent may decide to allot a shorter
// period and failures / forcible terminations may occur.
optional DurationInfo shutdown_grace_period = 13;
// Labels are free-form key value pairs which are exposed through
// master and agent endpoints. Labels will not be interpreted or
// acted upon by Mesos itself. As opposed to the data field, labels
// will be kept in memory on master and agent processes. Therefore,
// labels should be used to tag executors with lightweight metadata.
// Labels should not contain duplicate key-value pairs.
optional Labels labels = 14;
}
/**
* Describes a domain. A domain is a collection of hosts that have
* similar characteristics. Mesos currently only supports "fault
* domains", which identify groups of hosts with similar failure
* characteristics.
*
* Frameworks can generally assume that network links between hosts in
* the same fault domain have lower latency, higher bandwidth, and better
* availability than network links between hosts in different domains.
* Schedulers may prefer to place network-intensive workloads in the
* same domain, as this may improve performance. Conversely, a single
* failure that affects a host in a domain may be more likely to
* affect other hosts in the same domain; hence, schedulers may prefer
* to place workloads that require high availability in multiple
* domains. (For example, all the hosts in a single rack might lose
* power or network connectivity simultaneously.)
*
* There are two kinds of fault domains: regions and zones. Regions
* offer the highest degree of fault isolation, but network latency
* between regions is typically high (typically >50 ms). Zones offer a
* modest degree of fault isolation along with reasonably low network
* latency (typically <10 ms).
*
* The mapping from fault domains to physical infrastructure is up to
* the operator to configure. In cloud environments, regions and zones
* can be mapped to the "region" and "availability zone" concepts
* exposed by most cloud providers, respectively. In on-premise
* deployments, regions and zones can be mapped to data centers and
* racks, respectively.
*
* Both masters and agents can be configured with domains. Frameworks
* can compare the domains of two hosts to determine if the hosts are
* in the same zone, in different zones in the same region, or in
* different regions. Note that all masters in a given Mesos cluster
* must be in the same region.
*/
message DomainInfo {
message FaultDomain {
message RegionInfo {
required string name = 1 [(gogoproto.nullable) = false];
}
message ZoneInfo {
required string name = 1 [(gogoproto.nullable) = false];
}
required RegionInfo region = 1 [(gogoproto.nullable) = false];
required ZoneInfo zone = 2 [(gogoproto.nullable) = false];
}
optional FaultDomain fault_domain = 1;
}
/**
* Describes a master. This will probably have more fields in the
* future which might be used, for example, to link a framework webui
* to a master webui.
*/
message MasterInfo {
required string id = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "ID"];
// The IP address (only IPv4) as a packed 4-bytes integer,
// stored in network order. Deprecated, use `address.ip` instead.
required uint32 ip = 2 [(gogoproto.nullable) = false, (gogoproto.customname) = "IP"];
// The TCP port the Master is listening on for incoming
// HTTP requests; deprecated, use `address.port` instead.
required uint32 port = 3 [default = 5050];
// In the default implementation, this will contain information
// about both the IP address, port and Master name; it should really
// not be relied upon by external tooling/frameworks and be
// considered an "internal" implementation field.
optional string pid = 4 [(gogoproto.customname) = "PID"];
// The server's hostname, if available; it may be unreliable
// in environments where the DNS configuration does not resolve
// internal hostnames (eg, some public cloud providers).
// Deprecated, use `address.hostname` instead.
optional string hostname = 5;
// The running Master version, as a string; taken from the
// generated "master/version.hpp".
optional string version = 6;
// The full IP address (supports both IPv4 and IPv6 formats)
// and supersedes the use of `ip`, `port` and `hostname`.
// Since Mesos 0.24.
optional Address address = 7;
// The domain that this master belongs to. All masters in a Mesos
// cluster should belong to the same region.
optional DomainInfo domain = 8;
}
/**
* Describes an agent. Note that the 'id' field is only available
* after an agent is registered with the master, and is made available
* here to facilitate re-registration.
*/
message AgentInfo {
required string hostname = 1 [(gogoproto.nullable) = false];
optional int32 port = 8 [default = 5051];
// The configured resources at the agent. This does not include any
// dynamic reservations or persistent volumes that may currently
// exist at the agent.
repeated Resource resources = 3 [(gogoproto.nullable) = false];
repeated Attribute attributes = 5 [(gogoproto.nullable) = false];
optional AgentID id = 6 [(gogoproto.customname) = "ID"];
// The domain that this agent belongs to. If the agent's region
// differs from the master's region, it will not appear in resource
// offers to frameworks that have not enabled the REGION_AWARE
// capability.
optional DomainInfo domain = 10;
message Capability {
enum Type {
// This must be the first enum value in this list, to
// ensure that if 'type' is not set, the default value
// is UNKNOWN. This enables enum values to be added
// in a backwards-compatible way. See: MESOS-4997.
UNKNOWN = 0;
// This expresses the ability for the agent to be able
// to launch tasks of a 'multi-role' framework.
MULTI_ROLE = 1;
// This expresses the ability for the agent to be able to launch
// tasks, reserve resources, and create volumes using resources
// allocated to a 'hierarchical-role'.
// NOTE: This capability is required specifically for creating
// volumes because a hierchical role includes '/' (slashes) in them.
// Agents with this capability know to transform the '/' (slashes)
// into ' ' (spaces).
HIERARCHICAL_ROLE = 2;
// This capability has three effects for an agent.
//
// (1) The format of the checkpointed resources, and
// the resources reported to master.
//
// These resources are reported in the "pre-reservation-refinement"
// format if none of the resources have refined reservations. If any
// of the resources have refined reservations, they are reported in
// the "post-reservation-refinement" format. The purpose is to allow
// downgrading of an agent as well as communication with a pre-1.4.0
// master until the reservation refinement feature is actually used.
//
// See the 'Resource Format' section for more details.
//
// (2) The format of the resources reported by the HTTP endpoints.
//
// For resources reported by agent endpoints, the
// "pre-reservation-refinement" format is "injected" if possible.
// That is, resources without refined reservations will have the
// `Resource.role` and `Resource.reservation` set, whereas
// resources with refined reservations will not.
//
// See the 'Resource Format' section for more details.
//
// (3) The ability for the agent to launch tasks, reserve resources, and
// create volumes using resources that have refined reservations.
//
// See `ReservationInfo.reservations` section for more details.
//
// NOTE: Resources are said to have refined reservations if it uses the
// `Resource.reservations` field, and `Resource.reservations_size() > 1`.
RESERVATION_REFINEMENT = 3;
option (gogoproto.goproto_enum_prefix) = true;
}
// Enum fields should be optional, see: MESOS-4997.
optional Type type = 1 [(gogoproto.nullable) = false];
}
}
/**
* Describes a resource provider. Note that the 'id' field is only available
* after a resource provider is registered with the master, and is made
* available here to facilitate re-registration.
*/
message ResourceProviderInfo {
optional ResourceProviderID id = 1 [(gogoproto.customname) = "ID"];
repeated Attribute attributes = 2 [(gogoproto.nullable) = false];
// The type of the resource provider. This uniquely identifies a
// resource provider implementation. For instance:
// org.apache.mesos.rp.local.storage
//
// Please follow to Java package naming convention
// (https://en.wikipedia.org/wiki/Java_package#Package_naming_conventions)
// to avoid conflicts on type names.
required string type = 3 [(gogoproto.nullable) = false];
// The name of the resource provider. There could be multiple
// instances of a type of resource provider. The name field is used
// to distinguish these instances.
required string name = 4 [(gogoproto.nullable) = false];
}
/**
* Describes an Attribute or Resource "value". A value is described
* using the standard protocol buffer "union" trick.
*/
message Value {
enum Type {
SCALAR = 0;
RANGES = 1;
SET = 2;
TEXT = 3;
}
message Scalar {
// Scalar values are represented using floating point. To reduce
// the chance of unpredictable floating point behavior due to
// roundoff error, Mesos only supports three decimal digits of
// precision for scalar resource values. That is, floating point
// values are converted to a fixed point format that supports
// three decimal digits of precision, and then converted back to
// floating point on output. Any additional precision in scalar
// resource values is discarded (via rounding).
required double value = 1 [(gogoproto.nullable) = false];
}
message Range {
required uint64 begin = 1 [(gogoproto.nullable) = false];
required uint64 end = 2 [(gogoproto.nullable) = false];
}
message Ranges {
repeated Range range = 1 [(gogoproto.nullable) = false];
}
message Set {
repeated string item = 1;
}
message Text {
required string value = 1 [(gogoproto.nullable) = false];
}
required Type type = 1 [(gogoproto.nullable) = false];
optional Scalar scalar = 2;
optional Ranges ranges = 3;
optional Set set = 4;
optional Text text = 5;
}
/**
* Describes an attribute that can be set on a machine. For now,
* attributes and resources share the same "value" type, but this may
* change in the future and attributes may only be string based.
*/
message Attribute {
required string name = 1 [(gogoproto.nullable) = false];
required Value.Type type = 2 [(gogoproto.nullable) = false];
optional Value.Scalar scalar = 3;
optional Value.Ranges ranges = 4;
optional Value.Set set = 6;
optional Value.Text text = 5;
}
/**
* Describes a resource from a resource provider. The `name` field is
* a string like "cpus" or "mem" that indicates which kind of resource
* this is; the rest of the fields describe the properties of the
* resource. A resource can take on one of three types: scalar
* (double), a list of finite and discrete ranges (e.g., [1-10,
* 20-30]), or a set of items. A resource is described using the
* standard protocol buffer "union" trick.
*
* Note that "disk" and "mem" resources are scalar values expressed in
* megabytes. Fractional "cpus" values are allowed (e.g., "0.5"),
* which correspond to partial shares of a CPU.
*/
message Resource {
optional ResourceProviderID provider_id = 12 [(gogoproto.customname) = "ProviderID"];
required string name = 1 [(gogoproto.nullable) = false];
required Value.Type type = 2;
optional Value.Scalar scalar = 3;
optional Value.Ranges ranges = 4;
optional Value.Set set = 5;
// The role that this resource is reserved for. If "*", this indicates
// that the resource is unreserved. Otherwise, the resource will only
// be offered to frameworks that belong to this role.
//
// NOTE: Frameworks must not set this field if `reservations` is set.
// See the 'Resource Format' section for more details.
//
// TODO(mpark): Deprecate once `reservations` is no longer experimental.
optional string role = 6 [default = "*", deprecated=true];
// This was initially introduced to support MULTI_ROLE capable
// frameworks. Frameworks that are not MULTI_ROLE capable can
// continue to assume that the offered resources are allocated
// to their role.
message AllocationInfo {
// If set, this resource is allocated to a role. Note that in the
// future, this may be unset and the scheduler may be responsible
// for allocating to one of its roles.
optional string role = 1;
// In the future, we may add additional fields here, e.g. priority
// tier, type of allocation (quota / fair share).
}
optional AllocationInfo allocation_info = 11;
// Resource Format:
//
// Frameworks receive resource offers in one of two formats, depending on
// whether the RESERVATION_REFINEMENT capability is enabled.
//
// __WITHOUT__ the RESERVATION_REFINEMENT capability, the framework is offered
// resources in the "pre-reservation-refinement" format. In this format, the
// `Resource.role` and `Resource.reservation` fields are used in conjunction
// to describe the reservation state of a `Resource` message.
//
// The following is an overview of the possible reservation states:
//
// +------------+------------------------------------------------------------+
// | unreserved | { |
// | | role: "*", |
// | | reservation: <not set>, |
// | | reservations: <unused> |
// | | } |
// +------------+------------------------------------------------------------+
// | static | { |
// | | role: "eng", |
// | | reservation: <not set>, |
// | | reservations: <unused> |
// | | } |
// +------------+------------------------------------------------------------+
// | dynamic | { |
// | | role: "eng", |
// | | reservation: { |
// | | type: <unused>, |
// | | role: <unused>, |
// | | principal: <optional>, |
// | | labels: <optional> |
// | | }, |
// | | reservations: <unused> |
// | | } |
// +------------+------------------------------------------------------------+
//
// __WITH__ the RESERVATION_REFINEMENT capability, the framework is offered
// resources in the "post-reservation-refinement" format. In this format, the
// reservation state of a `Resource` message is expressed solely in
// `Resource.reservations` field.
//
// The following is an overview of the possible reservation states:
//
// +------------+------------------------------------------------------------+
// | unreserved | { |
// | | role: <unused>, |
// | | reservation: <unused>, |
// | | reservations: [] |
// | | } |
// +------------+------------------------------------------------------------+
// | static | { |
// | | role: <unused>, |
// | | reservation: <unused>, |
// | | reservations: [ |
// | | { |
// | | type: STATIC, |
// | | role: "eng", |
// | | principal: <optional>, |
// | | labels: <optional> |
// | | } |
// | | ] |
// | | } |
// +------------+------------------------------------------------------------+
// | dynamic | { |
// | | role: <unused>, |
// | | reservation: <unused>, |
// | | reservations: [ |
// | | { |
// | | type: DYNAMIC, |
// | | role: "eng", |
// | | principal: <optional>, |
// | | labels: <optional> |
// | | } |
// | | ] |
// | | } |
// +------------+------------------------------------------------------------+
//
// We can also __refine__ reservations with this capability like so:
//
// +------------+------------------------------------------------------------+
// | refined | { |
// | | role: <unused>, |
// | | reservation: <unused>, |
// | | reservations: [ |
// | | { |
// | | type: STATIC or DYNAMIC, |
// | | role: "eng", |
// | | principal: <optional>, |
// | | labels: <optional> |
// | | }, |
// | | { |
// | | type: DYNAMIC, |
// | | role: "eng/front_end", |
// | | principal: <optional>, |
// | | labels: <optional> |
// | | } |
// | | ] |
// | | } |
// +------------+------------------------------------------------------------+
//
// NOTE: Each `ReservationInfo` in the `reservations` field denotes
// a reservation that refines the previous `ReservationInfo`.
message ReservationInfo {
// TODO(mpark): Explain the two resource formats.
// Describes a reservation. A static reservation is set by the operator on
// the command-line and they are immutable without agent restart. A dynamic
// reservation is acquired by an operator via the '/reserve' HTTP endpoint
// or by a framework via the offer cycle by sending back an
// 'Offer::Operation::Reserve' message.
// NOTE: We currently do not allow frameworks with role "*" to make dynamic
// reservations.
enum Type {
UNKNOWN = 0;
STATIC = 1;
DYNAMIC = 2;
option (gogoproto.goproto_enum_prefix) = true;
}
// The type of this reservation.
// NOTE: This field must not be set for `Resource.reservation`.
optional Type type = 4;
// The role to which this reservation is made for.
// NOTE: This field must not be set for `Resource.reservation`.
optional string role = 3;
// Indicates the principal, if any, of the framework or operator
// that reserved this resource. If reserved by a framework, the
// field should match the `FrameworkInfo.principal`. It is used in
// conjunction with the `UnreserveResources` ACL to determine
// whether the entity attempting to unreserve this resource is
// permitted to do so.
optional string principal = 1;
// Labels are free-form key value pairs that can be used to
// associate arbitrary metadata with a reserved resource. For
// example, frameworks can use labels to identify the intended
// purpose for a portion of the resources the framework has
// reserved at a given agent. Labels should not contain duplicate
// key-value pairs.
optional Labels labels = 2;
}
// If this is set, this resource was dynamically reserved by an
// operator or a framework. Otherwise, this resource is either unreserved
// or statically reserved by an operator via the --resources flag.
// NOTE: Frameworks must not set this field if `reservations` is set.
optional ReservationInfo reservation = 8;
// The stack of reservations. If this field is empty, it indicates that this
// resource is unreserved. Otherwise, the resource is reserved. The first
// `ReservationInfo` may have type `STATIC` or `DYNAMIC`, but the rest must
// have `DYNAMIC`. One can create a new reservation on top of an existing
// one by pushing a new `ReservationInfo` to the back. The last
// `ReservationInfo` in this stack is the "current" reservation. The new
// reservation's role must be a child of the current reservation's role.
// NOTE: Frameworks must not set this field if `reservation` is set.
repeated ReservationInfo reservations = 13 [(gogoproto.nullable) = false]; // EXPERIMENTAL.
message DiskInfo {
// Describes a persistent disk volume.
//
// A persistent disk volume will not be automatically garbage
// collected if the task/executor/agent terminates, but will be
// re-offered to the framework(s) belonging to the 'role'.
//
// NOTE: Currently, we do not allow persistent disk volumes
// without a reservation (i.e., 'role' cannot be '*').
message Persistence {
// A unique ID for the persistent disk volume. This ID must be
// unique per role on each agent. Although it is possible to use
// the same ID on different agents in the cluster and to reuse
// IDs after a volume with that ID has been destroyed, both
// practices are discouraged.
required string id = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "ID"];
// This field indicates the principal of the operator or
// framework that created this volume. It is used in conjunction
// with the "destroy" ACL to determine whether an entity
// attempting to destroy the volume is permitted to do so.
//
// NOTE: This field should match the FrameworkInfo.principal of
// the framework that created the volume.
optional string principal = 2;
}
optional Persistence persistence = 1;
// Describes how this disk resource will be mounted in the
// container. If not set, the disk resource will be used as the
// sandbox. Otherwise, it will be mounted according to the
// 'container_path' inside 'volume'. The 'host_path' inside
// 'volume' is ignored.
// NOTE: If 'volume' is set but 'persistence' is not set, the
// volume will be automatically garbage collected after
// task/executor terminates. Currently, if 'persistence' is set,
// 'volume' must be set.
optional Volume volume = 2;
// Describes where a disk originates from.
// TODO(jmlvanre): Add support for BLOCK devices.
message Source {
enum Type {
UNKNOWN = 0;
PATH = 1;
MOUNT = 2;
}
// A folder that can be located on a separate disk device. This
// can be shared and carved up as necessary between frameworks.
message Path {
// Path to the folder (e.g., /mnt/raid/disk0).
optional string root = 1;
}
// A mounted file-system set up by the Agent administrator. This
// can only be used exclusively: a framework cannot accept a
// partial amount of this disk.
message Mount {
// Path to mount point (e.g., /mnt/raid/disk0).
optional string root = 1;
}
required Type type = 1 [(gogoproto.nullable) = false];
optional Path path = 2;
optional Mount mount = 3;
}
optional Source source = 3;
}
optional DiskInfo disk = 7;
message RevocableInfo {}
// If this is set, the resources are revocable, i.e., any tasks or
// executors launched using these resources could get preempted or
// throttled at any time. This could be used by frameworks to run
// best effort tasks that do not need strict uptime or performance
// guarantees. Note that if this is set, 'disk' or 'reservation'
// cannot be set.
optional RevocableInfo revocable = 9;
// Allow the resource to be shared across tasks.
message SharedInfo {}
// If this is set, the resources are shared, i.e. multiple tasks
// can be launched using this resource and all of them shall refer
// to the same physical resource on the cluster. Note that only
// persistent volumes can be shared currently.
optional SharedInfo shared = 10;
}
/**
* When the network bandwidth caps are enabled and the container
* is over its limit, outbound packets may be either delayed or
* dropped completely either because it exceeds the maximum bandwidth
* allocation for a single container (the cap) or because the combined
* network traffic of multiple containers on the host exceeds the
* transmit capacity of the host (the share). We can report the
* following statistics for each of these conditions exported directly
* from the Linux Traffic Control Queueing Discipline.
*
* id : name of the limiter, e.g. 'tx_bw_cap'
* backlog : number of packets currently delayed
* bytes : total bytes seen
* drops : number of packets dropped in total
* overlimits : number of packets which exceeded allocation
* packets : total packets seen
* qlen : number of packets currently queued
* rate_bps : throughput in bytes/sec
* rate_pps : throughput in packets/sec
* requeues : number of times a packet has been delayed due to
* locking or device contention issues
*
* More information on the operation of Linux Traffic Control can be
* found at http://www.lartc.org/lartc.html.
*/
message TrafficControlStatistics {
required string id = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "ID"];
optional uint64 backlog = 2;
optional uint64 bytes = 3;
optional uint64 drops = 4;
optional uint64 overlimits = 5;
optional uint64 packets = 6;
optional uint64 qlen = 7;
optional uint64 ratebps = 8 [(gogoproto.customname) = "RateBPS"];
optional uint64 ratepps = 9 [(gogoproto.customname) = "RatePPS"];
optional uint64 requeues = 10;
}
message IpStatistics {
optional int64 Forwarding = 1;
optional int64 DefaultTTL = 2;
optional int64 InReceives = 3;
optional int64 InHdrErrors = 4;
optional int64 InAddrErrors = 5;
optional int64 ForwDatagrams = 6;
optional int64 InUnknownProtos = 7;
optional int64 InDiscards = 8;
optional int64 InDelivers = 9;
optional int64 OutRequests = 10;
optional int64 OutDiscards = 11;
optional int64 OutNoRoutes = 12;
optional int64 ReasmTimeout = 13;
optional int64 ReasmReqds = 14;
optional int64 ReasmOKs = 15;
optional int64 ReasmFails = 16;
optional int64 FragOKs = 17;
optional int64 FragFails = 18;
optional int64 FragCreates = 19;
}
message IcmpStatistics {
optional int64 InMsgs = 1;
optional int64 InErrors = 2;
optional int64 InCsumErrors = 3;
optional int64 InDestUnreachs = 4;
optional int64 InTimeExcds = 5;
optional int64 InParmProbs = 6;
optional int64 InSrcQuenchs = 7;
optional int64 InRedirects = 8;
optional int64 InEchos = 9;
optional int64 InEchoReps = 10;
optional int64 InTimestamps = 11;
optional int64 InTimestampReps = 12;
optional int64 InAddrMasks = 13;
optional int64 InAddrMaskReps = 14;
optional int64 OutMsgs = 15;
optional int64 OutErrors = 16;
optional int64 OutDestUnreachs = 17;
optional int64 OutTimeExcds = 18;
optional int64 OutParmProbs = 19;
optional int64 OutSrcQuenchs = 20;
optional int64 OutRedirects = 21;
optional int64 OutEchos = 22;
optional int64 OutEchoReps = 23;
optional int64 OutTimestamps = 24;
optional int64 OutTimestampReps = 25;
optional int64 OutAddrMasks = 26;
optional int64 OutAddrMaskReps = 27;
}
message TcpStatistics {
optional int64 RtoAlgorithm = 1;
optional int64 RtoMin = 2;
optional int64 RtoMax = 3;
optional int64 MaxConn = 4;
optional int64 ActiveOpens = 5;
optional int64 PassiveOpens = 6;
optional int64 AttemptFails = 7;
optional int64 EstabResets = 8;
optional int64 CurrEstab = 9;
optional int64 InSegs = 10;
optional int64 OutSegs = 11;
optional int64 RetransSegs = 12;
optional int64 InErrs = 13;
optional int64 OutRsts = 14;
optional int64 InCsumErrors = 15;
}
message UdpStatistics {
optional int64 InDatagrams = 1;
optional int64 NoPorts = 2;
optional int64 InErrors = 3;
optional int64 OutDatagrams = 4;
optional int64 RcvbufErrors = 5;
optional int64 SndbufErrors = 6;
optional int64 InCsumErrors = 7;
optional int64 IgnoredMulti = 8;
}
message SNMPStatistics {
optional IpStatistics ip_stats = 1 [(gogoproto.customname) = "IPStats"];
optional IcmpStatistics icmp_stats = 2 [(gogoproto.customname) = "ICMPStats"];
optional TcpStatistics tcp_stats = 3 [(gogoproto.customname) = "TCPStats"];
optional UdpStatistics udp_stats = 4 [(gogoproto.customname) = "UDPStats"];
}
message DiskStatistics {
optional Resource.DiskInfo.Source source = 1;
optional Resource.DiskInfo.Persistence persistence = 2;
optional uint64 limit_bytes = 3;
optional uint64 used_bytes = 4;
}
/**
* A snapshot of resource usage statistics.
*/
message ResourceStatistics {
required double timestamp = 1 [(gogoproto.nullable) = false]; // Snapshot time, in seconds since the Epoch.
optional uint32 processes = 30;
optional uint32 threads = 31;
// CPU Usage Information:
// Total CPU time spent in user mode, and kernel mode.
optional double cpus_user_time_secs = 2 [(gogoproto.customname) = "CPUsUserTimeSecs"];
optional double cpus_system_time_secs = 3 [(gogoproto.customname) = "CPUsSystemTimeSecs"];
// Number of CPUs allocated.
optional double cpus_limit = 4 [(gogoproto.customname) = "CPUsLimit"];
// cpu.stat on process throttling (for contention issues).
optional uint32 cpus_nr_periods = 7 [(gogoproto.customname) = "CPUsNrPeriods"];
optional uint32 cpus_nr_throttled = 8 [(gogoproto.customname) = "CPUsNrThrottled"];
optional double cpus_throttled_time_secs = 9 [(gogoproto.customname) = "CPUsThrottledTimeSecs"];
// Memory Usage Information:
// mem_total_bytes was added in 0.23.0 to represent the total memory
// of a process in RAM (as opposed to in Swap). This was previously
// reported as mem_rss_bytes, which was also changed in 0.23.0 to
// represent only the anonymous memory usage, to keep in sync with
// Linux kernel's (arguably erroneous) use of terminology.
optional uint64 mem_total_bytes = 36;
// Total memory + swap usage. This is set if swap is enabled.
optional uint64 mem_total_memsw_bytes = 37;
// Hard memory limit for a container.
optional uint64 mem_limit_bytes = 6;
// Soft memory limit for a container.
optional uint64 mem_soft_limit_bytes = 38;
// Broken out memory usage information: pagecache, rss (anonymous),
// mmaped files and swap.
// TODO(chzhcn) mem_file_bytes and mem_anon_bytes are deprecated in
// 0.23.0 and will be removed in 0.24.0.
optional uint64 mem_file_bytes = 10;
optional uint64 mem_anon_bytes = 11;
// mem_cache_bytes is added in 0.23.0 to represent page cache usage.
optional uint64 mem_cache_bytes = 39;
// Since 0.23.0, mem_rss_bytes is changed to represent only
// anonymous memory usage. Note that neither its requiredness, type,
// name nor numeric tag has been changed.
optional uint64 mem_rss_bytes = 5 [(gogoproto.customname) = "MemRSSBytes"];
optional uint64 mem_mapped_file_bytes = 12;
// This is only set if swap is enabled.
optional uint64 mem_swap_bytes = 40;
optional uint64 mem_unevictable_bytes = 41;
// Number of occurrences of different levels of memory pressure
// events reported by memory cgroup. Pressure listening (re)starts
// with these values set to 0 when agent (re)starts. See
// https://www.kernel.org/doc/Documentation/cgroups/memory.txt for
// more details.
optional uint64 mem_low_pressure_counter = 32;
optional uint64 mem_medium_pressure_counter = 33;
optional uint64 mem_critical_pressure_counter = 34;
// Disk Usage Information for executor working directory.
optional uint64 disk_limit_bytes = 26;
optional uint64 disk_used_bytes = 27;
// Per disk (resource) statistics.
repeated DiskStatistics disk_statistics = 43 [(gogoproto.nullable) = false];
// Cgroups blkio statistics.
optional CgroupInfo.Blkio.Statistics blkio_statistics = 44;
// Perf statistics.
optional PerfStatistics perf = 13;
// Network Usage Information:
optional uint64 net_rx_packets = 14;
optional uint64 net_rx_bytes = 15;
optional uint64 net_rx_errors = 16;
optional uint64 net_rx_dropped = 17;
optional uint64 net_tx_packets = 18;
optional uint64 net_tx_bytes = 19;
optional uint64 net_tx_errors = 20;
optional uint64 net_tx_dropped = 21;
// The kernel keeps track of RTT (round-trip time) for its TCP
// sockets. RTT is a way to tell the latency of a container.
optional double net_tcp_rtt_microsecs_p50 = 22 [(gogoproto.customname) = "NetTCPRttMicrosecsP50"];
optional double net_tcp_rtt_microsecs_p90 = 23 [(gogoproto.customname) = "NetTCPRttMicrosecsP90"];
optional double net_tcp_rtt_microsecs_p95 = 24 [(gogoproto.customname) = "NetTCPRttMicrosecsP95"];
optional double net_tcp_rtt_microsecs_p99 = 25 [(gogoproto.customname) = "NetTCPRttMicrosecsP99"];
optional double net_tcp_active_connections = 28 [(gogoproto.customname) = "NetTCPActiveConnections"];
optional double net_tcp_time_wait_connections = 29 [(gogoproto.customname) = "NetTCPTimeWaitConnections"];
// Network traffic flowing into or out of a container can be delayed
// or dropped due to congestion or policy inside and outside the
// container.
repeated TrafficControlStatistics net_traffic_control_statistics = 35 [(gogoproto.nullable) = false];
// Network SNMP statistics for each container.
optional SNMPStatistics net_snmp_statistics = 42 [(gogoproto.customname) = "NetSNMPStatistics"];
}
/**
* Describes a snapshot of the resource usage for executors.
*/
message ResourceUsage {
message Executor {
required ExecutorInfo executor_info = 1 [(gogoproto.nullable) = false];
// This includes resources used by the executor itself
// as well as its active tasks.
repeated Resource allocated = 2 [(gogoproto.nullable) = false];
// Current resource usage. If absent, the containerizer
// cannot provide resource usage.
optional ResourceStatistics statistics = 3;
// The container id for the executor specified in the executor_info field.
required ContainerID container_id = 4 [(gogoproto.nullable) = false, (gogoproto.customname) = "ContainerID"];
message Task {
required string name = 1 [(gogoproto.nullable) = false];
required TaskID id = 2 [(gogoproto.nullable) = false, (gogoproto.customname) = "ID"];
repeated Resource resources = 3 [(gogoproto.nullable) = false];
optional Labels labels = 4;
}
// Non-terminal tasks.
repeated Task tasks = 5 [(gogoproto.nullable) = false];
}
repeated Executor executors = 1 [(gogoproto.nullable) = false];
// Agent's total resources including checkpointed dynamic
// reservations and persistent volumes.
repeated Resource total = 2 [(gogoproto.nullable) = false];
}
/**
* Describes a sample of events from "perf stat". Only available on
* Linux.
*
* NOTE: Each optional field matches the name of a perf event (see
* "perf list") with the following changes:
* 1. Names are downcased.
* 2. Hyphens ('-') are replaced with underscores ('_').
* 3. Events with alternate names use the name "perf stat" returns,
* e.g., for the event "cycles OR cpu-cycles" perf always returns
* cycles.
*/
message PerfStatistics {
required double timestamp = 1 [(gogoproto.nullable) = false]; // Start of sample interval, in seconds since the Epoch.
required double duration = 2 [(gogoproto.nullable) = false]; // Duration of sample interval, in seconds.
// Hardware event.
optional uint64 cycles = 3;
optional uint64 stalled_cycles_frontend = 4;
optional uint64 stalled_cycles_backend = 5;
optional uint64 instructions = 6;
optional uint64 cache_references = 7;
optional uint64 cache_misses = 8;
optional uint64 branches = 9;
optional uint64 branch_misses = 10;
optional uint64 bus_cycles = 11;
optional uint64 ref_cycles = 12;
// Software event.
optional double cpu_clock = 13 [(gogoproto.customname) = "CPUClock"];
optional double task_clock = 14;
optional uint64 page_faults = 15;
optional uint64 minor_faults = 16;
optional uint64 major_faults = 17;
optional uint64 context_switches = 18;
optional uint64 cpu_migrations = 19 [(gogoproto.customname) = "CPUMigrations"];
optional uint64 alignment_faults = 20;
optional uint64 emulation_faults = 21;
// Hardware cache event.
optional uint64 l1_dcache_loads = 22;
optional uint64 l1_dcache_load_misses = 23;
optional uint64 l1_dcache_stores = 24;
optional uint64 l1_dcache_store_misses = 25;
optional uint64 l1_dcache_prefetches = 26;
optional uint64 l1_dcache_prefetch_misses = 27;
optional uint64 l1_icache_loads = 28;
optional uint64 l1_icache_load_misses = 29;
optional uint64 l1_icache_prefetches = 30;
optional uint64 l1_icache_prefetch_misses = 31;
optional uint64 llc_loads = 32 [(gogoproto.customname) = "LLCLoads"];
optional uint64 llc_load_misses = 33 [(gogoproto.customname) = "LLCLoadMisses"];
optional uint64 llc_stores = 34 [(gogoproto.customname) = "LLCStores"];
optional uint64 llc_store_misses = 35 [(gogoproto.customname) = "LLCStoreMisses"];
optional uint64 llc_prefetches = 36 [(gogoproto.customname) = "LLCPrefetches"];
optional uint64 llc_prefetch_misses = 37 [(gogoproto.customname) = "LLCPrefetchMisses"];
optional uint64 dtlb_loads = 38 [(gogoproto.customname) = "DTLBLoads"];
optional uint64 dtlb_load_misses = 39 [(gogoproto.customname) = "DTLBLoadMisses"];
optional uint64 dtlb_stores = 40 [(gogoproto.customname) = "DTLBStores"];
optional uint64 dtlb_store_misses = 41 [(gogoproto.customname) = "DTLBStoreMisses"];
optional uint64 dtlb_prefetches = 42 [(gogoproto.customname) = "DTLBPrefetches"];
optional uint64 dtlb_prefetch_misses = 43 [(gogoproto.customname) = "DTLBPrefetchMisses"];
optional uint64 itlb_loads = 44 [(gogoproto.customname) = "ITLBLoads"];
optional uint64 itlb_load_misses = 45 [(gogoproto.customname) = "ITLBLoadMisses"];
optional uint64 branch_loads = 46;
optional uint64 branch_load_misses = 47;
optional uint64 node_loads = 48;
optional uint64 node_load_misses = 49;
optional uint64 node_stores = 50;
optional uint64 node_store_misses = 51;
optional uint64 node_prefetches = 52;
optional uint64 node_prefetch_misses = 53;
}
/**
* Describes a request for resources that can be used by a framework
* to proactively influence the allocator. If 'agent_id' is provided
* then this request is assumed to only apply to resources on that
* agent.
*/
message Request {
optional AgentID agent_id = 1 [(gogoproto.customname) = "AgentID"];
repeated Resource resources = 2 [(gogoproto.nullable) = false];
}
/**
* Describes some resources available on an agent. An offer only
* contains resources from a single agent.
*/
message Offer {
required OfferID id = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "ID"];
required FrameworkID framework_id = 2 [(gogoproto.nullable) = false, (gogoproto.customname) = "FrameworkID"];
required AgentID agent_id = 3 [(gogoproto.nullable) = false, (gogoproto.customname) = "AgentID"];
required string hostname = 4 [(gogoproto.nullable) = false];
// URL for reaching the agent running on the host.
optional URL url = 8 [(gogoproto.customname) = "URL"];
// The domain of the agent.
optional DomainInfo domain = 11;
repeated Resource resources = 5 [(gogoproto.nullable) = false];
repeated Attribute attributes = 7 [(gogoproto.nullable) = false];
repeated ExecutorID executor_ids = 6 [(gogoproto.nullable) = false, (gogoproto.customname) = "ExecutorIDs"];
// Signifies that the resources in this Offer may be unavailable during
// the given interval. Any tasks launched using these resources may be
// killed when the interval arrives. For example, these resources may be
// part of a planned maintenance schedule.
//
// This field only provides information about a planned unavailability.
// The unavailability interval may not necessarily start at exactly this
// interval, nor last for exactly the duration of this interval.
// The unavailability may also be forever! See comments in
// `Unavailability` for more details.
optional Unavailability unavailability = 9;
// An offer represents resources allocated to *one* of the
// roles managed by the scheduler. (Therefore, each
// `Offer.resources[i].allocation_info` will match the
// top level `Offer.allocation_info`).
optional Resource.AllocationInfo allocation_info = 10;
// Defines an operation that can be performed against offers.
message Operation {
enum Type {
UNKNOWN = 0;
LAUNCH = 1;
LAUNCH_GROUP = 6;
RESERVE = 2;
UNRESERVE = 3;
CREATE = 4;
DESTROY = 5;
option (gogoproto.goproto_enum_prefix) = true;
}
// TODO(vinod): Deprecate this in favor of `LaunchGroup` below.
message Launch {
repeated TaskInfo task_infos = 1 [(gogoproto.nullable) = false];
}
// Unlike `Launch` above, all the tasks in a `task_group` are
// atomically delivered to an executor.
//
// `NetworkInfo` set on executor will be shared by all tasks in
// the task group.
//
// TODO(vinod): Any volumes set on executor could be used by a
// task by explicitly setting `Volume.source` in its resources.
message LaunchGroup {
required ExecutorInfo executor = 1 [(gogoproto.nullable) = false];
required TaskGroupInfo task_group = 2 [(gogoproto.nullable) = false];
}
message Reserve {
repeated Resource resources = 1 [(gogoproto.nullable) = false];
}
message Unreserve {
repeated Resource resources = 1 [(gogoproto.nullable) = false];
}
message Create {
repeated Resource volumes = 1 [(gogoproto.nullable) = false];
}
message Destroy {
repeated Resource volumes = 1 [(gogoproto.nullable) = false];
}
optional Type type = 1 [(gogoproto.nullable) = false];
optional Launch launch = 2;
optional LaunchGroup launch_group = 7;
optional Reserve reserve = 3;
optional Unreserve unreserve = 4;
optional Create create = 5;
optional Destroy destroy = 6;
}
}
/**
* A request to return some resources occupied by a framework.
*/
message InverseOffer {
// This is the same OfferID as found in normal offers, which allows
// re-use of some of the OfferID-only messages.
required OfferID id = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "OfferID"];
// URL for reaching the agent running on the host. This enables some
// optimizations as described in MESOS-3012, such as allowing the
// scheduler driver to bypass the master and talk directly with an agent.
optional URL url = 2 [(gogoproto.customname) = "URL"];
// The framework that should release its resources.
// If no specifics are provided (i.e. which agent), all the framework's
// resources are requested back.
required FrameworkID framework_id = 3 [(gogoproto.nullable) = false, (gogoproto.customname) = "FrameworkID"];
// Specified if the resources need to be released from a particular agent.
// All the framework's resources on this agent are requested back,
// unless further qualified by the `resources` field.
optional AgentID agent_id = 4 [(gogoproto.customname) = "AgentID"];
// This InverseOffer represents a planned unavailability event in the
// specified interval. Any tasks running on the given framework or agent
// may be killed when the interval arrives. Therefore, frameworks should
// aim to gracefully terminate tasks prior to the arrival of the interval.
//
// For reserved resources, the resources are expected to be returned to the
// framework after the unavailability interval. This is an expectation,
// not a guarantee. For example, if the unavailability duration is not set,
// the resources may be removed permanently.
//
// For other resources, there is no guarantee that requested resources will
// be returned after the unavailability interval. The allocator has no
// obligation to re-offer these resources to the prior framework after
// the unavailability.
required Unavailability unavailability = 5 [(gogoproto.nullable) = false];
// A list of resources being requested back from the framework,
// on the agent identified by `agent_id`. If no resources are specified
// then all resources are being requested back. For the purpose of
// maintenance, this field is always empty (maintenance always requests
// all resources back).
repeated Resource resources = 6 [(gogoproto.nullable) = false];
// TODO(josephw): Add additional options for narrowing down the resources
// being requested back. Such as specific executors, tasks, etc.
}
/**
* Describes a task. Passed from the scheduler all the way to an
* executor (see SchedulerDriver::launchTasks and
* Executor::launchTask). Either ExecutorInfo or CommandInfo should be set.
* A different executor can be used to launch this task, and subsequent tasks
* meant for the same executor can reuse the same ExecutorInfo struct.
*/
message TaskInfo {
required string name = 1 [(gogoproto.nullable) = false];
required TaskID task_id = 2 [(gogoproto.nullable) = false, (gogoproto.customname) = "TaskID"];
required AgentID agent_id = 3 [(gogoproto.nullable) = false, (gogoproto.customname) = "AgentID"];
repeated Resource resources = 4 [(gogoproto.nullable) = false];
optional ExecutorInfo executor = 5;
optional CommandInfo command = 7;
// Task provided with a container will launch the container as part
// of this task paired with the task's CommandInfo.
optional ContainerInfo container = 9;
// A health check for the task. Implemented for executor-less
// command-based tasks. For tasks that specify an executor, it is
// the executor's responsibility to implement the health checking.
optional HealthCheck health_check = 8;
// A general check for the task. Implemented for all built-in executors.
// For tasks that specify an executor, it is the executor's responsibility
// to implement checking support. Executors should (all built-in executors
// will) neither interpret nor act on the check's result.
//
// NOTE: Check support in built-in executors is experimental.
//
// TODO(alexr): Consider supporting multiple checks per task.
optional CheckInfo check = 13;
// A kill policy for the task. Implemented for executor-less
// command-based and docker tasks. For tasks that specify an
// executor, it is the executor's responsibility to implement
// the kill policy.
optional KillPolicy kill_policy = 12;
optional bytes data = 6;
// Labels are free-form key value pairs which are exposed through
// master and agent endpoints. Labels will not be interpreted or
// acted upon by Mesos itself. As opposed to the data field, labels
// will be kept in memory on master and agent processes. Therefore,
// labels should be used to tag tasks with light-weight meta-data.
// Labels should not contain duplicate key-value pairs.
optional Labels labels = 10;
// Service discovery information for the task. It is not interpreted
// or acted upon by Mesos. It is up to a service discovery system
// to use this information as needed and to handle tasks without
// service discovery information.
optional DiscoveryInfo discovery = 11;
}
/**
* Describes a group of tasks that belong to an executor. The
* executor will receive the task group in a single message to
* allow the group to be launched "atomically".
*
* NOTES:
* 1) `NetworkInfo` must not be set inside task's `ContainerInfo`.
* 2) `TaskInfo.executor` doesn't need to set. If set, it should match
* `LaunchGroup.executor`.
*/
message TaskGroupInfo {
repeated TaskInfo tasks = 1 [(gogoproto.nullable) = false];
}
// TODO(bmahler): Add executor_uuid here, and send it to the master. This will
// allow us to expose executor work directories for tasks in the webui when
// looking from the master level. Currently only the agent knows which run the
// task belongs to.
/**
* Describes a task, similar to `TaskInfo`.
*
* `Task` is used in some of the Mesos messages found below.
* `Task` is used instead of `TaskInfo` if:
* 1) we need additional IDs, such as a specific
* framework, executor, or agent; or
* 2) we do not need the additional data, such as the command run by the
* task or the health checks. These additional fields may be large and
* unnecessary for some Mesos messages.
*
* `Task` is generally constructed from a `TaskInfo`. See protobuf::createTask.
*/
message Task {
required string name = 1 [(gogoproto.nullable) = false];
required TaskID task_id = 2 [(gogoproto.nullable) = false, (gogoproto.customname) = "TaskID"];
required FrameworkID framework_id = 3 [(gogoproto.nullable) = false, (gogoproto.customname) = "FrameworkID"];
optional ExecutorID executor_id = 4 [(gogoproto.customname) = "ExecutorID"];
required AgentID agent_id = 5 [(gogoproto.nullable) = false, (gogoproto.customname) = "AgentID"];
required TaskState state = 6; // Latest state of the task.
repeated Resource resources = 7 [(gogoproto.nullable) = false];
repeated TaskStatus statuses = 8 [(gogoproto.nullable) = false];
// These fields correspond to the state and uuid of the latest
// status update forwarded to the master.
// NOTE: Either both the fields must be set or both must be unset.
optional TaskState status_update_state = 9;
optional bytes status_update_uuid = 10 [(gogoproto.customname) = "StatusUpdateUUID"];
optional Labels labels = 11;
// Service discovery information for the task. It is not interpreted
// or acted upon by Mesos. It is up to a service discovery system
// to use this information as needed and to handle tasks without
// service discovery information.
optional DiscoveryInfo discovery = 12;
// Container information for the task.
optional ContainerInfo container = 13;
// Specific user under which task is running.
optional string user = 14;
}
/**
* Describes possible task states. IMPORTANT: Mesos assumes tasks that
* enter terminal states (see below) imply the task is no longer
* running and thus clean up any thing associated with the task
* (ultimately offering any resources being consumed by that task to
* another task).
*/
enum TaskState {
TASK_STAGING = 6; // Initial state. Framework status updates should not use.
TASK_STARTING = 0; // The task is being launched by the executor.
TASK_RUNNING = 1;
// NOTE: This should only be sent when the framework has
// the TASK_KILLING_STATE capability.
TASK_KILLING = 8; // The task is being killed by the executor.
TASK_FINISHED = 2; // TERMINAL: The task finished successfully.
TASK_FAILED = 3; // TERMINAL: The task failed to finish successfully.
TASK_KILLED = 4; // TERMINAL: The task was killed by the executor.
TASK_ERROR = 7; // TERMINAL: The task description contains an error.
// In Mesos 1.3, this will only be sent when the framework does NOT
// opt-in to the PARTITION_AWARE capability.
//
// NOTE: This state is not always terminal. For example, tasks might
// transition from TASK_LOST to TASK_RUNNING or other states when a
// partitioned agent re-registers.
TASK_LOST = 5; // The task failed but can be rescheduled.
// The following task states are only sent when the framework
// opts-in to the PARTITION_AWARE capability.
// The task failed to launch because of a transient error. The
// task's executor never started running. Unlike TASK_ERROR, the
// task description is valid -- attempting to launch the task again
// may be successful.
TASK_DROPPED = 9; // TERMINAL.
// The task was running on an agent that has lost contact with the
// master, typically due to a network failure or partition. The task
// may or may not still be running.
TASK_UNREACHABLE = 10;
// The task is no longer running. This can occur if the agent has
// been terminated along with all of its tasks (e.g., the host that
// was running the agent was rebooted). It might also occur if the
// task was terminated due to an agent or containerizer error, or if
// the task was preempted by the QoS controller in an
// oversubscription scenario.
TASK_GONE = 11; // TERMINAL.
// The task was running on an agent that the master cannot contact;
// the operator has asserted that the agent has been shutdown, but
// this has not been directly confirmed by the master. If the
// operator is correct, the task is not running and this is a
// terminal state; if the operator is mistaken, the task may still
// be running and might return to RUNNING in the future.
TASK_GONE_BY_OPERATOR = 12;
// The master has no knowledge of the task. This is typically
// because either (a) the master never had knowledge of the task, or
// (b) the master forgot about the task because it garbage collected
// its metadata about the task. The task may or may not still be
// running.
TASK_UNKNOWN = 13;
}
/**
* Describes the status of a check. Type and the corresponding field, i.e.,
* `command` or `http` must be set. If the result of the check is not available
* (e.g., the check timed out), these fields must contain empty messages, i.e.,
* `exit_code` or `status_code` will be unset.
*
* NOTE: This API is unstable and the related feature is experimental.
*/
message CheckStatusInfo {
message Command {
// Exit code of a command check. It is the result of calling
// `WEXITSTATUS()` on `waitpid()` termination information on
// Posix and calling `GetExitCodeProcess()` on Windows.
optional int32 exit_code = 1;
}
message Http {
// HTTP status code of an HTTP check.
optional uint32 status_code = 1;
}
message Tcp {
// Whether a TCP connection succeeded.
optional bool succeeded = 1;
}
// TODO(alexr): Consider adding a `data` field, which can contain, e.g.,
// truncated stdout/stderr output for command checks or HTTP response body
// for HTTP checks. Alternatively, it can be an even shorter `message` field
// containing the last line of stdout or Reason-Phrase of the status line of
// the HTTP response.
// The type of the check this status corresponds to.
optional CheckInfo.Type type = 1;
// Status of a command check.
optional Command command = 2;
// Status of an HTTP check.
optional Http http = 3 [(gogoproto.customname) = "HTTP"];
// Status of a TCP check.
optional Tcp tcp = 4 [(gogoproto.customname) = "TCP"];
// TODO(alexr): Consider introducing a "last changed at" timestamp, since
// task status update's timestamp may not correspond to the last check's
// state, e.g., for reconciliation.
// TODO(alexr): Consider introducing a `reason` enum here to explicitly
// distinguish between completed, delayed, and timed out checks.
}
/**
* Describes the current status of a task.
*/
message TaskStatus {
// Describes the source of the task status update.
enum Source {
SOURCE_MASTER = 0;
SOURCE_AGENT = 1;
SOURCE_EXECUTOR = 2;
}
// Detailed reason for the task status update.
//
// TODO(bmahler): Differentiate between agent removal reasons
// (e.g. unhealthy vs. unregistered for maintenance).
enum Reason {
// TODO(jieyu): The default value when a caller doesn't check for
// presence is 0 and so ideally the 0 reason is not a valid one.
// Since this is not used anywhere, consider removing this reason.
REASON_COMMAND_EXECUTOR_FAILED = 0;
REASON_CONTAINER_LAUNCH_FAILED = 21;
REASON_CONTAINER_LIMITATION = 19;
REASON_CONTAINER_LIMITATION_DISK = 20;
REASON_CONTAINER_LIMITATION_MEMORY = 8;
REASON_CONTAINER_PREEMPTED = 17;
REASON_CONTAINER_UPDATE_FAILED = 22;
REASON_EXECUTOR_REGISTRATION_TIMEOUT = 23;
REASON_EXECUTOR_REREGISTRATION_TIMEOUT = 24;
REASON_EXECUTOR_TERMINATED = 1;
REASON_EXECUTOR_UNREGISTERED = 2; // No longer used.
REASON_FRAMEWORK_REMOVED = 3;
REASON_GC_ERROR = 4;
REASON_INVALID_FRAMEWORKID = 5;
REASON_INVALID_OFFERS = 6;
REASON_IO_SWITCHBOARD_EXITED = 27;
REASON_MASTER_DISCONNECTED = 7;
REASON_RECONCILIATION = 9;
REASON_RESOURCES_UNKNOWN = 18;
REASON_AGENT_DISCONNECTED = 10;
REASON_AGENT_REMOVED = 11;
REASON_AGENT_RESTARTED = 12;
REASON_AGENT_UNKNOWN = 13;
REASON_TASK_KILLED_DURING_LAUNCH = 30;
REASON_TASK_CHECK_STATUS_UPDATED = 28;
REASON_TASK_HEALTH_CHECK_STATUS_UPDATED = 29;
REASON_TASK_GROUP_INVALID = 25;
REASON_TASK_GROUP_UNAUTHORIZED = 26;
REASON_TASK_INVALID = 14;
REASON_TASK_UNAUTHORIZED = 15;
REASON_TASK_UNKNOWN = 16;
}
required TaskID task_id = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "TaskID"];
required TaskState state = 2;
optional string message = 4; // Possible message explaining state.
optional Source source = 9;
optional Reason reason = 10;
optional bytes data = 3;
optional AgentID agent_id = 5 [(gogoproto.customname) = "AgentID"];
optional ExecutorID executor_id = 7 [(gogoproto.customname) = "ExecutorID"]; // TODO(benh): Use in master/agent.
optional double timestamp = 6;
// Statuses that are delivered reliably to the scheduler will
// include a 'uuid'. The status is considered delivered once
// it is acknowledged by the scheduler. Schedulers can choose
// to either explicitly acknowledge statuses or let the scheduler
// driver implicitly acknowledge (default).
//
// TODO(bmahler): This is currently overwritten in the scheduler
// driver and executor driver, but executors will need to set this
// to a valid RFC-4122 UUID if using the HTTP API.
optional bytes uuid = 11 [(gogoproto.customname) = "UUID"];
// Describes whether the task has been determined to be healthy (true) or
// unhealthy (false) according to the `health_check` field in `TaskInfo`.
optional bool healthy = 8;
// Contains check status for the check specified in the corresponding
// `TaskInfo`. If no check has been specified, this field must be
// absent, otherwise it must be present even if the check status is
// not available yet. If the status update is triggered for a different
// reason than `REASON_TASK_CHECK_STATUS_UPDATED`, this field will contain
// the last known value.
//
// NOTE: A check-related task status update is triggered if and only if
// the value or presence of any field in `CheckStatusInfo` changes.
//
// NOTE: Check support in built-in executors is experimental.
optional CheckStatusInfo check_status = 15;
// Labels are free-form key value pairs which are exposed through
// master and agent endpoints. Labels will not be interpreted or
// acted upon by Mesos itself. As opposed to the data field, labels
// will be kept in memory on master and agent processes. Therefore,
// labels should be used to tag TaskStatus message with light-weight
// meta-data. Labels should not contain duplicate key-value pairs.
optional Labels labels = 12;
// Container related information that is resolved dynamically such as
// network address.
optional ContainerStatus container_status = 13;
// The time (according to the master's clock) when the agent where
// this task was running became unreachable. This is only set on
// status updates for tasks running on agents that are unreachable
// (e.g., partitioned away from the master).
optional TimeInfo unreachable_time = 14;
}
/**
* Describes possible filters that can be applied to unused resources
* (see SchedulerDriver::launchTasks) to influence the allocator.
*/
message Filters {
// Time to consider unused resources refused. Note that all unused
// resources will be considered refused and use the default value
// (below) regardless of whether Filters was passed to
// SchedulerDriver::launchTasks. You MUST pass Filters with this
// field set to change this behavior (i.e., get another offer which
// includes unused resources sooner or later than the default).
optional double refuse_seconds = 1 [default = 5.0];
}
/**
* Describes a collection of environment variables. This is used with
* CommandInfo in order to set environment variables before running a
* command. The contents of each variable may be specified as a string
* or a Secret; only one of `value` and `secret` must be set.
*/
message Environment {
message Variable {
required string name = 1 [(gogoproto.nullable) = false];
enum Type {
UNKNOWN = 0;
VALUE = 1;
SECRET = 2;
option (gogoproto.goproto_enum_prefix) = true;
}
// In Mesos 1.2, the `Environment.variables.value` message was made
// optional. The default type for `Environment.variables.type` is now VALUE,
// which requires `value` to be set, maintaining backward compatibility.
//
// TODO(greggomann): The default can be removed in Mesos 2.1 (MESOS-7134).
optional Type type = 3 [default = VALUE];
// Only one of `value` and `secret` must be set.
optional string value = 2;
optional Secret secret = 4;
}
repeated Variable variables = 1 [(gogoproto.nullable) = false];
}
/**
* A generic (key, value) pair used in various places for parameters.
*/
message Parameter {
required string key = 1 [(gogoproto.nullable) = false];
required string value = 2 [(gogoproto.nullable) = false];
}
/**
* Collection of Parameter.
*/
message Parameters {
repeated Parameter parameter = 1 [(gogoproto.nullable) = false];
}
/**
* Credential used in various places for authentication and
* authorization.
*
* NOTE: A 'principal' is different from 'FrameworkInfo.user'. The
* former is used for authentication and authorization while the
* latter is used to determine the default user under which the
* framework's executors/tasks are run.
*/
message Credential {
required string principal = 1 [(gogoproto.nullable) = false];
optional string secret = 2;
}
/**
* Credentials used for framework authentication, HTTP authentication
* (where the common 'username' and 'password' are captured as
* 'principal' and 'secret' respectively), etc.
*/
message Credentials {
repeated Credential credentials = 1 [(gogoproto.nullable) = false];
}
/**
* Secret used to pass privileged information. It is designed to provide
* pass-by-value or pass-by-reference semantics, where the REFERENCE type can be
* used by custom modules which interact with a secure back-end.
*/
message Secret
{
enum Type {
UNKNOWN = 0;
REFERENCE = 1;
VALUE = 2;
option (gogoproto.goproto_enum_prefix) = true;
}
// Can be used by modules to refer to a secret stored in a secure back-end.
// The `key` field is provided to permit reference to a single value within a
// secret containing arbitrary key-value pairs.
//
// For example, given a back-end secret store with a secret named
// "my-secret" containing the following key-value pairs:
//
// {
// "username": "my-user",
// "password": "my-password
// }
//
// the username could be referred to in a `Secret` by specifying
// "my-secret" for the `name` and "username" for the `key`.
message Reference
{
required string name = 1 [(gogoproto.nullable) = false];
optional string key = 2;
}
// Used to pass the value of a secret.
message Value
{
required bytes data = 1;
}
optional Type type = 1 [(gogoproto.nullable) = false];
// Only one of `reference` and `value` must be set.
optional Reference reference = 2;
optional Value value = 3;
}
/**
* Rate (queries per second, QPS) limit for messages from a framework to master.
* Strictly speaking they are the combined rate from all frameworks of the same
* principal.
*/
message RateLimit {
// Leaving QPS unset gives it unlimited rate (i.e., not throttled),
// which also implies unlimited capacity.
optional double qps = 1 [(gogoproto.customname) = "QPS"];
// Principal of framework(s) to be throttled. Should match
// FrameworkInfo.principal and Credential.principal (if using authentication).
required string principal = 2 [(gogoproto.nullable) = false];
// Max number of outstanding messages from frameworks of this principal
// allowed by master before the next message is dropped and an error is sent
// back to the sender. Messages received before the capacity is reached are
// still going to be processed after the error is sent.
// If unspecified, this principal is assigned unlimited capacity.
// NOTE: This value is ignored if 'qps' is not set.
optional uint64 capacity = 3;
}
/**
* Collection of RateLimit.
* Frameworks without rate limits defined here are not throttled unless
* 'aggregate_default_qps' is specified.
*/
message RateLimits {
// Items should have unique principals.
repeated RateLimit limits = 1 [(gogoproto.nullable) = false];
// All the frameworks not specified in 'limits' get this default rate.
// This rate is an aggregate rate for all of them, i.e., their combined
// traffic is throttled together at this rate.
optional double aggregate_default_qps = 2 [(gogoproto.customname) = "AggregateDefaultQPS"];
// All the frameworks not specified in 'limits' get this default capacity.
// This is an aggregate value similar to 'aggregate_default_qps'.
optional uint64 aggregate_default_capacity = 3;
}
/**
* Describe an image used by tasks or executors. Note that it's only
* for tasks or executors launched by MesosContainerizer currently.
*/
message Image {
enum Type {
APPC = 1;
DOCKER = 2;
option (gogoproto.goproto_enum_prefix) = true;
}
// Protobuf for specifying an Appc container image. See:
// https://github.com/appc/spec/blob/master/spec/aci.md
message Appc {
// The name of the image.
required string name = 1 [(gogoproto.nullable) = false];
// An image ID is a string of the format "hash-value", where
// "hash" is the hash algorithm used and "value" is the hex
// encoded string of the digest. Currently the only permitted
// hash algorithm is sha512.
optional string id = 2 [(gogoproto.customname) = "ID"];
// Optional labels. Suggested labels: "version", "os", and "arch".
optional Labels labels = 3;
}
message Docker {
// The name of the image. Expected format:
// [REGISTRY_HOST[:REGISTRY_PORT]/]REPOSITORY[:TAG|@TYPE:DIGEST]
//
// See: https://docs.docker.com/reference/commandline/pull/
required string name = 1 [(gogoproto.nullable) = false];
// Credential to authenticate with docker registry.
// NOTE: This is not encrypted, therefore framework and operators
// should enable SSL when passing this information.
//
// This field has never been used in Mesos before and is
// deprecated since Mesos 1.3. Please use `config` below
// (see MESOS-7088 for details).
optional Credential credential = 2 [deprecated = true]; // Since 1.3.
// Docker config containing credentails to authenticate with
// docker registry. The secret is expected to be a docker
// config file in JSON format with UTF-8 character encoding.
optional Secret config = 3;
}
required Type type = 1;
// Only one of the following image messages should be set to match
// the type.
optional Appc appc = 2;
optional Docker docker = 3;
// With this flag set to false, the mesos containerizer will pull
// the docker/appc image from the registry even if the image is
// already downloaded on the agent.
optional bool cached = 4 [default = true];
}
/**
* Describes a volume mapping either from host to container or vice
* versa. Both paths can either refer to a directory or a file.
*/
message Volume {
enum Mode {
RW = 1; // read-write.
RO = 2; // read-only.
}
// TODO(gyliu513): Make this as `optional` after deprecation cycle of 1.0.
required Mode mode = 3;
// Path pointing to a directory or file in the container. If the
// path is a relative path, it is relative to the container work
// directory. If the path is an absolute path, that path must
// already exist.
required string container_path = 1 [(gogoproto.nullable) = false];
// The following specifies the source of this volume. At most one of
// the following should be set.
// Absolute path pointing to a directory or file on the host or a
// path relative to the container work directory.
optional string host_path = 2;
// The source of the volume is an Image which describes a root
// filesystem which will be provisioned by Mesos.
optional Image image = 4;
// Describes where a volume originates from.
message Source {
enum Type {
// This must be the first enum value in this list, to
// ensure that if 'type' is not set, the default value
// is UNKNOWN. This enables enum values to be added
// in a backwards-compatible way. See: MESOS-4997.
UNKNOWN = 0;
// TODO(gyliu513): Add HOST_PATH and IMAGE as volume source type.
DOCKER_VOLUME = 1;
SANDBOX_PATH = 2;
SECRET = 3;
option (gogoproto.goproto_enum_prefix) = true;
}
message DockerVolume {
// Driver of the volume, it can be flocker, convoy, raxrey etc.
optional string driver = 1;
// Name of the volume.
required string name = 2 [(gogoproto.nullable) = false];
// Volume driver specific options.
optional Parameters driver_options = 3;
}
// Describe a path from a container's sandbox. The container can
// be the current container (SELF), or its parent container
// (PARENT). PARENT allows all child containers to share a volume
// from their parent container's sandbox. It'll be an error if
// the current container is a top level container.
message SandboxPath {
enum Type {
UNKNOWN = 0;
SELF = 1;
PARENT = 2;
option (gogoproto.goproto_enum_prefix) = true;
}
optional Type type = 1 [(gogoproto.nullable) = false];
// A path relative to the corresponding container's sandbox.
// Note that upwards traversal (i.e. ../../abc) is not allowed.
required string path = 2 [(gogoproto.nullable) = false];
}
// Enum fields should be optional, see: MESOS-4997.
optional Type type = 1 [(gogoproto.nullable) = false];
// The following specifies the source of this volume. At most one of
// the following should be set.
// The source of the volume created by docker volume driver.
optional DockerVolume docker_volume = 2;
optional SandboxPath sandbox_path = 3;
// The volume/secret isolator uses the secret-fetcher module (third-party or
// internal) downloads the secret and makes it available at container_path.
optional Secret secret = 4;
}
optional Source source = 5;
}
/**
* Describes a network request from a framework as well as network resolution
* provided by Mesos.
*
* A framework may request the network isolator on the Agent to isolate the
* container in a network namespace and create a virtual network interface.
* The `NetworkInfo` message describes the properties of that virtual
* interface, including the IP addresses and network isolation policy
* (network group membership).
*
* The NetworkInfo message is not interpreted by the Master or Agent and is
* intended to be used by Agent and Master modules implementing network
* isolation. If the modules are missing, the message is simply ignored. In
* future, the task launch will fail if there is no module providing the
* network isolation capabilities (MESOS-3390).
*
* An executor, Agent, or an Agent module may append NetworkInfos inside
* TaskStatus::container_status to provide information such as the container IP
* address and isolation groups.
*/
message NetworkInfo {
enum Protocol {
IPv4 = 1;
IPv6 = 2;
}
// Specifies a request for an IP address, or reports the assigned container
// IP address.
//
// Users can request an automatically assigned IP (for example, via an
// IPAM service) or a specific IP by adding a NetworkInfo to the
// ContainerInfo for a task. On a request, specifying neither `protocol`
// nor `ip_address` means that any available address may be assigned.
message IPAddress {
// Specify IP address requirement. Set protocol to the desired value to
// request the network isolator on the Agent to assign an IP address to the
// container being launched. If a specific IP address is specified in
// ip_address, this field should not be set.
optional Protocol protocol = 1 [default = IPv4];
// Statically assigned IP provided by the Framework. This IP will be
// assigned to the container by the network isolator module on the Agent.
// This field should not be used with the protocol field above.
//
// If an explicit address is requested but is unavailable, the network
// isolator should fail the task.
optional string ip_address = 2 [(gogoproto.customname) = "IPAddress"];
}
// When included in a ContainerInfo, each of these represent a
// request for an IP address. Each request can specify an explicit address
// or the IP protocol to use.
//
// When included in a TaskStatus message, these inform the framework
// scheduler about the IP addresses that are bound to the container
// interface. When there are no custom network isolator modules installed,
// this field is filled in automatically with the Agent IP address.
repeated IPAddress ip_addresses = 5 [(gogoproto.nullable) = false, (gogoproto.customname) = "IPAddresses"];
// Name of the network which will be used by network isolator to determine
// the network that the container joins. It's up to the network isolator
// to decide how to interpret this field.
optional string name = 6;
// A group is the name given to a set of logically-related interfaces that
// are allowed to communicate among themselves. Network traffic is allowed
// between two container interfaces that share at least one network group.
// For example, one might want to create separate groups for isolating dev,
// testing, qa and prod deployment environments.
repeated string groups = 3;
// To tag certain metadata to be used by Isolator/IPAM, e.g., rack, etc.
optional Labels labels = 4;
// Specifies a port mapping request for the task on this network.
message PortMapping {
required uint32 host_port = 1 [(gogoproto.nullable) = false];
required uint32 container_port = 2 [(gogoproto.nullable) = false];
// Protocol to expose as (ie: tcp, udp).
optional string protocol = 3;
}
repeated PortMapping port_mappings = 7 [(gogoproto.nullable) = false];
};
/**
* Encapsulation of `Capabilities` supported by Linux.
* Reference: http://linux.die.net/man/7/capabilities.
*/
message CapabilityInfo {
// We start the actual values at an offset(1000) because Protobuf 2
// uses the first value as the default one. Separating the default
// value from the real first value helps to disambiguate them. This
// is especially valuable for backward compatibility.
// See: MESOS-4997.
enum Capability {
UNKNOWN = 0;
CHOWN = 1000;
DAC_OVERRIDE = 1001;
DAC_READ_SEARCH = 1002;
FOWNER = 1003;
FSETID = 1004;
KILL = 1005;
SETGID = 1006;
SETUID = 1007;
SETPCAP = 1008;
LINUX_IMMUTABLE = 1009;
NET_BIND_SERVICE = 1010;
NET_BROADCAST = 1011;
NET_ADMIN = 1012;
NET_RAW = 1013;
IPC_LOCK = 1014;
IPC_OWNER = 1015;
SYS_MODULE = 1016;
SYS_RAWIO = 1017;
SYS_CHROOT = 1018;
SYS_PTRACE = 1019;
SYS_PACCT = 1020;
SYS_ADMIN = 1021;
SYS_BOOT = 1022;
SYS_NICE = 1023;
SYS_RESOURCE = 1024;
SYS_TIME = 1025;
SYS_TTY_CONFIG = 1026;
MKNOD = 1027;
LEASE = 1028;
AUDIT_WRITE = 1029;
AUDIT_CONTROL = 1030;
SETFCAP = 1031;
MAC_OVERRIDE = 1032;
MAC_ADMIN = 1033;
SYSLOG = 1034;
WAKE_ALARM = 1035;
BLOCK_SUSPEND = 1036;
AUDIT_READ = 1037;
option (gogoproto.goproto_enum_prefix) = true;
}
repeated Capability capabilities = 1;
}
/**
* Encapsulation for Linux specific configuration.
* E.g, capabilities, limits etc.
*/
message LinuxInfo {
// Since 1.4.0, deprecated in favor of `effective_capabilities`.
optional CapabilityInfo capability_info = 1 [deprecated = true];
// The set of capabilities that are allowed but not initially
// granted to tasks.
optional CapabilityInfo bounding_capabilities = 2;
// Represents the set of capabilities that the task will
// be executed with.
optional CapabilityInfo effective_capabilities = 3;
// If set as 'true', the container shares the pid namespace with
// its parent. If the container is a top level container, it will
// share the pid namespace with the agent. If the container is a
// nested container, it will share the pid namespace with its
// parent container. This field will be ignored if 'namespaces/pid'
// isolator is not enabled.
optional bool share_pid_namespace = 4 [(gogoproto.customname) = "SharePIDNamespace"];
}
/**
* Encapsulation for POSIX rlimits, see
* http://pubs.opengroup.org/onlinepubs/009695399/functions/getrlimit.html.
* Note that some types might only be defined for Linux.
* We use a custom prefix to avoid conflict with existing system macros
* (e.g., `RLIMIT_CPU` or `NOFILE`).
*/
message RLimitInfo {
message RLimit {
enum Type {
UNKNOWN = 0;
RLMT_AS = 1;
RLMT_CORE = 2;
RLMT_CPU = 3;
RLMT_DATA = 4;
RLMT_FSIZE = 5;
RLMT_LOCKS = 6;
RLMT_MEMLOCK = 7;
RLMT_MSGQUEUE = 8;
RLMT_NICE = 9;
RLMT_NOFILE = 10;
RLMT_NPROC = 11;
RLMT_RSS = 12;
RLMT_RTPRIO = 13;
RLMT_RTTIME = 14;
RLMT_SIGPENDING = 15;
RLMT_STACK = 16;
option (gogoproto.goproto_enum_prefix) = true;
}
optional Type type = 1 [(gogoproto.nullable) = false];
// Either both are set or both are not set.
// If both are not set, it represents unlimited.
// If both are set, we require `soft` <= `hard`.
optional uint64 hard = 2;
optional uint64 soft = 3;
}
repeated RLimit rlimits = 1 [(gogoproto.nullable) = false];
}
/**
* Describes the information about (pseudo) TTY that can
* be attached to a process running in a container.
*/
message TTYInfo {
message WindowSize {
required uint32 rows = 1 [(gogoproto.nullable) = false];
required uint32 columns = 2 [(gogoproto.nullable) = false];
}
optional WindowSize window_size = 1;
}
/**
* Describes a container configuration and allows extensible
* configurations for different container implementations.
*
* NOTE: `ContainerInfo` may be specified, e.g., by a task, even if no
* container image is provided. In this case neither `MesosInfo` nor
* `DockerInfo` is set, the required `type` must be `MESOS`. This is to
* address a case when a task without an image, e.g., a shell script
* with URIs, wants to use features originally designed for containers,
* for example custom network isolation via `NetworkInfo`.
*/
message ContainerInfo {
// All container implementation types.
enum Type {
DOCKER = 1;
MESOS = 2;
option (gogoproto.goproto_enum_prefix) = true;
}
message DockerInfo {
// The docker image that is going to be passed to the registry.
required string image = 1 [(gogoproto.nullable) = false];
// Network options.
enum Network {
HOST = 1;
BRIDGE = 2;
NONE = 3;
USER = 4;
option (gogoproto.goproto_enum_prefix) = true;
}
optional Network network = 2 [default = HOST];
message PortMapping {
required uint32 host_port = 1 [(gogoproto.nullable) = false];
required uint32 container_port = 2 [(gogoproto.nullable) = false];
// Protocol to expose as (ie: tcp, udp).
optional string protocol = 3;
}
repeated PortMapping port_mappings = 3 [(gogoproto.nullable) = false];
optional bool privileged = 4 [default = false];
// Allowing arbitrary parameters to be passed to docker CLI.
// Note that anything passed to this field is not guaranteed
// to be supported moving forward, as we might move away from
// the docker CLI.
repeated Parameter parameters = 5 [(gogoproto.nullable) = false];
// With this flag set to true, the docker containerizer will
// pull the docker image from the registry even if the image
// is already downloaded on the agent.
optional bool force_pull_image = 6;
// The name of volume driver plugin.
optional string volume_driver = 7 [deprecated = true]; // Since 1.0
}
message MesosInfo {
optional Image image = 1;
}
required Type type = 1;
repeated Volume volumes = 2 [(gogoproto.nullable) = false];
optional string hostname = 4;
// Only one of the following *Info messages should be set to match
// the type.
optional DockerInfo docker = 3;
optional MesosInfo mesos = 5;
// A list of network requests. A framework can request multiple IP addresses
// for the container.
repeated NetworkInfo network_infos = 7 [(gogoproto.nullable) = false];
// Linux specific information for the container.
optional LinuxInfo linux_info = 8;
// (POSIX only) rlimits of the container.
optional RLimitInfo rlimit_info = 9;
// If specified a tty will be attached to the container entrypoint.
optional TTYInfo tty_info = 10 [(gogoproto.customname) = "TTYInfo"];
}
/**
* Container related information that is resolved during container
* setup. The information is sent back to the framework as part of the
* TaskStatus message.
*/
message ContainerStatus {
optional ContainerID container_id = 4 [(gogoproto.customname) = "ContainerID"];
// This field can be reliably used to identify the container IP address.
repeated NetworkInfo network_infos = 1 [(gogoproto.nullable) = false];
// Information about Linux control group (cgroup).
optional CgroupInfo cgroup_info = 2;
// Information about Executor PID.
optional uint32 executor_pid = 3 [(gogoproto.customname) = "ExecutorPID"];
}
/**
* Linux control group (cgroup) information.
*/
message CgroupInfo {
// Configuration of a blkio cgroup subsystem.
message Blkio {
enum Operation {
UNKNOWN = 0;
TOTAL = 1;
READ = 2;
WRITE = 3;
SYNC = 4;
ASYNC = 5;
option (gogoproto.goproto_enum_prefix) = true;
}
// Describes a stat value without the device descriptor part.
message Value {
optional Operation op = 1; // Required.
optional uint64 value = 2; // Required.
}
message CFQ {
message Statistics {
// Stats are grouped by block devices. If `device` is not
// set, it represents `Total`.
optional Device.Number device = 1;
// blkio.sectors
optional uint64 sectors = 2;
// blkio.time
optional uint64 time = 3;
// blkio.io_serviced
repeated Value io_serviced = 4 [(gogoproto.nullable) = false, (gogoproto.customname) = "IOServiced"];
// blkio.io_service_bytes
repeated Value io_service_bytes = 5 [(gogoproto.nullable) = false, (gogoproto.customname) = "IOServiceBytes"];
// blkio.io_service_time
repeated Value io_service_time = 6 [(gogoproto.nullable) = false, (gogoproto.customname) = "IOServiceTime"];
// blkio.io_wait_time
repeated Value io_wait_time = 7 [(gogoproto.nullable) = false, (gogoproto.customname) = "IOWaitTime"];
// blkio.io_merged
repeated Value io_merged = 8 [(gogoproto.nullable) = false, (gogoproto.customname) = "IOMerged"];
// blkio.io_queued
repeated Value io_queued = 9 [(gogoproto.nullable) = false, (gogoproto.customname) = "IOQueued"];
}
// TODO(jasonlai): Add fields for blkio weight and weight
// device.
}
message Throttling {
message Statistics {
// Stats are grouped by block devices. If `device` is not
// set, it represents `Total`.
optional Device.Number device = 1;
// blkio.throttle.io_serviced
repeated Value io_serviced = 2 [(gogoproto.nullable) = false, (gogoproto.customname) = "IOServiced"];
// blkio.throttle.io_service_bytes
repeated Value io_service_bytes = 3 [(gogoproto.nullable) = false, (gogoproto.customname) = "IOServiceBytes"];
}
// TODO(jasonlai): Add fields for blkio.throttle.*_device.
}
message Statistics {
repeated CFQ.Statistics cfq = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "CFQ"];
repeated CFQ.Statistics cfq_recursive = 2 [(gogoproto.nullable) = false, (gogoproto.customname) = "CFQRecursive"];
repeated Throttling.Statistics throttling = 3;
}
}
// Configuration of a net_cls cgroup subsystem.
message NetCls {
// The 32-bit classid consists of two parts, a 16 bit major handle
// and a 16-bit minor handle. The major and minor handle are
// represented using the format 0xAAAABBBB, where 0xAAAA is the
// 16-bit major handle and 0xBBBB is the 16-bit minor handle.
optional uint32 classid = 1 [(gogoproto.customname) = "ClassID"];
}
optional NetCls net_cls = 1 [(gogoproto.customname) = "NetCLS"];
}
/**
* Collection of labels. Labels should not contain duplicate key-value
* pairs.
*/
message Labels {
repeated Label labels = 1 [(gogoproto.nullable) = false];
}
/**
* Key, value pair used to store free form user-data.
*/
message Label {
required string key = 1 [(gogoproto.nullable) = false];
optional string value = 2;
}
/**
* Named port used for service discovery.
*/
message Port {
// Port number on which the framework exposes a service.
required uint32 number = 1 [(gogoproto.nullable) = false];
// Name of the service hosted on this port.
optional string name = 2;
// Layer 4-7 protocol on which the framework exposes its services.
optional string protocol = 3;
// This field restricts discovery within a framework (FRAMEWORK),
// within a Mesos cluster (CLUSTER), or places no restrictions (EXTERNAL).
// The visibility setting for a Port overrides the general visibility setting
// in the DiscoveryInfo.
optional DiscoveryInfo.Visibility visibility = 4;
// This can be used to decorate the message with metadata to be
// interpreted by external applications such as firewalls.
optional Labels labels = 5;
}
/**
* Collection of ports.
*/
message Ports {
repeated Port ports = 1 [(gogoproto.nullable) = false];
}
/**
* Service discovery information.
* The visibility field restricts discovery within a framework (FRAMEWORK),
* within a Mesos cluster (CLUSTER), or places no restrictions (EXTERNAL).
* Each port in the ports field also has an optional visibility field.
* If visibility is specified for a port, it overrides the default service-wide
* DiscoveryInfo.visibility for that port.
* The environment, location, and version fields provide first class support for
* common attributes used to differentiate between similar services. The
* environment may receive values such as PROD/QA/DEV, the location field may
* receive values like EAST-US/WEST-US/EUROPE/AMEA, and the version field may
* receive values like v2.0/v0.9. The exact use of these fields is up to each
* service discovery system.
*/
message DiscoveryInfo {
enum Visibility {
FRAMEWORK = 0;
CLUSTER = 1;
EXTERNAL = 2;
}
required Visibility visibility = 1 [(gogoproto.nullable) = false];
optional string name = 2;
optional string environment = 3;
optional string location = 4;
optional string version = 5;
optional Ports ports = 6;
optional Labels labels = 7;
}
/**
* Named WeightInfo to indicate resource allocation
* priority between the different roles.
*/
message WeightInfo {
required double weight = 1 [(gogoproto.nullable) = false];
// Related role name.
optional string role = 2;
}
/**
* Version information of a component.
*/
message VersionInfo {
required string version = 1 [(gogoproto.nullable) = false];
optional string build_date = 2;
optional double build_time = 3;
optional string build_user = 4;
optional string git_sha = 5 [(gogoproto.customname) = "GitSHA"];
optional string git_branch = 6;
optional string git_tag = 7;
}
/**
* Flag consists of a name and optionally its value.
*/
message Flag {
required string name = 1 [(gogoproto.nullable) = false];
optional string value = 2;
}
/**
* Describes a Role. Roles can be used to specify that certain resources are
* reserved for the use of one or more frameworks.
*/
message Role {
required string name = 1 [(gogoproto.nullable) = false];
required double weight = 2 [(gogoproto.nullable) = false];
repeated FrameworkID frameworks = 3 [(gogoproto.nullable) = false];
repeated Resource resources = 4 [(gogoproto.nullable) = false];
}
/**
* Metric consists of a name and optionally its value.
*/
message Metric {
required string name = 1 [(gogoproto.nullable) = false];
optional double value = 2;
}
/**
* Describes a File.
*/
message FileInfo {
// Absolute path to the file.
required string path = 1 [(gogoproto.nullable) = false];
// Number of hard links.
optional int32 nlink = 2;
// Total size in bytes.
optional uint64 size = 3;
// Last modification time.
optional TimeInfo mtime = 4;
// Represents a file's mode and permission bits. The bits have the same
// definition on all systems and is portable.
optional uint32 mode = 5;
// User ID of owner.
optional string uid = 6 [(gogoproto.customname) = "UID"];
// Group ID of owner.
optional string gid = 7 [(gogoproto.customname) = "GID"];
}
/**
* Describes information abount a device.
*/
message Device {
message Number {
required uint64 major_number = 1;
required uint64 minor_number = 2;
}
optional string path = 1;
optional Number number = 2;
}
/**
* Describes a device whitelist entry that expose from host to container.
*/
message DeviceAccess {
message Access {
optional bool read = 1;
optional bool write = 2;
optional bool mknod = 3;
}
required Device device = 1 [(gogoproto.nullable) = false];
required Access access = 2 [(gogoproto.nullable) = false];
}
message DeviceWhitelist {
repeated DeviceAccess allowed_devices = 1 [(gogoproto.nullable) = false];
}
|