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
|
Machine ClassAd Attributes
==========================
:classad-attribute-def:`AcceptedWhileDraining`
Boolean which indicates if the slot accepted its current job while
the machine was draining.
:classad-attribute-def:`Activity`
String which describes HTCondor job activity on the machine. Can
have one of the following values:
``"Idle"``
There is no job activity
``"Busy"``
A job is busy running
``"Suspended"``
A job is currently suspended
``"Vacating"``
A job is currently vacating
``"Killing"``
A job is currently being killed
``"Benchmarking"``
The startd is running benchmarks
``"Retiring"``
Waiting for a job to finish or for the maximum retirement time to expire
:classad-attribute-def:`Arch`
String with the architecture of the machine. Currently supported
architectures have the following string definitions:
``"INTEL"``
Intel x86 CPU (Pentium, Xeon, etc).
``"X86_64"``
AMD/Intel 64-bit X86
:classad-attribute-def:`Microarch`
On X86_64 Linux machines, this advertises the x86_64 microarchitecture,
like `x86_64-v2`. See https://en.wikipedia.org/wiki/X86-64#Microarchitecture_levels
for details.
:classad-attribute-def:`CanHibernate`
The *condor_startd* has the capability to shut down or hibernate a
machine when certain configurable criteria are met. However, before
the *condor_startd* can shut down a machine, the hardware itself
must support hibernation, as must the operating system. When the
*condor_startd* initializes, it checks for this support. If the
machine has the ability to hibernate, then this boolean ClassAd
attribute will be ``True``. By default, it is ``False``.
:classad-attribute-def:`CgroupEnforced`
If a job is running inside a per-job cgroup, this boolean attribute
is ``True``.
:classad-attribute-def:`ClaimEndTime`
The time at which the slot will leave the ``Claimed`` state.
Currently, this only applies to partitionable slots.
This is measured in the number of integer seconds since the Unix
epoch (00:00:00 UTC, Jan 1, 1970).
:classad-attribute-def:`ClockDay`
The day of the week, where 0 = Sunday, 1 = Monday, ..., and 6 =
Saturday.
:classad-attribute-def:`ClockMin`
The number of minutes passed since midnight.
:classad-attribute-def:`CondorLoadAvg`
The load average contributed by HTCondor, either from remote jobs or
running benchmarks.
:classad-attribute-def:`CondorVersion`
A string containing the HTCondor version number for the
*condor_startd* daemon, the release date, and the build
identification number.
:classad-attribute-def:`ConsoleIdle`
The number of seconds since activity on the system console keyboard
or console mouse has last been detected. The value can be modified
with :macro:`SLOTS_CONNECTED_TO_CONSOLE` as defined in the
:ref:`admin-manual/configuration-macros:condor_startd configuration
file macros` section.
:classad-attribute-def:`Cpus`
The number of CPUs (cores) in this slot. It is 1 for a single CPU
slot, 2 for a dual CPU slot, etc. For a partitionable slot, it is
the remaining number of CPUs in the partitionable slot.
:classad-attribute-def:`CpuFamily`
On Linux machines, the Cpu family, as defined in the /proc/cpuinfo
file.
:classad-attribute-def:`CpuModel`
On Linux machines, the Cpu model number, as defined in the
/proc/cpuinfo file.
:classad-attribute-def:`CpuCacheSize`
On Linux machines, the size of the L3 cache, in kbytes, as defined
in the /proc/cpuinfo file.
:classad-attribute-def:`CurrentRank`
A float which represents this machine owner's affinity for running
the HTCondor job which it is currently hosting. If not currently
hosting an HTCondor job, :ad-attr:`CurrentRank` is 0.0. When a machine is
claimed, the attribute's value is computed by evaluating the
machine's ``Rank`` expression with respect to the current job's
ClassAd.
:classad-attribute-def:`DetectedCpus`
Set by the value of configuration variable ``DETECTED_CORES``
:classad-attribute-def:`DetectedMemory`
Set by the value of configuration variable :macro:`DETECTED_MEMORY`
Specified in MiB.
:classad-attribute-def:`Disk`
The amount of disk space on this machine available for the job in
KiB (for example, 23000 = 23 MiB). Specifically, this is the amount
of disk space available in the directory specified in the HTCondor
configuration files by the :macro:`EXECUTE` macro, minus any space
reserved with the :macro:`RESERVED_DISK` macro. For static slots, this value
will be the same as machine ClassAd attribute :ad-attr:`TotalSlotDisk`. For
partitionable slots, this value will be the quantity of disk space
remaining in the partitionable slot.
:classad-attribute-def:`Draining`
This attribute is ``True`` when the slot is draining and undefined
if not.
:classad-attribute-def:`DrainingRequestId`
This attribute contains a string that is the request id of the
draining request that put this slot in a draining state. It is
undefined if the slot is not draining.
:classad-attribute-def:`DotNetVersions`
The .NET framework versions currently installed on this computer.
Default format is a comma delimited list. Current definitions:
``"1.1"``
for .Net Framework 1.1
``"2.0"``
for .Net Framework 2.0
``"3.0"``
for .Net Framework 3.0
``"3.5"``
for .Net Framework 3.5
``"4.0Client"``
for .Net Framework 4.0 Client install
``"4.0Full"``
for .Net Framework 4.0 Full install
:classad-attribute-def:`DynamicSlot`
For SMP machines that allow dynamic partitioning of a slot, this
boolean value identifies that this dynamic slot may be partitioned.
:classad-attribute-def:`EnteredCurrentActivity`
Time at which the machine entered the current Activity (see
:ad-attr:`Activity` entry above). On all platforms (including NT), this is
measured in the number of integer seconds since the Unix epoch
(00:00:00 UTC, Jan 1, 1970).
:classad-attribute-def:`ExpectedMachineGracefulDrainingBadput`
The job run time in cpu-seconds that would be lost if graceful
draining were initiated at the time this ClassAd was published. This
calculation assumes that jobs will run for the full retirement time
and then be evicted.
:classad-attribute-def:`ExpectedMachineGracefulDrainingCompletion`
The estimated time at which graceful draining of the machine could
complete if it were initiated at the time this ClassAd was published
and there are no active claims. This is measured in the number of
integer seconds since the Unix epoch (00:00:00 UTC, Jan 1, 1970).
This value is computed with the assumption that the machine policy
will not suspend jobs during draining while the machine is waiting
for the job to use up its retirement time. If suspension happens,
the upper bound on how long draining could take is unlimited. To
avoid suspension during draining, the :macro:`SUSPEND` and :macro:`CONTINUE`
expressions could be configured to pay attention to the :ad-attr:`Draining`
attribute.
:classad-attribute-def:`ExpectedMachineQuickDrainingBadput`
The job run time in cpu-seconds that would be lost if quick or fast
draining were initiated at the time this ClassAd was published. This
calculation assumes that all evicted jobs will not save a
checkpoint.
:classad-attribute-def:`ExpectedMachineQuickDrainingCompletion`
Time at which quick or fast draining of the machine could complete
if it were initiated at the time this ClassAd was published and
there are no active claims. This is measured in the number of
integer seconds since the Unix epoch (00:00:00 UTC, Jan 1, 1970).
:classad-attribute-def:`FileSystemDomain`
A domain name configured by the HTCondor administrator which
describes a cluster of machines which all access the same,
uniformly-mounted, networked file systems usually via NFS or AFS.
This is useful for Vanilla universe jobs which require remote file
access.
:classad-attribute-def:`HasContainer`
A boolean value set to ``True`` if the machine is capable of
executing container universe jobs.
:classad-attribute-def:`HasDocker`
A boolean value set to ``True`` if the machine is capable of
executing docker universe jobs.
:classad-attribute-def:`DockerCachedImageSizeMb`
An integer value containing the number of megabytes of space used
by the docker image cache for cached images used by a worker node.
Excludes any images that may be in the cache that were not placed
there by HTCondor.
:classad-attribute-def:`HasSandboxImage`
A boolean value set to ``True`` if the machine is capable of
executing container universe jobs with a singularity "sandbox"
image type
:classad-attribute-def:`HasSIF`
A boolean value set to ``True`` if the machine is capable of
executing container universe jobs with a singularity "SIF"
image type
:classad-attribute-def:`HasEncryptExecuteDirectory`
A boolean value set to ``True`` if the machine is capable of
encrypting execute directories.
:classad-attribute-def:`HasFileTransfer`
A boolean value that when ``True`` identifies that the machine can
use the file transfer mechanism.
:classad-attribute-def:`HasFileTransferPluginMethods`
A string of comma-separated file transfer protocols that the machine
can support. The value can be modified with :macro:`FILETRANSFER_PLUGINS`
as defined in :ref:`admin-manual/configuration-macros:condor_starter configuration file
entries`.
:classad-attribute-def:`HasRotationalScratch`
A boolean when true indicates that this machine's EXECUTE directory is on a rotational
hard disk. When false, the EXECUTE directory is on a SSD, NVMe, tmpfs or other storage
system, generally with much better performance than a rotational disk.
:classad-attribute-def:`HasUserNamespaces`
A boolean value that when ``True`` identifies that the jobs on this machine
can create user namespaces without root privileges.
:classad-attribute-def:`Has_sse4_1`
A boolean value set to ``True`` if the machine being advertised
supports the SSE 4.1 instructions, and ``Undefined`` otherwise.
:classad-attribute-def:`Has_sse4_2`
A boolean value set to ``True`` if the machine being advertised
supports the SSE 4.2 instructions, and ``Undefined`` otherwise.
:classad-attribute-def:`has_ssse3`
A boolean value set to ``True`` if the machine being advertised
supports the SSSE 3 instructions, and ``Undefined`` otherwise.
:classad-attribute-def:`has_avx`
A boolean value set to ``True`` if the machine being advertised
supports the avx instructions, and ``Undefined`` otherwise.
:classad-attribute-def:`has_avx2`
A boolean value set to ``True`` if the machine being advertised
supports the avx2 instructions, and ``Undefined`` otherwise.
:classad-attribute-def:`has_avx512f`
A boolean value set to ``True`` if the machine being advertised
support the avx512f (foundational) instructions.
:classad-attribute-def:`has_avx512dq`
A boolean value set to ``True`` if the machine being advertised
support the avx512dq instructions.
:classad-attribute-def:`has_avx512dnni`
A boolean value set to ``True`` if the machine being advertised
support the avx512dnni instructions.
:classad-attribute-def:`HasSelfCheckpointTransfers`
A boolean value set to ``True`` if the machine being advertised
supports transferring (checkpoint) files (to the submit node)
when the job successfully self-checkpoints.
:classad-attribute-def:`HasSingularity`
A boolean value set to ``True`` if the machine being advertised
supports running jobs within Singularity containers.
:classad-attribute-def:`HasSshd`
A boolean value set to ``True`` if the machine has a
/usr/sbin/sshd installed. If ``False``, :tool:`condor_ssh_to_job`
is unlikely to function.
:classad-attribute-def:`HasVM`
If the configuration triggers the detection of virtual machine
software, a boolean value reporting the success thereof; otherwise
undefined. May also become ``False`` if HTCondor determines that it
can't start a VM (even if the appropriate software is detected).
:classad-attribute-def:`IsWakeAble`
A boolean value that when ``True`` identifies that the machine has
the capability to be woken into a fully powered and running state by
receiving a Wake On LAN (WOL) packet. This ability is a function of
the operating system, the network adapter in the machine (notably,
wireless network adapters usually do not have this function), and
BIOS settings. When the *condor_startd* initializes, it tries to
detect if the operating system and network adapter both support
waking from hibernation by receipt of a WOL packet. The default
value is ``False``.
:classad-attribute-def:`IsWakeEnabled`
If the hardware and software have the capacity to be woken into a
fully powered and running state by receiving a Wake On LAN (WOL)
packet, this feature can still be disabled via the BIOS or software.
If BIOS or the operating system have disabled this feature, the
*condor_startd* sets this boolean attribute to ``False``.
:classad-attribute-def:`JobBusyTimeAvg`
The Average lifetime of all jobs, including transfer time. This is
determined by measuring the lifetime of each *condor_starter* that
has exited. This attribute will be undefined until the first time a
*condor_starter* has exited.
:classad-attribute-def:`JobBusyTimeCount`
The total number of jobs used to calculate the :ad-attr:`JobBusyTimeAvg`
attribute. This is also the the total number times a *condor_starter*
has exited.
:classad-attribute-def:`JobBusyTimeMax`
The Maximum lifetime of all jobs, including transfer time. This is
determined by measuring the lifetime of each *condor_starter* s
that has exited. This attribute will be undefined until the first
time a *condor_starter* has exited.
:classad-attribute-def:`JobBusyTimeMin`
The Minimum lifetime of all jobs, including transfer time. This is
determined by measuring the lifetime of each *condor_starter* that
has exited. This attribute will be undefined until the first time a
*condor_starter* has exited.
:classad-attribute-def:`RecentJobBusyTimeAvg`
The Average lifetime of all jobs that have exited in the last 20
minutes, including transfer time. This is determined by measuring
the lifetime of each *condor_starter* that has exited in the last
20 minutes. This attribute will be undefined if no *condor_starter*
has exited in the last 20 minutes.
:classad-attribute-def:`RecentJobBusyTimeCount`
The total number of jobs used to calculate the
:ad-attr:`RecentJobBusyTimeAvg` attribute. This is also the total
number times a *condor_starter* has exited in the last 20 minutes.
:classad-attribute-def:`RecentJobBusyTimeMax`
The Maximum lifetime of all jobs that have exited in the last 20
minutes, including transfer time. This is determined by measuring
the lifetime of each *condor_starter* s that has exited in the
last 20 minutes. This attribute will be undefined if no
*condor_starter* has exited in the last 20 minutes.
:classad-attribute-def:`RecentJobBusyTimeMin`
The Minimum lifetime of all jobs, including transfer time. This is
determined by measuring the lifetime of each *condor_starter* that
has exited. This attribute will be undefined if no *condor_starter*
has exited in the last 20 minutes.
:classad-attribute-def:`JobDurationAvg`
The Average lifetime time of all jobs, not including time spent
transferring files. This attribute will be undefined until the first
time a job exits. Jobs that never start (because they fail to
transfer input, for instance) will not be included in the average.
:classad-attribute-def:`JobDurationCount`
The total number of jobs used to calculate the :ad-attr:`JobDurationAvg`
attribute. This is also the the total number times a job has exited.
Jobs that never start (because input transfer fails, for instance)
are not included in the count.
:classad-attribute-def:`JobDurationMax`
The lifetime of the longest lived job that has exited. This
attribute will be undefined until the first time a job exits.
:classad-attribute-def:`JobDurationMin`
The lifetime of the shortest lived job that has exited. This
attribute will be undefined until the first time a job exits.
:classad-attribute-def:`RecentJobDurationAvg`
The Average lifetime time of all jobs, not including time spent
transferring files, that have exited in the last 20 minutes. This
attribute will be undefined if no job has exited in the last 20
minutes.
:classad-attribute-def:`RecentJobDurationCount`
The total number of jobs used to calculate the
:ad-attr:`RecentJobDurationAvg` attribute. This is the total number of jobs
that began execution and have exited in the last 20 minutes.
:classad-attribute-def:`RecentJobDurationMax`
The lifetime of the longest lived job that has exited in the last 20
minutes. This attribute will be undefined if no job has exited in
the last 20 minutes.
:classad-attribute-def:`RecentJobDurationMin`
The lifetime of the shortest lived job that has exited in the last
20 minutes. This attribute will be undefined if no job has exited in
the last 20 minutes.
:classad-attribute-def:`JobPreemptions`
The total number of times a running job has been preempted on this
machine.
:classad-attribute-def:`JobRankPreemptions`
The total number of times a running job has been preempted on this
machine due to the machine's rank of jobs since the *condor_startd*
started running.
:classad-attribute-def:`JobStarts`
The total number of jobs which have been started on this machine
since the *condor_startd* started running.
:classad-attribute-def:`JobUserPrioPreemptions`
The total number of times a running job has been preempted on this
machine based on a fair share allocation of the pool since the
*condor_startd* started running.
:classad-attribute-def:`JobVM_VCPUS`
An attribute defined if a vm universe job is running on this slot.
Defined by the number of virtualized CPUs in the virtual machine.
:classad-attribute-def:`KeyboardIdle`
The number of seconds since activity on any keyboard or mouse
associated with this machine has last been detected. Unlike
:ad-attr:`ConsoleIdle`, :ad-attr:`KeyboardIdle` also takes activity on
pseudo-terminals into account. Pseudo-terminals have virtual
keyboard activity from telnet and rlogin sessions. Note that
:ad-attr:`KeyboardIdle` will always be equal to or less than
:ad-attr:`ConsoleIdle`. The value can be modified with
:macro:`SLOTS_CONNECTED_TO_KEYBOARD`.
:classad-attribute-def:`KFlops`
Relative floating point performance as determined via a Linpack
benchmark.
:classad-attribute-def:`LastDrainStartTime`
Time when draining of this *condor_startd* was last initiated (e.g.
due to *condor_defrag* or :tool:`condor_drain`).
:classad-attribute-def:`LastDrainStopTime`
Time when draining of this *condor_startd* was last stopped (e.g.
by being cancelled).
:classad-attribute-def:`LastHeardFrom`
Time when the HTCondor central manager last received a status update
from this machine. Expressed as the number of integer seconds since
the Unix epoch (00:00:00 UTC, Jan 1, 1970). Note: This attribute is
only inserted by the central manager once it receives the ClassAd.
It is not present in the *condor_startd* copy of the ClassAd.
Therefore, you could not use this attribute in defining
*condor_startd* expressions (and you would not want to).
:classad-attribute-def:`LoadAvg`
A floating point number representing the current load average over time.
This number goes up by 1.0 for every runnable thread. More concretely, if
a single-core machine has a load average of 1.0, it means the one cpu is
fully utilized. In other words, on average, there is one running thread
at all times. If that same single core machine has a load average of 2.0,
it means there are, over time, 2 runnable threads contending for CPU time,
and thus each is probably running at half the speed they would be if the
other one was not there. This is not scaled by number of cores on the
system, thus a load average of 10.0 might indicated An overloaded 4 core
system, but on a 128 core system, there would still be plenty of headroom.
Note that threads that are sleeping blocked on long-term i/o do not count
to the load average.
:classad-attribute-def:`Machine`
A string with the machine's fully qualified host name.
:classad-attribute-def:`MachineMaxVacateTime`
An integer expression that specifies the time in seconds the machine
will allow the job to gracefully shut down.
:classad-attribute-def:`MaxClaimTime`
The maximum number of seconds that the slot may remain in the
`Claimed` state before returning to the `Unclaimed` state.
Currently, this only applies to partitionable slots.
:classad-attribute-def:`MaxJobRetirementTime`
When the *condor_startd* wants to kick the job off, a job which has
run for less than this number of seconds will not be hard-killed.
The *condor_startd* will wait for the job to finish or to exceed
this amount of time, whichever comes sooner. If the job vacating
policy grants the job X seconds of vacating time, a preempted job
will be soft-killed X seconds before the end of its retirement time,
so that hard-killing of the job will not happen until the end of the
retirement time if the job does not finish shutting down before
then. This is an expression evaluated in the context of the job
ClassAd, so it may refer to job attributes as well as machine
attributes.
:classad-attribute-def:`Memory`
The amount of RAM in MiB in this slot. For static slots, this value
will be the same as in :ad-attr:`TotalSlotMemory`. For a partitionable
slot, this value will be the quantity remaining in the partitionable
slot.
:classad-attribute-def:`Mips`
Relative integer performance as determined via a Dhrystone
benchmark.
:classad-attribute-def:`MonitorSelfAge`
The number of seconds that this daemon has been running.
:classad-attribute-def:`MonitorSelfCPUUsage`
The fraction of recent CPU time utilized by this daemon.
:classad-attribute-def:`MonitorSelfImageSize`
The amount of virtual memory consumed by this daemon in KiB.
:classad-attribute-def:`MonitorSelfRegisteredSocketCount`
The current number of sockets registered by this daemon.
:classad-attribute-def:`MonitorSelfResidentSetSize`
The amount of resident memory used by this daemon in KiB.
:classad-attribute-def:`MonitorSelfSecuritySessions`
The number of open (cached) security sessions for this daemon.
:classad-attribute-def:`MonitorSelfTime`
The time, represented as the number of second elapsed since the Unix
epoch (00:00:00 UTC, Jan 1, 1970), at which this daemon last checked
and set the attributes with names that begin with the string
``MonitorSelf``.
:classad-attribute-def:`MyAddress`
String with the IP and port address of the *condor_startd* daemon
which is publishing this machine ClassAd. When using CCB,
*condor_shared_port*, and/or an additional private network
interface, that information will be included here as well.
:classad-attribute-def:`MyCurrentTime`
The time, represented as the number of second elapsed since the Unix
epoch (00:00:00 UTC, Jan 1, 1970), at which the *condor_startd*
daemon last sent a ClassAd update to the *condor_collector*.
:classad-attribute-def:`MyType`
The ClassAd type; always set to the literal string ``"Machine"``.
:classad-attribute-def:`Name`
The name of this resource; typically the same value as the
``Machine`` attribute, but could be customized by the site
administrator. On SMP machines, the *condor_startd* will divide the
CPUs up into separate slots, each with a unique name. These
names will be of the form "slot#@full.hostname", for example,
"slot1@vulture.cs.wisc.edu", which signifies slot number 1 from
vulture.cs.wisc.edu.
:classad-attribute-def:`OfflineUniverses`
A ClassAd list that specifies which job universes are presently
offline, both as strings and as the corresponding job universe
number. Could be used the startd to refuse to start jobs in
offline universes:
.. code-block:: condor-config
START = OfflineUniverses is undefined || (! member( JobUniverse, OfflineUniverses ))
May currently only contain ``"VM"`` and ``13``.
:classad-attribute-def:`OpSys`
String describing the operating system running on this machine.
Currently supported operating systems have the following string
definitions:
``"LINUX"``
for LINUX 2.0.x, LINUX 2.2.x, LINUX 2.4.x, LINUX 2.6.x, or LINUX
3.10.0 kernel systems, as well as Scientific Linux, Ubuntu
versions 14.04, and Debian 7.0 (wheezy) and 8.0 (jessie)
``"OSX"``
for Darwin
``"FREEBSD7"``
for FreeBSD 7
``"FREEBSD8"``
for FreeBSD 8
``"WINDOWS"``
for all versions of Windows
:classad-attribute-def:`OpSysAndVer`
A string indicating an operating system and a version number.
For Linux operating systems, it is the value of the :ad-attr:`OpSysName`
attribute concatenated with the string version of the
:ad-attr:`OpSysMajorVer` attribute:
``"RedHat5"``
for RedHat Linux version 5
``"RedHat6"``
for RedHat Linux version 6
``"RedHat7"``
for RedHat Linux version 7
``"Fedora16"``
for Fedora Linux version 16
``"Debian6"``
for Debian Linux version 6
``"Debian7"``
for Debian Linux version 7
``"Debian8"``
for Debian Linux version 8
``"Debian9"``
for Debian Linux version 9
``"Ubuntu14"``
for Ubuntu 14.04
``"SL5"``
for Scientific Linux version 5
``"SL6"``
for Scientific Linux version 6
``"SLFermi5"``
for Fermi's Scientific Linux version 5
``"SLFermi6"``
for Fermi's Scientific Linux version 6
``"SLCern5"``
for CERN's Scientific Linux version 5
``"SLCern6"``
for CERN's Scientific Linux version 6
For MacOS operating systems, it is the value of the
:ad-attr:`OpSysShortName` attribute concatenated with the string version of
the :ad-attr:`OpSysVer` attribute:
``"MacOSX605"``
for MacOS version 10.6.5 (Snow Leopard)
``"MacOSX703"``
for MacOS version 10.7.3 (Lion)
For BSD operating systems, it is the value of the :ad-attr:`OpSysName`
attribute concatenated with the string version of the
:ad-attr:`OpSysMajorVer` attribute:
``"FREEBSD7"``
for FreeBSD version 7
``"FREEBSD8"``
for FreeBSD version 8
For Windows operating systems, it is the value of the :ad-attr:`OpSys`
attribute concatenated with the string version of the
:ad-attr:`OpSysMajorVer` attribute:
``"WINDOWS500"``
for Windows 2000
``"WINDOWS501"``
for Windows XP
``"WINDOWS502"``
for Windows Server 2003
``"WINDOWS600"``
for Windows Vista
``"WINDOWS601"``
for Windows 7
:classad-attribute-def:`OpSysLegacy`
A string that holds the long-standing values for the :ad-attr:`OpSys`
attribute. Currently supported operating systems have the following
string definitions:
``"LINUX"``
for LINUX 2.0.x, LINUX 2.2.x, LINUX 2.4.x, LINUX 2.6.x, or LINUX
3.10.0 kernel systems, as well as Scientific Linux, Ubuntu
versions 14.04, and Debian 7 and 8
``"OSX"``
for Darwin
``"FREEBSD7"``
for FreeBSD version 7
``"FREEBSD8"``
for FreeBSD version 8
``"WINDOWS"``
for all versions of Windows
:classad-attribute-def:`OpSysLongName`
A string giving a full description of the operating system. For
Linux platforms, this is generally the string taken from
``/etc/hosts``, with extra characters stripped off Debian versions.
``"Red Hat Enterprise Linux Server release 6.2 (Santiago)"``
for RedHat Linux version 6
``"Red Hat Enterprise Linux Server release 7.0 (Maipo)"``
for RedHat Linux version 7.0
``"Ubuntu 14.04.1 LTS"``
for Ubuntu 14.04 point release 1
``"Debian GNU/Linux 8"``
for Debian 8.0 (jessie)
``"Fedora release 16 (Verne)"``
for Fedora Linux version 16
``"MacOSX 7.3"``
for MacOS version 10.7.3 (Lion)
``"FreeBSD8.2-RELEASE-p3"``
for FreeBSD version 8
``"Windows XP SP3"``
for Windows XP
``"Windows 7 SP2"``
for Windows 7
:classad-attribute-def:`OpSysMajorVer`
An integer value representing the major version of the operating
system.
``5``
for RedHat Linux version 5 and derived platforms such as
Scientific Linux
``6``
for RedHat Linux version 6 and derived platforms such as
Scientific Linux
``7``
for RedHat Linux version 7
``14``
for Ubuntu 14.04
``7``
for Debian 7
``8``
for Debian 8
``16``
for Fedora Linux version 16
``6``
for MacOS version 10.6.5 (Snow Leopard)
``7``
for MacOS version 10.7.3 (Lion)
``7``
for FreeBSD version 7
``8``
for FreeBSD version 8
``501``
for Windows XP
``600``
for Windows Vista
``601``
for Windows 7
:classad-attribute-def:`OpSysName`
A string containing a terse description of the operating system.
``"RedHat"``
for RedHat Linux version 6 and 7
``"Fedora"``
for Fedora Linux version 16
``"Ubuntu"``
for Ubuntu versions 14.04
``"Debian"``
for Debian versions 7 and 8
``"SnowLeopard"``
for MacOS version 10.6.5 (Snow Leopard)
``"Lion"``
for MacOS version 10.7.3 (Lion)
``"FREEBSD"``
for FreeBSD version 7 or 8
``"WindowsXP"``
for Windows XP
``"WindowsVista"``
for Windows Vista
``"Windows7"``
for Windows 7
``"SL"``
for Scientific Linux
``"SLFermi"``
for Fermi's Scientific Linux
``"SLCern"``
for CERN's Scientific Linux
:classad-attribute-def:`OpSysShortName`
A string containing a short name for the operating system.
``"RedHat"``
for RedHat Linux version 5, 6 or 7
``"Fedora"``
for Fedora Linux version 16
``"Debian"``
for Debian Linux version 6 or 7 or 8
``"Ubuntu"``
for Ubuntu versions 14.04
``"MacOSX"``
for MacOS version 10.6.5 (Snow Leopard) or for MacOS version
10.7.3 (Lion)
``"FreeBSD"``
for FreeBSD version 7 or 8
``"XP"``
for Windows XP
``"Vista"``
for Windows Vista
``"7"``
for Windows 7
``"SL"``
for Scientific Linux
``"SLFermi"``
for Fermi's Scientific Linux
``"SLCern"``
for CERN's Scientific Linux
:classad-attribute-def:`OpSysVer`
An integer value representing the operating system version number.
``700``
for RedHat Linux version 7.0
``602``
for RedHat Linux version 6.2
``1600``
for Fedora Linux version 16.0
``1404``
for Ubuntu 14.04
``700``
for Debian 7.0
``800``
for Debian 8.0
``704``
for FreeBSD version 7.4
``802``
for FreeBSD version 8.2
``605``
for MacOS version 10.6.5 (Snow Leopard)
``703``
for MacOS version 10.7.3 (Lion)
``500``
for Windows 2000
``501``
for Windows XP
``502``
for Windows Server 2003
``600``
for Windows Vista or Windows Server 2008
``601``
for Windows 7 or Windows Server 2008
:classad-attribute-def:`PartitionableSlot`
For SMP machines, a boolean value identifying that this slot may be
partitioned.
:classad-attribute-def:`RecentJobPreemptions`
The total number of jobs which have been preempted from this machine
in the last twenty minutes.
:classad-attribute-def:`RecentJobRankPreemptions`
The total number of times a running job has been preempted on this
machine due to the machine's rank of jobs in the last twenty
minutes.
:classad-attribute-def:`RecentJobStarts`
The total number of jobs which have been started on this machine in
the last twenty minutes.
:classad-attribute-def:`RecentJobUserPrioPreemptions`
The total number of times a running job has been preempted on this
machine based on a fair share allocation of the pool in the last
twenty minutes.
:classad-attribute-def:`Requirements`
A boolean, which when evaluated within the context of the machine
ClassAd and a job ClassAd, must evaluate to TRUE before HTCondor
will allow the job to use this machine.
:classad-attribute-def:`RetirementTimeRemaining` when the
running job can be evicted. ``MaxJobRetirementTime`` is the
expression of how much retirement time the machine offers to new
jobs, whereas :ad-attr:`RetirementTimeRemaining` is the negotiated amount
of time remaining for the current running job. This may be less than
the amount offered by the machine's ``MaxJobRetirementTime``
expression, because the job may ask for less.
:classad-attribute-def:`SingularityVersion`
A string containing the version of Singularity available, if the
machine being advertised supports running jobs within a Singularity
container (see :ad-attr:`HasSingularity`).
:classad-attribute-def:`SlotID`
For SMP machines, the integer that identifies the slot. The value
will be X for the slot with
.. code-block:: condor-config
name="slotX@full.hostname"
For non-SMP machines with one slot, the value will be 1.
:classad-attribute-def:`SlotType`
For SMP machines with partitionable slots, the partitionable slot
will have this attribute set to ``"Partitionable"``, and all dynamic
slots will have this attribute set to ``"Dynamic"``.
:classad-attribute-def:`SlotWeight`
This specifies the weight of the slot when calculating usage,
computing fair shares, and enforcing group quotas. For example,
claiming a slot with ``SlotWeight = 2`` is equivalent to claiming
two ``SlotWeight = 1`` slots. See the description of :ad-attr:`SlotWeight`
in :ref:`admin-manual/configuration-macros:condor_startd configuration
file macros`.
:classad-attribute-def:`StartdIpAddr`
String with the IP and port address of the *condor_startd* daemon
which is publishing this machine ClassAd. When using CCB,
*condor_shared_port*, and/or an additional private network
interface, that information will be included here as well.
:classad-attribute-def:`State`
String which publishes the machine's HTCondor state. Can be:
``"Owner"``
The machine owner is using the machine, and it is unavailable to
HTCondor.
``"Unclaimed"``
The machine is available to run HTCondor jobs, but a good match
is either not available or not yet found.
``"Matched"``
The HTCondor central manager has found a good match for this
resource, but an HTCondor scheduler has not yet claimed it.
``"Claimed"``
The machine is claimed by a remote *condor_schedd* and is
probably running a job.
``"Preempting"``
An HTCondor job is being preempted
in order to clear the machine for either a higher priority job
or because the machine owner wants the machine back.
``"Drained"``
This slot is not accepting jobs, because the machine is being
drained.
:classad-attribute-def:`TargetType`
Describes what type of ClassAd to match with. Always set to the
string literal ``"Job"``, because machine ClassAds always want to be
matched with jobs, and vice-versa.
:classad-attribute-def:`TotalCondorLoadAvg`
The load average contributed by HTCondor summed across all slots on
the machine, either from remote jobs or running benchmarks.
:classad-attribute-def:`TotalCpus`
The number of CPUs (cores) that are on the machine. This is in
contrast with :ad-attr:`Cpus`, which is the number of CPUs in the slot.
:classad-attribute-def:`TotalDisk`
The quantity of disk space in KiB available across the machine (not
the slot). For partitionable slots, where there is one partitionable
slot per machine, this value will be the same as machine ClassAd
attribute :ad-attr:`TotalSlotDisk`.
:classad-attribute-def:`TotalLoadAvg`
A floating point number representing the current load average summed
across all slots on the machine.
:classad-attribute-def:`TotalMachineDrainingBadput`
The total job runtime in cpu-seconds that has been lost due to job
evictions caused by draining since this *condor_startd* began
executing. In this calculation, it is assumed that jobs are evicted
without checkpointing.
:classad-attribute-def:`TotalMachineDrainingUnclaimedTime`
The total machine-wide time in cpu-seconds that has not been used
(i.e. not matched to a job submitter) due to draining since this
*condor_startd* began executing.
:classad-attribute-def:`TotalMemory`
The quantity of RAM in MiB available across the machine (not the
slot). For partitionable slots, where there is one partitionable
slot per machine, this value will be the same as machine ClassAd
attribute :ad-attr:`TotalSlotMemory`.
:classad-attribute-def:`TotalSlotCpus`
The number of CPUs (cores) in this slot. For static slots, this
value will be the same as in :ad-attr:`Cpus`.
:classad-attribute-def:`TotalSlotDisk`
The quantity of disk space in KiB given to this slot. For static
slots, this value will be the same as machine ClassAd attribute
:ad-attr:`Disk`. For partitionable slots, where there is one partitionable
slot per machine, this value will be the same as machine ClassAd
attribute :ad-attr:`TotalDisk`.
:classad-attribute-def:`TotalSlotMemory`
The quantity of RAM in MiB given to this slot. For static slots,
this value will be the same as machine ClassAd attribute :ad-attr:`Memory`.
For partitionable slots, where there is one partitionable slot per
machine, this value will be the same as machine ClassAd attribute
:ad-attr:`TotalMemory`.
:classad-attribute-def:`TotalSlots`
A sum of the static slots, partitionable slots, and dynamic slots on
the machine at the current time.
:classad-attribute-def:`TotalTimeBackfillBusy`
The number of seconds that this machine (slot) has accumulated
within the backfill busy state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimeBackfillIdle`
The number of seconds that this machine (slot) has accumulated
within the backfill idle state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimeBackfillKilling`
The number of seconds that this machine (slot) has accumulated
within the backfill killing state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimeClaimedBusy`
The number of seconds that this machine (slot) has accumulated
within the claimed busy state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimeClaimedIdle`
The number of seconds that this machine (slot) has accumulated
within the claimed idle state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimeClaimedRetiring`
The number of seconds that this machine (slot) has accumulated
within the claimed retiring state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimeClaimedSuspended`
The number of seconds that this machine (slot) has accumulated
within the claimed suspended state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimeMatchedIdle`
The number of seconds that this machine (slot) has accumulated
within the matched idle state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimeOwnerIdle`
The number of seconds that this machine (slot) has accumulated
within the owner idle state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimePreemptingKilling`
The number of seconds that this machine (slot) has accumulated
within the preempting killing state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimePreemptingVacating`
The number of seconds that this machine (slot) has accumulated
within the preempting vacating state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimeUnclaimedBenchmarking`
The number of seconds that this machine (slot) has accumulated
within the unclaimed benchmarking state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`TotalTimeUnclaimedIdle`
The number of seconds that this machine (slot) has accumulated
within the unclaimed idle state and activity pair since the
*condor_startd* began executing. This attribute will only be
defined if it has a value greater than 0.
:classad-attribute-def:`UidDomain`
file entries, and therefore all have the same logins.
:classad-attribute-def:`VirtualMemory`
The amount of currently available virtual memory (swap space)
expressed in KiB. On Linux platforms, it is the sum of paging space
and physical memory, which more accurately represents the virtual
memory size of the machine.
:index:`VM_MAX_NUMBER`
:classad-attribute-def:`VM_AvailNum`
The maximum number of vm universe jobs that can be started on this
machine. This maximum is set by the configuration variable
:macro:`VM_MAX_NUMBER`.
:classad-attribute-def:`VM_Guest_Mem`
An attribute defined if a vm universe job is running on this slot.
Defined by the amount of memory in use by the virtual machine, given
in Mbytes.
:index:`VM_MEMORY`
:classad-attribute-def:`VM_Memory`
Gives the amount of memory available for starting additional VM jobs
on this machine, given in Mbytes. The maximum value is set by the
configuration variable :macro:`VM_MEMORY`.
:classad-attribute-def:`VM_Networking`
A boolean value indicating whether networking is allowed for virtual
machines on this machine.
:classad-attribute-def:`VM_Type`
The type of virtual machine software that can run on this machine.
The value is set by the configuration variable :macro:`VM_TYPE`
:classad-attribute-def:`VMOfflineReason`
The reason the VM universe went offline (usually because a VM
universe job failed to launch).
:classad-attribute-def:`VMOfflineTime`
The time that the VM universe went offline.
:classad-attribute-def:`WindowsBuildNumber`
An integer, extracted from the platform type, representing a build
number for a Windows operating system. This attribute only exists on
Windows machines.
:classad-attribute-def:`WindowsMajorVersion`
An integer, extracted from the platform type, representing a major
version number (currently 5 or 6) for a Windows operating system.
This attribute only exists on Windows machines.
:classad-attribute-def:`WindowsMinorVersion`
An integer, extracted from the platform type, representing a minor
version number (currently 0, 1, or 2) for a Windows operating
system. This attribute only exists on Windows machines.
In addition, there are a few attributes that are automatically inserted
into the machine ClassAd whenever a resource is in the Claimed state:
:classad-attribute-def:`ClientMachine`
The host name of the machine that has claimed this resource
:index:`GROUP_AUTOREGROUP`
:classad-attribute-def:`RemoteAutoregroup`
A boolean attribute which is ``True`` if this resource was claimed
via negotiation when the configuration variable
:macro:`GROUP_AUTOREGROUP` is ``True``. It is ``False`` otherwise.
:classad-attribute-def:`RemoteGroup`
The accounting group name corresponding to the submitter that
claimed this resource.
:classad-attribute-def:`RemoteNegotiatingGroup`
The accounting group name under which this resource negotiated when
it was claimed. This attribute will frequently be the same as
attribute :ad-attr:`RemoteGroup`, but it may differ in cases such as when
configuration variable :macro:`GROUP_AUTOREGROUP` is ``True``, in
which case it will have the name of the root group, identified as ``<none>``.
:classad-attribute-def:`RemoteOwner`
The name of the user who originally claimed this resource.
:classad-attribute-def:`RemoteUser`
The name of the user who is currently using this resource. In
general, this will always be the same as the :ad-attr:`RemoteOwner`, but in
some cases, a resource can be claimed by one entity that hands off
the resource to another entity which uses it. In that case,
:ad-attr:`RemoteUser` would hold the name of the entity currently using the
resource, while :ad-attr:`RemoteOwner` would hold the name of the entity
that claimed the resource.
:classad-attribute-def:`RemoteScheddName`
The name of the *condor_schedd* which claimed this resource.
:classad-attribute-def:`PreemptingOwner`
The name of the user who is preempting the job that is currently
running on this resource.
:classad-attribute-def:`PreemptingUser`
The name of the user who is preempting the job that is currently
running on this resource. The relationship between
:ad-attr:`PreemptingUser` and :ad-attr:`PreemptingOwner` is the same as the
relationship between :ad-attr:`RemoteUser` and :ad-attr:`RemoteOwner`.
:classad-attribute-def:`PreemptingRank`
A float which represents this machine owner's affinity for running
the HTCondor job which is waiting for the current job to finish or
be preempted. If not currently hosting an HTCondor job,
:ad-attr:`PreemptingRank` is undefined. When a machine is claimed and there
is already a job running, the attribute's value is computed by
evaluating the machine's ``Rank`` expression with respect to the
preempting job's ClassAd.
:classad-attribute-def:`TotalClaimRunTime`
A running total of the amount of time (in seconds) that all jobs
(under the same claim) ran (have spent in the Claimed/Busy state).
:classad-attribute-def:`TotalClaimSuspendTime`
A running total of the amount of time (in seconds) that all jobs
(under the same claim) have been suspended (in the Claimed/Suspended
state).
:classad-attribute-def:`TotalJobRunTime`
A running total of the amount of time (in seconds) that a single job
ran (has spent in the Claimed/Busy state).
:classad-attribute-def:`TotalJobSuspendTime`
A running total of the amount of time (in seconds) that a single job
has been suspended (in the Claimed/Suspended state).
There are a few attributes that are only inserted into the machine
ClassAd if a job is currently executing. If the resource is claimed but
no job are running, none of these attributes will be defined.
:classad-attribute-def:`JobId`
The job's identifier (for example, 152.3), as seen from :tool:`condor_q`
on the submitting machine.
:classad-attribute-def:`JobStart`
The time stamp in integer seconds of when the job began executing,
since the Unix epoch (00:00:00 UTC, Jan 1, 1970). For idle machines,
the value is ``UNDEFINED``.
:classad-attribute-def:`LastPeriodicCheckpoint`
If the job has performed a periodic checkpoint, this attribute will
be defined and will hold the time stamp of when the last periodic
checkpoint was begun. If the job has yet to perform a periodic
checkpoint, or cannot checkpoint at all, the
:ad-attr:`LastPeriodicCheckpoint` attribute will not be defined.
:index:`offline ClassAd`
There are a few attributes that are applicable to machines that are
offline, that is, hibernating.
:classad-attribute-def:`MachineLastMatchTime`
The Unix epoch time when this offline ClassAd would have been
matched to a job, if the machine were online. In addition, the slot1
ClassAd of a multi-slot machine will have
``slot<X>_MachineLastMatchTime`` defined, where ``<X>`` is replaced
by the slot id of each of the slots with :ad-attr:`MachineLastMatchTime`
defined.
:classad-attribute-def:`Offline`
A boolean value, that when ``True``, indicates this machine is in an
offline state in the *condor_collector*. Such ClassAds are stored
persistently, such that they will continue to exist after the
*condor_collector* restarts.
:classad-attribute-def:`Unhibernate`
A boolean expression that specifies when a hibernating machine
should be woken up, for example, by *condor_rooster*.
For machines with user-defined or custom resource specifications,
including GPUs, the following attributes will be in the ClassAd for each
slot. In the name of the attribute, ``<name>`` is substituted with the
configured name given to the resource.
:classad-attribute-def:`Assigned<name>`
A space separated list that identifies which of these resources are
currently assigned to slots.
:classad-attribute-def:`Offline<name>`
A space separated list that indicates which of these resources is
unavailable for match making.
:classad-attribute-def:`Total<name>`
An integer quantity of the total number of these resources.
For machines with custom resource specifications that include GPUs, the
following attributes may be in the ClassAd for each slot, depending on
the value of configuration variable :macro:`MACHINE_RESOURCE_INVENTORY_GPUs`
and what GPUs are detected. In the name of the attribute, ``<name>`` is
substituted with the *prefix string* assigned for the GPU.
:classad-attribute-def:`<name>BoardTempC`
For NVIDIA devices, a dynamic attribute representing the temperature
in Celsius of the board containing the GPU.
:classad-attribute-def:`<name>Capability`
The CUDA-defined capability for the GPU.
:classad-attribute-def:`<name>ClockMhz`
For CUDA or Open CL devices, the integer clocking speed of the GPU
in MHz.
:classad-attribute-def:`<name>ComputeUnits`
For CUDA or Open CL devices, the integer number of compute units per
GPU.
:classad-attribute-def:`<name>CoresPerCU`
For CUDA devices, the integer number of cores per compute unit.
:classad-attribute-def:`<name>DeviceName`
For CUDA or Open CL devices, a string representing the
manufacturer's proprietary device name.
:classad-attribute-def:`<name>DieTempC`
For NVIDIA devices, a dynamic attribute representing the temperature
in Celsius of the GPU die.
:classad-attribute-def:`<name>DriverVersion`
For CUDA devices, a string representing the manufacturer's driver
version.
:classad-attribute-def:`<name>ECCEnabled`
For CUDA or Open CL devices, a boolean value representing whether
error correction is enabled.
:classad-attribute-def:`<name>EccErrorsDoubleBit`
For NVIDIA devices, a count of the number of double bit errors
detected for this GPU.
:classad-attribute-def:`<name>EccErrorsSingleBit`
For NVIDIA devices, a count of the number of single bit errors
detected for this GPU.
:classad-attribute-def:`<name>FanSpeedPct`
For NVIDIA devices, a value between 0 and 100 (inclusive), used to
represent the level of fan operation as percentage of full fan
speed.
:classad-attribute-def:`<name>GlobalMemoryMb`
For CUDA or Open CL devices, the quantity of memory in Mbytes in
this GPU.
:classad-attribute-def:`<name>OpenCLVersion`
For Open CL devices, a string representing the manufacturer's
version number.
:classad-attribute-def:`<name>RuntimeVersion`
For CUDA devices, a string representing the manufacturer's version
number.
The following attributes are advertised for a machine in which
partitionable slot preemption is enabled.
:classad-attribute-def:`ChildAccountingGroup`
A ClassAd list containing the values of the :ad-attr:`AccountingGroup`
attribute for each dynamic slot of the partitionable slot.
:classad-attribute-def:`ChildActivity`
A ClassAd list containing the values of the :ad-attr:`Activity` attribute
for each dynamic slot of the partitionable slot.
:classad-attribute-def:`ChildCpus`
A ClassAd list containing the values of the :ad-attr:`Cpus` attribute for
each dynamic slot of the partitionable slot.
:classad-attribute-def:`ChildCurrentRank`
A ClassAd list containing the values of the :ad-attr:`CurrentRank`
attribute for each dynamic slot of the partitionable slot.
:classad-attribute-def:`ChildEnteredCurrentState`
A ClassAd list containing the values of the ``EnteredCurrentState``
attribute for each dynamic slot of the partitionable slot.
:classad-attribute-def:`ChildMemory`
A ClassAd list containing the values of the :ad-attr:`Memory` attribute for
each dynamic slot of the partitionable slot.
:classad-attribute-def:`ChildName`
A ClassAd list containing the values of the ``Name`` attribute for
each dynamic slot of the partitionable slot.
:classad-attribute-def:`ChildRemoteOwner`
A ClassAd list containing the values of the :ad-attr:`RemoteOwner`
attribute for each dynamic slot of the partitionable slot.
:classad-attribute-def:`ChildRemoteUser`
A ClassAd list containing the values of the :ad-attr:`RemoteUser` attribute
for each dynamic slot of the partitionable slot.
:classad-attribute-def:`ChildRetirementTimeRemaining`
A ClassAd list containing the values of the
:ad-attr:`RetirementTimeRemaining` attribute for each dynamic slot of the
partitionable slot.
:classad-attribute-def:`ChildState`
A ClassAd list containing the values of the :ad-attr:`State` attribute for
each dynamic slot of the partitionable slot.
:classad-attribute-def:`PslotRollupInformation`
A boolean value set to ``True`` in both the partitionable and
dynamic slots, when configuration variable
:macro:`ADVERTISE_PSLOT_ROLLUP_INFORMATION` is ``True``, such that the
*condor_negotiator* knows when partitionable slot preemption is
possible and can directly preempt a dynamic slot when appropriate.
The single attribute, :ad-attr:`CurrentTime`, is defined by the
ClassAd environment.
:classad-attribute-def:`CurrentTime`
Evaluates to the number of integer seconds since the Unix epoch
(00:00:00 UTC, Jan 1, 1970).
.. _CommonCloudAttributes:
.. rubric:: Common Cloud Attributes
The following attributes are advertised when
``use feature:CommonCloudAttributesGoogle`` or
``use feature:CommonCloudAttributesAWS`` is enabled. All values are strings.
:classad-attribute-def:`CloudImage`
Identifies the VM image. ("image" or "AMI ID")
:classad-attribute-def:`CloudVMType`
Identifies the type of resource allocated. ("machine type" or "instance type")
:classad-attribute-def:`CloudRegion`
Identifies the geographic area in which the instance is running.
:classad-attribute-def:`CloudZone`
Identifies a specific ("availability") zone within the region.
:classad-attribute-def:`CloudProvider`
Presently, either ``"Google"`` or ``"AWS"``.
:classad-attribute-def:`CloudPlatform`
Presently, either ``"GCE"`` or ``"EC2"``.
:classad-attribute-def:`CloudInstanceID`
The instance's identifier with its provider (on its platform).
:classad-attribute-def:`CloudInterruptible`
``"True"`` if the instance, and ``"False"`` otherwise.
|