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
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Portions of this code are Copyright 2011 Univa Inc.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <float.h>
#include "uti/sge_rmon.h"
#include "uti/sge_time.h"
#include "uti/sge_prog.h"
#include "uti/sge_bootstrap.h"
#include "uti/sge_binding_hlp.h"
#include "uti/sge_log.h"
#include "uti/sge_string.h"
#include "uti/sge_uidgid.h"
#include "uti/sge_hostname.h"
#include "uti/sge_os.h"
#include "uti/sge_parse_num_par.h"
#include "comm/commlib.h"
#include "sgeobj/sge_host.h"
#include "sgeobj/sge_conf.h"
#include "sgeobj/sge_feature.h"
#include "sgeobj/sge_job.h"
#include "sgeobj/sge_qinstance.h"
#include "sgeobj/sge_pe.h"
#include "sgeobj/sge_report.h"
#include "sgeobj/sge_ja_task.h"
#include "sgeobj/sge_pe_task.h"
#include "sgeobj/sge_usage.h"
#include "sgeobj/sge_object.h"
#include "sgeobj/sge_usage.h"
#include "gdi/version.h"
#include "gdi/sge_gdi_ctx.h"
#include "gdi/sge_gdiP.h"
#include "job_report_execd.h"
#include "sge_load_sensor.h"
#include "load_avg.h"
#include "execd_ck_to_do.h"
#include "sge_report_execd.h"
#include "msg_execd.h"
#include "binding_support.h"
#ifdef COMPILE_DC
# include "ptf.h"
#endif
static void
get_reserved_usage(const char*qualified_hostname, lList **job_usage_list);
static int
execd_add_load_report(sge_gdi_ctx_class_t *ctx, lList *report_list, u_long32 now, u_long32 *next_send);
static int
execd_add_conf_report(sge_gdi_ctx_class_t *ctx, lList *report_list, u_long32 now, u_long32 *next_send);
static int
execd_add_license_report(sge_gdi_ctx_class_t *ctx, lList *report_list, u_long32 now, u_long32 *next_send);
static int
execd_add_job_report(sge_gdi_ctx_class_t *ctx, lList *report_list, u_long32 now, u_long32 *next_send);
static int
sge_get_loadavg(const char *qualified_hostname, lList **lpp);
static int sge_get_topology(const char *qualified_hostname, lList **lpp);
static int sge_get_topology_inuse(const char *qualified_hostname, lList **lpp);
static int sge_get_sockets(const char *qualified_hostname, lList **lpp);
static int sge_get_cores(const char *qualified_hostname, lList **lpp);
static int sge_get_hwthreads(const char *qualified_hostname, lList **lpp);
report_source execd_report_sources[] = {
{ NUM_REP_REPORT_LOAD, execd_add_load_report , 0 },
{ NUM_REP_REPORT_CONF, execd_add_conf_report , 0 },
{ NUM_REP_REPORT_PROCESSORS, execd_add_license_report , 0 },
{ NUM_REP_REPORT_JOB, execd_add_job_report , 0 },
{ 0, NULL }
};
lUlong sge_execd_report_seqno = 0;
static u_long32 qmrestart_time = 0;
static bool delay_job_reports = false;
static bool send_all = true;
static lListElem *last_lr = NULL;
static lList *lr_list = NULL;
extern lList *jr_list;
static bool flush_lr = false;
u_long32 sge_get_qmrestart_time(void)
{
return qmrestart_time;
}
/* record qmaster restart time, need for use in delayed_reporting */
void sge_set_qmrestart_time(u_long32 qmr)
{
qmrestart_time = qmr;
}
bool sge_get_delay_job_reports_flag(void)
{
return delay_job_reports;
}
void sge_set_delay_job_reports_flag(bool new_val)
{
delay_job_reports = new_val;
}
bool sge_get_flush_lr_flag(void)
{
return flush_lr;
}
void sge_set_flush_lr_flag(bool new_val)
{
flush_lr = new_val;
}
void execd_merge_load_report(u_long32 seqno)
{
if (last_lr == NULL || seqno != lGetUlong(last_lr, REP_seqno)) {
return;
} else {
lListElem *old_lr;
for_each(old_lr, lGetList(last_lr, REP_list)) {
const void *iterator = NULL;
const char *hostname = lGetHost(old_lr, LR_host);
const char *name = lGetString(old_lr, LR_name);
lListElem *lr, *lr_next;
bool found = false;
lr_next = lGetElemStrFirst(lr_list, LR_name, name, &iterator);
while ((lr = lr_next)) {
lr_next = lGetElemStrNext(lr_list, LR_name, name, &iterator);
if (sge_hostcmp(lGetHost(lr, LR_host), hostname) == 0) {
found = true;
if (lGetUlong(old_lr, LR_static) == 2) {
lRemoveElem(lr_list, &lr);
} else {
lSetString(lr, LR_value, lGetString(old_lr, LR_value));
}
break;
}
}
if (!found) {
lAppendElem(lr_list, lCopyElem(old_lr));
}
}
}
lFreeElem(&last_lr);
}
void execd_trash_load_report(void) {
send_all = true;
}
static int
execd_add_load_report(sge_gdi_ctx_class_t *ctx, lList *report_list, u_long32 now, u_long32 *next_send)
{
const char* qualified_hostname = ctx->get_qualified_hostname(ctx);
const char* binary_path = ctx->get_binary_path(ctx);
DENTER(TOP_LAYER, "execd_add_load_report");
if (*next_send <= now || sge_get_flush_lr_flag()) {
lSortOrder *order = lParseSortOrderVarArg(LR_Type, "%I+", LR_host);
lListElem *report;
lList *tmp_lr_list;
*next_send = now + mconf_get_load_report_time();
sge_set_flush_lr_flag(false);
/*
** problem: add some more error handling here
*/
/*
** 1. load report
*/
report = lCreateElem(REP_Type);
if (send_all == true) {
lSetUlong(report, REP_type, NUM_REP_FULL_REPORT_LOAD);
} else {
lSetUlong(report, REP_type, NUM_REP_REPORT_LOAD);
}
lSetUlong(report, REP_version, GRM_GDI_VERSION);
lSetUlong(report, REP_seqno, sge_execd_report_seqno);
lSetHost(report, REP_host, qualified_hostname);
tmp_lr_list = sge_build_load_report(qualified_hostname, binary_path);
if (lr_list == NULL) {
lr_list = lCopyList("", tmp_lr_list);
lFreeElem(&last_lr);
lSortList(tmp_lr_list, order);
lSetList(report, REP_list, tmp_lr_list);
} else {
lListElem *lr;
for_each(lr, lr_list) {
const void *iterator = NULL;
const char *hostname = lGetHost(lr, LR_host);
const char *name = lGetString(lr, LR_name);
const char *value = lGetString(lr, LR_value);
lListElem *ep, *next_ep;
bool found = false;
next_ep = lGetElemStrFirst(tmp_lr_list, LR_name, name, &iterator);
while ((ep = next_ep)) {
next_ep = lGetElemStrNext(tmp_lr_list, LR_name, name, &iterator);
DPRINTF(("handling %s in execd_add_load_report\n", name));
if (sge_hostcmp(lGetHost(ep, LR_host), hostname) == 0) {
/* we found the same load value in the temp list */
found = true;
if (!send_all && sge_strnullcmp(lGetString(ep, LR_value), value) == 0) {
/* value hasn't changed, remove it from list */
lRemoveElem(tmp_lr_list, &ep);
} else {
DPRINTF(("value %s has changed from %s to %s\n", name,
value ? value:"NULL", lGetString(ep, LR_value)));
/* Old value is no longer valid */
lSetString(lr, LR_value, NULL);
}
break;
}
}
if (found == false) {
/* the load value is no longer reported, tag is as deleted and
add it to the report list */
lListElem *del_report = lCopyElem(lr);
lSetUlong(del_report, LR_static, 2);
lAppendElem(tmp_lr_list, del_report);
}
}
lSortList(tmp_lr_list, order);
lSetList(report, REP_list, tmp_lr_list);
lFreeElem(&last_lr);
last_lr = lCopyElem(report);
}
lFreeSortOrder(&order);
lAppendElem(report_list, report);
send_all = false;
}
DRETURN(0);
}
static int
execd_add_conf_report(sge_gdi_ctx_class_t *ctx, lList *report_list, u_long32 now, u_long32 *next_send)
{
const char* qualified_hostname = ctx->get_qualified_hostname(ctx);
DENTER(TOP_LAYER, "execd_add_conf_report");
if (*next_send <= now) {
lListElem *report;
*next_send = now + mconf_get_load_report_time();
/*
** 2. report about the configuration versions
** that the exec daemon has right now
** order of the reports is irrelevant
*/
report = lCreateElem(REP_Type);
lSetUlong(report, REP_type, NUM_REP_REPORT_CONF);
lSetUlong(report, REP_version, GRM_GDI_VERSION);
lSetUlong(report, REP_seqno, sge_execd_report_seqno);
lSetHost(report, REP_host, qualified_hostname);
lSetList(report, REP_list,
lCopyList("execd config list copy", Execd_Config_List));
lAppendElem(report_list, report);
DPRINTF(("handling conf report in execd_add_conf_report\n"));
}
DRETURN(0);
}
static int
execd_add_license_report(sge_gdi_ctx_class_t *ctx, lList *report_list, u_long32 now, u_long32 *next_send)
{
DENTER(TOP_LAYER, "execd_add_license_report");
if (*next_send == 0) {
const char* qualified_hostname = ctx->get_qualified_hostname(ctx);
lListElem *report;
*next_send = now + mconf_get_load_report_time();
/*
** 3. license report
*/
report = lCreateElem(REP_Type);
lSetUlong(report, REP_type, NUM_REP_REPORT_PROCESSORS);
lSetUlong(report, REP_version, GRM_GDI_VERSION);
lSetUlong(report, REP_seqno, sge_execd_report_seqno);
lSetHost(report, REP_host, qualified_hostname);
{
lList *lp_lic;
lListElem *ep_lic;
lp_lic = lCreateList("license report list", LIC_Type);
ep_lic = lCreateElem(LIC_Type);
/*
** no error handling here cause we can just send 1 as #processors
*/
lSetUlong(ep_lic, LIC_processors, sge_nprocs());
lSetString(ep_lic, LIC_arch, sge_get_arch());
lAppendElem(lp_lic, ep_lic);
lSetList(report, REP_list, lp_lic);
}
lAppendElem(report_list, report);
DPRINTF(("handling license report in execd_add_license_report\n"));
}
DRETURN(0);
}
static int
execd_add_job_report(sge_gdi_ctx_class_t *ctx, lList *report_list, u_long32 now, u_long32 *next_send)
{
bool do_send = false;
bool only_flush = false;
static u_long32 last_send = 0;
const char* qualified_hostname = ctx->get_qualified_hostname(ctx);
DENTER(TOP_LAYER, "execd_add_job_report");
/* return if no job reports are in the list */
if (lGetNumberOfElem(jr_list) == 0) {
DRETURN(0);
}
/* if report interval expired: send all reports */
if (*next_send <= now) {
*next_send = now + mconf_get_load_report_time();
do_send = true;
} else if (sge_get_flush_jr_flag()) {
/* if we shall flush reports: send only reports marked to flush */
do_send = true;
only_flush = true;
}
/*
* send only one report message per second
* we do send empty reports - they trigger rescheduling of a job
* to the same host on which it executed before.
*/
if (do_send && (last_send < now)) {
lListElem *job_report;
lList *job_report_list;
lListElem *jr;
/* remember last send time */
last_send = now;
/* create job report */
job_report = lCreateElem(REP_Type);
lSetUlong(job_report, REP_type, NUM_REP_REPORT_JOB);
lSetUlong(job_report, REP_version, GRM_GDI_VERSION);
lSetUlong(job_report, REP_seqno, sge_execd_report_seqno);
lSetHost(job_report, REP_host, qualified_hostname);
/* create job report list */
job_report_list = lCreateList("jr", JR_Type);
lSetList(job_report, REP_list, job_report_list);
/* copy reports (all or only to flush)
* We keep job reports where the job is started via JAPI (qsub -sync or
* DRMAA). This is done only when we reconnect after a qmaster failover
*/
for_each (jr, jr_list) {
if ((!only_flush || lGetBool(jr, JR_flush)) &&
!lGetBool(jr, JR_no_send) &&
!(sge_get_delay_job_reports_flag() && lGetBool(jr, JR_delay_report))) {
lAppendElem(job_report_list, lCopyElem(jr));
lSetBool(jr, JR_flush, false);
} /* else not sending report for this job */
}
/* append this new job report to the report list */
lAppendElem(report_list, job_report);
/* now all is sent, reset flush_jr */
sge_set_flush_jr_flag(false);
}
DRETURN(0);
}
lList *sge_build_load_report(const char* qualified_hostname, const char* binary_path)
{
lList *lp = NULL;
lListElem *ep;
int nprocs = 1;
double load;
const void *iterator = NULL;
DENTER(TOP_LAYER, "sge_build_load_report");
/*
adding load values to the load report
overwrites load values that are still
in the load list;
so we first validate external load values
then we get internal load values
overwriting the external values
*/
/* build up internal report list */
sge_switch2start_user();
sge_get_loadavg(qualified_hostname, &lp);
sge_switch2admin_user();
/* report topology reporting */
sge_get_topology(qualified_hostname, &lp);
sge_get_topology_inuse(qualified_hostname, &lp);
sge_get_sockets(qualified_hostname, &lp);
sge_get_cores(qualified_hostname, &lp);
sge_get_hwthreads(qualified_hostname, &lp);
/* get load report from external load sensor */
sge_ls_get(qualified_hostname, binary_path, &lp);
/* make derived load values */
/* retrieve num procs first - we need it for all other derived load values */
ep = lGetElemStrFirst(lp, LR_name, LOAD_ATTR_NUM_PROC, &iterator);
while (ep != NULL) {
const char *value = lGetString(ep, LR_value);
if (sge_hostcmp(lGetHost(ep, LR_host), qualified_hostname) == 0) {
if (value) {
nprocs = MAX(1, atoi(value));
}
break;
}
ep = lGetElemStrNext(lp, LR_name, LOAD_ATTR_NUM_PROC, &iterator);
}
/* now make the derived load values */
ep = lGetElemHostFirst(lp, LR_host, qualified_hostname, &iterator);
while (ep != NULL) {
const char *name = lGetString(ep, LR_name);
const char *value = lGetString(ep, LR_value);
if (strcmp(name, LOAD_ATTR_LOAD_AVG) == 0) {
if (value != NULL) {
load = strtod(value, NULL);
sge_add_double2load_report(&lp, LOAD_ATTR_NP_LOAD_AVG, (load/nprocs), qualified_hostname, NULL);
}
} else if (strcmp(name, LOAD_ATTR_LOAD_SHORT) == 0) {
if (value != NULL) {
load = strtod(value, NULL);
sge_add_double2load_report(&lp, LOAD_ATTR_NP_LOAD_SHORT, (load/nprocs),
qualified_hostname, NULL);
}
} else if (strcmp(name, LOAD_ATTR_LOAD_MEDIUM) == 0) {
if (value != NULL) {
load = strtod(value, NULL);
sge_add_double2load_report(&lp, LOAD_ATTR_NP_LOAD_MEDIUM, (load/nprocs),
qualified_hostname, NULL);
}
} else if (strcmp(name, LOAD_ATTR_LOAD_LONG) == 0) {
if (value != NULL) {
load = strtod(value, NULL);
sge_add_double2load_report(&lp, LOAD_ATTR_NP_LOAD_LONG, (load/nprocs),
qualified_hostname, NULL);
}
}
ep = lGetElemHostNext(lp, LR_host, qualified_hostname, &iterator);
}
/* qmaster expects a list sorted by host */
lPSortList(lp, "%I+", LR_host);
DRETURN(lp);
}
/****** load_avg/sge_get_sockets() *********************************************
* NAME
* sge_get_sockets() -- Appends the number of sockets
*
* SYNOPSIS
* static int sge_get_sockets(const char* qualified_hostname, lList **lpp)
*
* FUNCTION
* Appends to the given list of load values the number of sockets
*
* INPUTS
* const char* qualified_hostname - Hostname
* lList **lpp - List with load values
*
* RESULT
* static int -
*
* NOTES
* MT-NOTE: sge_get_sockets() is MT safe
*
*******************************************************************************/
static int sge_get_sockets(const char* qualified_hostname, lList **lpp) {
int sockets = 0;
DENTER(TOP_LAYER, "sge_get_sockets");
/* get total number of sockets installed on system */
sockets = get_number_of_sockets();
/* append the number of sockets to the load report list */
sge_add_int2load_report(lpp, LOAD_ATTR_SOCKETS, sockets, qualified_hostname);
DRETURN(0);
}
/****** load_avg/sge_get_cores() ***********************************************
* NAME
* sge_get_cores() -- Appends the number of cores
*
* SYNOPSIS
* static int sge_get_cores(const char* qualified_hostname, lList **lpp)
*
* FUNCTION
* Appends to the given list of load values the number of cores
* on current system.
*
* INPUTS
* const char* qualified_hostname - Hostname
* lList **lpp - List with load values
*
* RESULT
* static int - 0 if everything was ok
*
* NOTES
* MT-NOTE: sge_get_cores() is MT safe
*
*******************************************************************************/
static int sge_get_cores(const char* qualified_hostname, lList **lpp) {
int cores = 0;
DENTER(TOP_LAYER, "sge_get_cores");
/* get the total number of cores */
cores = get_total_number_of_cores();
/* append the number of cores to the list */
sge_add_int2load_report(lpp, LOAD_ATTR_CORES, cores, qualified_hostname);
DRETURN(0);
}
/****** load_avg/sge_get_hwthreads() ***********************************************
* NAME
* sge_get_hwthreads() -- Sets the number of threads.
*
* SYNOPSIS
* static int sge_get_hwthreads(const char* qualified_hostname, lList **lpp)
*
* FUNCTION
* Appends to the given list of load values the number of threads.
*
* INPUTS
* const char* qualified_hostname - name of the host
* lList **lpp - list with load values
*
* RESULT
* static int - 0 per default
*
* NOTES
* MT-NOTE: sge_get_hwthreads() is MT safe
*
*******************************************************************************/
static int sge_get_hwthreads(const char* qualified_hostname, lList **lpp)
{
int hwthreads = 0;
DENTER(TOP_LAYER, "sge_get_hwthreads");
/* get the total number of threads */
hwthreads = get_total_number_of_threads();
/* append the number of threads to the list */
sge_add_int2load_report(lpp, LOAD_ATTR_THREADS, hwthreads, qualified_hostname);
DRETURN(0);
}
static int sge_get_topology(const char* qualified_hostname, lList **lpp) {
/* Because the linux topology is a list with an undefined length
(each socket could have a differnt number of cores, so we need
for each socket the number of cores) we put the whole topology
in a String value.
The format is following: SCCSCC
s(cc)s(cc) or sccscc or 22?
This means that we have a 2 socket machine with 2 cores on
socket one (or 0 when you start at 0) and 2 cores on socket
two.
When threads could be detected this could be changed to
SCTTCTTSCTTCTT
*/
/* pointer to topology string */
char* topology = NULL;
int topology_length = 0;
DENTER(TOP_LAYER, "sge_get_topology");
if (get_topology(&topology, &topology_length)) {
/* add topology to return value */
sge_add_str2load_report(lpp, LOAD_ATTR_TOPOLOGY, topology, qualified_hostname);
} else {
/* add 'NONE' as topology in case of only error */
sge_add_str2load_report(lpp, LOAD_ATTR_TOPOLOGY, "NONE", qualified_hostname);
}
sge_free(&topology);
DRETURN(0);
}
static int sge_get_topology_inuse(const char* qualified_hostname, lList **lpp) {
/* this topology is the topology in use which means that
characters like S C T are showing not (fully) occupied resources
while s c t are showing that they are used */
/* pointer to topology string */
char* topology = NULL;
DENTER(TOP_LAYER, "sge_get_topology_inuse");
if (get_execd_topology_in_use(&topology)) {
/* add topology to return value */
sge_add_str2load_report(lpp, LOAD_ATTR_TOPOLOGY_INUSE, topology, qualified_hostname);
} else {
/* add 'NONE' as topology in case of only error */
sge_add_str2load_report(lpp, LOAD_ATTR_TOPOLOGY_INUSE, "NONE", qualified_hostname);
}
sge_free(&topology);
DRETURN(0);
}
static int sge_get_loadavg(const char* qualified_hostname, lList **lpp)
{
double avg[3];
int loads;
int nprocs;
#ifdef SGE_LOADMEM
sge_mem_info_t mem_info;
#endif
DENTER(TOP_LAYER, "sge_get_loadavg");
loads = sge_getloadavg(avg, 3);
nprocs = sge_nprocs();
#ifndef INTERIX
if (loads == -1) {
static u_long32 next_log = 0;
u_long32 now;
now = sge_get_gmt();
if (now >= next_log) {
WARNING((SGE_EVENT, SFNMAX, MSG_SGETEXT_NO_LOAD));
next_log = now + 7200;
}
} else if (loads == -2) {
static bool logged_at_startup = false;
if (!logged_at_startup) {
logged_at_startup = true;
WARNING((SGE_EVENT, MSG_LS_USE_EXTERNAL_LS_S, sge_get_arch()));
}
}
#endif
/* build a list of load values */
if (loads >= 0) {
DPRINTF(("---> %f %f %f - %d\n", avg[0], avg[1], avg[2], (int) (avg[2] * 100.0)));
sge_add_double2load_report(lpp, LOAD_ATTR_LOAD_AVG, avg[1], qualified_hostname, NULL);
sge_add_double2load_report(lpp, LOAD_ATTR_LOAD_SHORT, avg[0], qualified_hostname, NULL);
sge_add_double2load_report(lpp, LOAD_ATTR_LOAD_MEDIUM, avg[1], qualified_hostname, NULL);
sge_add_double2load_report(lpp, LOAD_ATTR_LOAD_LONG, avg[2], qualified_hostname, NULL);
}
/* these are some static load values */
sge_add_str2load_report(lpp, LOAD_ATTR_ARCH, sge_get_arch(), qualified_hostname);
sge_add_int2load_report(lpp, LOAD_ATTR_NUM_PROC, nprocs, qualified_hostname);
#ifdef SGE_LOADMEM
/* memory load report */
memset(&mem_info, 0, sizeof(sge_mem_info_t));
if (sge_loadmem(&mem_info)) {
static int mem_fail = 0;
if (!mem_fail) {
ERROR((SGE_EVENT, SFNMAX, MSG_LOAD_NOMEMINDICES));
mem_fail =1;
}
DRETURN(1);
}
sge_add_double2load_report(lpp, LOAD_ATTR_MEM_FREE, mem_info.mem_free, qualified_hostname, "M");
sge_add_double2load_report(lpp, LOAD_ATTR_SWAP_FREE, mem_info.swap_free, qualified_hostname, "M");
sge_add_double2load_report(lpp, LOAD_ATTR_VIRTUAL_FREE, mem_info.mem_free + mem_info.swap_free,
qualified_hostname,"M");
sge_add_double2load_report(lpp, LOAD_ATTR_MEM_TOTAL, mem_info.mem_total, qualified_hostname, "M");
sge_add_double2load_report(lpp, LOAD_ATTR_SWAP_TOTAL, mem_info.swap_total, qualified_hostname, "M");
sge_add_double2load_report(lpp, LOAD_ATTR_VIRTUAL_TOTAL, mem_info.mem_total + mem_info.swap_total,
qualified_hostname, "M");
sge_add_double2load_report(lpp, LOAD_ATTR_MEM_USED, mem_info.mem_total - mem_info.mem_free, qualified_hostname, "M");
sge_add_double2load_report(lpp, LOAD_ATTR_SWAP_USED, mem_info.swap_total - mem_info.swap_free,
qualified_hostname, "M");
sge_add_double2load_report(lpp, LOAD_ATTR_VIRTUAL_USED, (mem_info.mem_total + mem_info.swap_total)-
(mem_info.mem_free + mem_info.swap_free), qualified_hostname, "M");
#ifdef IRIX
sge_add_double2load_report(lpp, LOAD_ATTR_SWAP_RSVD, mem_info.swap_rsvd, qualified_hostname, "M");
#endif
#if 0
/* identical to "virtual_free" */
if (!getenv("SGE_MAP_LOADVALUE")) {
sge_add_double2load_report(lpp, "s_vmem", mem_info.mem_total + mem_info.swap_total, qualified_hostname, "M");
sge_add_double2load_report(lpp, "h_vmem", mem_info.mem_total + mem_info.swap_total, qualified_hostname, "M");
}
#endif
#endif /* SGE_LOADMEM */
#ifdef SGE_LOADCPU
/* this code can cause nasty problems
this is a hack to work around the problem */
{
double cpu_percentage;
/* sge_getcpuload() must be called multiple
before it can return correct load values */
static int first_time = 1;
if (first_time) {
sge_getcpuload(&cpu_percentage);
first_time = 0;
}
if (sge_getcpuload(&cpu_percentage) != -1) {
sge_add_double2load_report(lpp, "cpu", cpu_percentage, qualified_hostname, NULL);
}
#ifndef INTERIX
else {
static u_long32 next_log2 = 0;
u_long32 now = sge_get_gmt();
if (now >= next_log2) {
WARNING((SGE_EVENT, SFNMAX, MSG_SGETEXT_NO_LOAD));
next_log2 = now + 7200;
}
}
#endif
}
#endif /* SGE_LOADCPU */
#ifdef INTERIX
{
int svc_running;
pid_t pids[1];
/* look if SGE_Helper_Service.exe is running */
svc_running = sge_get_pids(pids, 1, "SGE_Helper_Service.exe", PSCMD);
if (svc_running <= 0) {
svc_running = 0;
}
/* report if SGE_Helper_Service.exe is running and GUI can be displayed */
sge_add_int2load_report(lpp, "display_win_gui",
svc_running, qualified_hostname);
}
#endif
DRETURN(0);
}
void update_job_usage(const char* qualified_hostname)
{
lList *usage_list = NULL;
lListElem *jr;
lListElem *usage;
DENTER(TOP_LAYER, "update_job_usage");
if (mconf_get_simulate_jobs()) {
lListElem *jr;
for_each(jr, jr_list) {
add_usage(jr, USAGE_ATTR_CPU, NULL, 0.1);
add_usage(jr, USAGE_ATTR_MEM, NULL, 0.1);
add_usage(jr, USAGE_ATTR_IO, NULL, 0.0);
add_usage(jr, USAGE_ATTR_IOW, NULL, 0.0);
add_usage(jr, USAGE_ATTR_VMEM, NULL, 256);
add_usage(jr, USAGE_ATTR_MAXVMEM, NULL, 256);
}
DRETURN_VOID;
}
#ifdef COMPILE_DC
if (!mconf_get_sharetree_reserved_usage()) {
int ptf_error;
if ((ptf_error=ptf_get_usage(&usage_list))) {
ERROR((SGE_EVENT, MSG_LOAD_NOPTFUSAGE_S, ptf_errstr(ptf_error)));
/*
use the old usage values in job report or none
in case this is the first call to ptf_get_usage()
since a new job was started
*/
DRETURN_VOID;
}
}
#endif
if (mconf_get_sharetree_reserved_usage()) {
get_reserved_usage(qualified_hostname, &usage_list);
}
if (usage_list == NULL) {
DRETURN_VOID;
}
if (lGetNumberOfElem(usage_list) == 0) {
/* could be an empty list head */
lFreeList(&usage_list);
DRETURN_VOID;
}
#ifdef COMPILE_DC
#ifdef DEBUG_DC
ptf_show_registered_jobs();
#endif
#endif
/* replace existing usage in the job report with the new one */
for_each(usage, usage_list) {
u_long32 job_id;
lListElem *ja_task;
job_id = lGetUlong(usage, JB_job_number);
for_each(ja_task, lGetList(usage, JB_ja_tasks)) {
u_long32 ja_task_id;
lListElem *uep;
lListElem *pe_task;
ja_task_id = lGetUlong(ja_task, JAT_task_number);
/* search matching job report */
if (!(jr = get_job_report(job_id, ja_task_id, NULL))) {
/* should not happen in theory */
ERROR((SGE_EVENT, "removing unreferenced job "sge_u32"."sge_u32" without job report from ptf",job_id ,ja_task_id ));
#ifdef COMPILE_DC
ptf_unregister_registered_job(job_id, ja_task_id);
#endif
continue;
}
/* JG: TODO: make a function updating all load values in job report */
/* replace cpu/mem/io with newer values */
if ((uep = lGetSubStr(ja_task, UA_name, USAGE_ATTR_CPU, JAT_usage_list))) {
DPRINTF(("added/updated 'cpu' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_CPU, NULL, lGetDouble(uep, UA_value));
}
if ((uep = lGetSubStr(ja_task, UA_name, USAGE_ATTR_MEM, JAT_usage_list))) {
DPRINTF(("added/updated 'mem' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_MEM, NULL, lGetDouble(uep, UA_value));
}
if ((uep = lGetSubStr(ja_task, UA_name, USAGE_ATTR_IO, JAT_usage_list))) {
DPRINTF(("added/updated 'io' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_IO, NULL, lGetDouble(uep, UA_value));
}
if ((uep = lGetSubStr(ja_task, UA_name, USAGE_ATTR_IOW, JAT_usage_list))) {
DPRINTF(("added/updated 'iow' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_IOW, NULL, lGetDouble(uep, UA_value));
}
if ((uep = lGetSubStr(ja_task, UA_name, USAGE_ATTR_VMEM, JAT_usage_list))) {
DPRINTF(("added/updated 'vmem' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_VMEM, NULL, lGetDouble(uep, UA_value));
}
if ((uep = lGetSubStr(ja_task, UA_name, USAGE_ATTR_MAXVMEM, JAT_usage_list))) {
DPRINTF(("added/updated 'maxvmem' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_MAXVMEM, NULL, lGetDouble(uep, UA_value));
}
DPRINTF(("---> updating job report usage for job "sge_u32"."sge_u32"\n",
job_id, ja_task_id));
for_each(pe_task, lGetList(ja_task, JAT_task_list)) {
const char *pe_task_id = lGetString(pe_task, PET_id);
/* search matching job report */
if (!(jr = get_job_report(job_id, ja_task_id, pe_task_id))) {
/* should not happen in theory */
ERROR((SGE_EVENT, "could not find job report for job "sge_u32"."sge_u32" "
"task "SFN" contained in job usage from ptf", job_id, ja_task_id, pe_task_id));
#ifdef COMPILE_DC
#ifdef DEBUG_DC
ptf_show_registered_jobs();
#endif
#endif
continue;
}
/* replace cpu/mem/io with newer values */
if ((uep = lGetSubStr(pe_task, UA_name, USAGE_ATTR_CPU, PET_usage))) {
DPRINTF(("added/updated 'cpu' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_CPU, NULL, lGetDouble(uep, UA_value));
}
if ((uep = lGetSubStr(pe_task, UA_name, USAGE_ATTR_MEM, PET_usage))) {
DPRINTF(("added/updated 'mem' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_MEM, NULL, lGetDouble(uep, UA_value));
}
if ((uep = lGetSubStr(pe_task, UA_name, USAGE_ATTR_IO, PET_usage))) {
DPRINTF(("added/updated 'io' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_IO, NULL, lGetDouble(uep, UA_value));
}
if ((uep = lGetSubStr(pe_task, UA_name, USAGE_ATTR_IOW, PET_usage))) {
DPRINTF(("added/updated 'iow' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_IOW, NULL, lGetDouble(uep, UA_value));
}
if ((uep = lGetSubStr(pe_task, UA_name, USAGE_ATTR_VMEM, PET_usage))) {
DPRINTF(("added/updated 'vmem' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_VMEM, NULL, lGetDouble(uep, UA_value));
}
if ((uep = lGetSubStr(pe_task, UA_name, USAGE_ATTR_MAXVMEM, PET_usage))) {
DPRINTF(("added/updated 'maxvmem' usage: %f\n", lGetDouble(uep, UA_value)));
add_usage(jr, USAGE_ATTR_MAXVMEM, NULL, lGetDouble(uep, UA_value));
}
DPRINTF(("---> updating job report usage for job "sge_u32"."sge_u32" task \"%s\"\n",
job_id, ja_task_id, pe_task_id));
}
}
}
lFreeList(&usage_list);
DRETURN_VOID;
}
static double
calculate_reserved_vmem(lListElem *queue, int nslots)
{
double vmem = 0.0;
if (queue != NULL) {
double lim, h_vmem_lim, s_vmem_lim;
char err_str[128];
parse_ulong_val(&h_vmem_lim, NULL, TYPE_MEM,
lGetString(queue, QU_h_vmem),
err_str, sizeof(err_str)-1);
parse_ulong_val(&s_vmem_lim, NULL, TYPE_MEM,
lGetString(queue, QU_s_vmem),
err_str, sizeof(err_str)-1);
lim = MIN(h_vmem_lim, s_vmem_lim);
/* INFINITY is mapped to DBL_MAX -> use 0; we cannot account INFINITY! */
if (lim == DBL_MAX) {
lim = 0.0;
}
vmem = lim * nslots;
}
return vmem;
}
static lList *
calculate_reserved_usage(const char* qualified_hostname, const lListElem *ja_task, const lListElem *pe_task,
u_long32 job_id, u_long32 ja_task_id,
const char *pe_task_id,
const lListElem *pe, u_long32 now)
{
lList *ul = NULL;
lListElem *jr;
/* We only build new reserved online usage,
* when the final (acct) usage has not yet been generated.
* Otherwise online usage might get higher than final usage!
*/
jr = get_job_report(job_id, ja_task_id, pe_task_id);
if (lGetSubStr(jr, UA_name, USAGE_ATTR_CPU_ACCT, JR_usage) == NULL) {
double cpu, mem, io, iow, maxvmem;
double wall_clock_time;
build_reserved_usage(now, ja_task, pe_task, &wall_clock_time, &cpu, &mem, &maxvmem);
io = iow = 0.0;
#ifdef COMPILE_DC
{
/* use PDC actual I/O if available */
lList *jul;
lListElem *uep;
if ((jul=ptf_get_job_usage(job_id, ja_task_id, pe_task_id))) {
io = ((uep=lGetElemStr(jul, UA_name, USAGE_ATTR_IO))) ?
lGetDouble(uep, UA_value) : 0;
iow = ((uep=lGetElemStr(jul, UA_name, USAGE_ATTR_IOW))) ?
lGetDouble(uep, UA_value) : 0;
lFreeList(&jul);
}
}
#endif
/* create the reserved usage list */
ul = lCreateList("usage_list", UA_Type);
usage_list_set_double_usage(ul, USAGE_ATTR_CPU, cpu);
usage_list_set_double_usage(ul, USAGE_ATTR_MEM, mem);
usage_list_set_double_usage(ul, USAGE_ATTR_IO, io);
usage_list_set_double_usage(ul, USAGE_ATTR_IOW, iow);
/* for reserved usage, we assume that the job always
* consumes the maximum allowed memory (by h_vmem/s_vmem)
*/
if (maxvmem != 0) {
usage_list_set_double_usage(ul, USAGE_ATTR_VMEM, maxvmem);
usage_list_set_double_usage(ul, USAGE_ATTR_MAXVMEM, maxvmem);
}
}
return ul;
}
static lListElem *
calculate_reserved_usage_ja_task(const char* qualified_hostname, const lListElem *ja_task,
u_long32 job_id, u_long32 ja_task_id,
const lListElem *pe, u_long32 now,
lListElem *new_job)
{
lList *usage_list;
lListElem *new_ja_task;
/* create data structures */
if (new_job == NULL) {
new_job = lCreateElem(JB_Type);
lSetUlong(new_job, JB_job_number, job_id);
}
new_ja_task = lAddSubUlong(new_job, JAT_task_number, ja_task_id,
JB_ja_tasks, JAT_Type);
usage_list = calculate_reserved_usage(qualified_hostname, ja_task, NULL,
job_id, ja_task_id, NULL,
pe, now);
lSetList(new_ja_task, JAT_usage_list, usage_list);
return new_job;
}
static lListElem *
calculate_reserved_usage_pe_task(const char* qualified_hostname,
const lListElem *ja_task,
const lListElem *pe_task,
u_long32 job_id, u_long32 ja_task_id,
const char *pe_task_id,
const lListElem *pe, u_long32 now,
lListElem *new_job)
{
lListElem *new_ja_task, *new_pe_task;
lList *usage_list;
/* create data structures */
if (new_job == NULL) {
new_job = lCreateElem(JB_Type);
lSetUlong(new_job, JB_job_number, job_id);
}
new_ja_task = lGetElemUlong(lGetList(new_job, JB_ja_tasks),
JAT_task_number, ja_task_id);
if (new_ja_task == NULL) {
new_ja_task = lAddSubUlong(new_job, JAT_task_number, ja_task_id,
JB_ja_tasks, JAT_Type);
}
new_pe_task = lAddSubStr(new_ja_task, PET_id, pe_task_id, JAT_task_list,
PET_Type);
usage_list = calculate_reserved_usage(qualified_hostname, ja_task, pe_task,
job_id, ja_task_id, pe_task_id,
pe, now);
lSetList(new_pe_task, PET_usage, usage_list);
return new_job;
}
/* calculate reserved resource usage */
static void get_reserved_usage(const char *qualified_hostname, lList **job_usage_list)
{
lList *temp_job_usage_list;
const lListElem *job;
lEnumeration *what;
u_long32 now;
DENTER(TOP_LAYER, "get_reserved_usage");
now = sge_get_gmt();
what = lWhat("%T(%I %I)", JB_Type, JB_job_number, JB_ja_tasks);
/* JG: TODO: why use JB_Type etc.? We only need an object containing
* job_id, ja_task_id, pe_task_id and a usage_list.
* Same structure is delivered from PTF.
*/
temp_job_usage_list = lCreateList("JobResUsageList", JB_Type);
for_each (job, *(object_type_get_master_list(SGE_TYPE_JOB))) {
u_long32 job_id;
const lListElem *pe, *ja_task;
lListElem *new_job = NULL;
job_id = lGetUlong(job, JB_job_number);
for_each (ja_task, lGetList(job, JB_ja_tasks)) {
u_long32 ja_task_id;
lListElem *pe_task;
ja_task_id = lGetUlong(ja_task, JAT_task_number);
/* we need the pe to be able to calculate the number of slots used
* as multiplication factor for usage
*/
pe = lGetObject(ja_task, JAT_pe_object);
/* If we have a pid for the ja_task: it's either a non parallel job
* or the master task of a parallel job.
* Produce a usage record for it.
*/
if (lGetUlong(ja_task, JAT_pid) != 0) {
new_job = calculate_reserved_usage_ja_task(qualified_hostname, ja_task,
job_id, ja_task_id,
pe, now, new_job);
}
/* If we have pe tasks (tightly integrated): Produce a usage record
* for each of them.
* Do not report reserved usage, if accounting_summary is activated!
*/
if (!(pe != NULL && lGetBool(pe, PE_accounting_summary))) {
for_each(pe_task, lGetList(ja_task, JAT_task_list)) {
const char *pe_task_id;
pe_task_id = lGetString(pe_task, PET_id);
new_job = calculate_reserved_usage_pe_task(qualified_hostname,
ja_task, pe_task,
job_id, ja_task_id,
pe_task_id,
pe, now, new_job);
}
}
}
if (new_job != NULL) {
lAppendElem(temp_job_usage_list, new_job);
}
}
*job_usage_list = lSelect("PtfJobUsageList", temp_job_usage_list, NULL,
what);
lFreeList(&temp_job_usage_list);
lFreeWhat(&what);
DRETURN_VOID;
}
static void build_reserved_mem_usage(const lListElem *gdil_ep, int slots, double wallclock, double *mem, double *maxvmem)
{
/*
* sum up memory usage (integral current memory * wallclock time)
* and maxvmem (assume it is vmem)
*/
double vmem = calculate_reserved_vmem(lGetObject(gdil_ep, JG_queue), slots);
*mem += vmem * wallclock / (1024*1024*1024);
*maxvmem += vmem;
}
/****** load_avg/build_reserved_usage() ****************************************
* NAME
* build_reserved_usage() -- calculate reserved usage for job or pe task
*
* SYNOPSIS
* void build_reserved_usage(const u_long32 now, const lListElem *ja_task,
* const lListElem *pe_task, double *wallclock,
* double *cpu, double *mem, double *maxvmem)
*
* FUNCTION
* Computes reserved usage for a job (array task) or the task of a tightly
* integrated parallel job.
* The following values are computed and returned via call by reference:
* - wallclock time (current time - start time)
* - memory usage (integral of current memory usage times wallclock time)
* This can only be computed if the job requests memory (h_vmem/s_vmem).
* - maxvmem (assume the job will consume as much memory as possible (as
* requested by h_vmem or s_vmem).
*
* INPUTS
* const u_long32 now - current time
* const lListElem *ja_task - job array task
* const lListElem *pe_task - parallel task, or NULL for job ja task
*
* RESULT
* double *wallclock - returns the wallclock time
* double *cpu - returns the reserved cpu usage
* double *mem - returns the reserved memory (integral vmem * wallclock)
* double *maxvmem - returns the maximum virtual memory used
*
* NOTES
* MT-NOTE: build_reserved_usage() is MT safe
*******************************************************************************/
void build_reserved_usage(const u_long32 now, const lListElem *ja_task, const lListElem *pe_task,
double *wallclock, double *cpu, double *mem, double *maxvmem)
{
u_long32 start_time;
if (ja_task == NULL || wallclock == NULL || cpu == NULL || mem == NULL || maxvmem == NULL) {
return;
}
/* calculate wallclock time */
if (pe_task == NULL) {
start_time = lGetUlong(ja_task, JAT_start_time);
} else {
start_time = lGetUlong(pe_task, PET_start_time);
}
if (start_time > 0 && start_time < now) {
*wallclock = now - start_time;
} else {
*wallclock = 0;
}
/* if wallclock == 0, something is wrong with start_time vs. end_time
* and we cannot report any usage
*/
*cpu = 0.0;
*mem = 0.0;
*maxvmem = 0.0;
if (*wallclock != 0) {
/*
* compute cpu, mem and maxvmem
* we must take into account that we might have multiple gdil elements
* having different settings for h_vmem!
* mem is the integral of h_vmem * slots * wallclock
* this computation only works, if h_vmem is *not* INFINITY (DBL_MAX)
*
* we have to consider different cases:
* - ordinary sequential job (only one slot == all gdil)
* - loosely integrated parallel job (usage computation only for master task, but all gdil)
* - tightly integrated parallel job: usage computation done
* - if we want to see the accounting summary:
* - for the master task (all gdil, similar to loose integration)
* - without accounting_summary
* - for the master task (1 slot)
* - for the individual pe tasks
*/
if (pe_task != NULL) {
/*
* A pe task occupies one slot,
* we get the virtual memory information from the queue
* it is running in.
*/
const char *queue_name;
const lListElem *gdil_ep;
*cpu = *wallclock;
queue_name = lGetString(lFirst(lGetList(pe_task, PET_granted_destin_identifier_list)), JG_qname);
gdil_ep = lGetElemStr(lGetList(ja_task, JAT_granted_destin_identifier_list), JG_qname, queue_name);
build_reserved_mem_usage(gdil_ep, 1, *wallclock, mem, maxvmem);
} else {
/* compute cpu */
int slots = 0;
int slots_total = 0;
const lList *gdil = lGetList(ja_task, JAT_granted_destin_identifier_list);
const lListElem *gdil_ep;
const lListElem *pe = lGetObject(ja_task, JAT_pe_object);
/* sequential job, or loose integration, or tight integration with accounting_summary */
if (pe == NULL || !lGetBool(pe, PE_control_slaves) || lGetBool(pe, PE_accounting_summary)) {
/* account for all gdil */
const lListElem *master_gdil_ep = lFirst(gdil);
for_each(gdil_ep, gdil) {
slots = lGetUlong(gdil_ep, JG_slots);
/* respect job_is_first_task, only once (for the master task gdil) */
if (pe != NULL && gdil_ep == master_gdil_ep && !lGetBool(pe, PE_job_is_first_task)) {
slots++;
}
slots_total += slots;
build_reserved_mem_usage(gdil_ep, slots, *wallclock, mem, maxvmem);
}
} else {
/* tightly integrated without accounting_summary, this is the master task only */
gdil_ep = lFirst(gdil);
slots_total = 1;
build_reserved_mem_usage(gdil_ep, 1, *wallclock, mem, maxvmem);
}
/* cpu is wallclock time * total number of job slots */
*cpu = *wallclock * slots_total;
}
}
}
|