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
|
/*___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.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <string.h>
#include <pthread.h>
#ifdef SOLARISAMD64
# include <sys/stream.h>
#endif
#include "uti/sge_rmon.h"
#include "uti/sge_unistd.h"
#include "uti/sge_prog.h"
#include "uti/sge_log.h"
#include "uti/sge_profiling.h"
#include "uti/sge_time.h"
#include "uti/sge_thread_ctrl.h"
#include "uti/sge_mtutil.h"
#include "sgeobj/sge_answer.h"
#include "sgeobj/sge_conf.h"
#include "sgeobj/sge_report.h"
#include "sgeobj/sge_schedd_conf.h"
#include "sgeobj/sge_job.h"
#include "sgeobj/sge_qinstance.h"
#include "sgeobj/sge_ja_task.h"
#include "sgeobj/sge_userset.h"
#include "sgeobj/sge_qinstance_state.h"
#include "sgeobj/sge_userprj.h"
#include "sgeobj/sge_sharetree.h"
#include "sgeobj/sge_host.h"
#include "sgeobj/sge_centry.h"
#include "sgeobj/sge_ckpt.h"
#include "sgeobj/sge_pe.h"
#include "sgeobj/sge_range.h"
#include "sgeobj/sge_order.h"
#include "mir/sge_mirror.h"
#include "evc/sge_event_client.h"
#include "evm/sge_event_master.h"
#include "sched/sge_orders.h"
#include "sched/sge_job_schedd.h"
#include "sched/sge_serf.h"
#include "sched/schedd_message.h"
#include "sched/msg_schedd.h"
#include "sched/sge_schedd_text.h"
#include "sched/schedd_monitor.h"
#include "sched/sge_interactive_sched.h"
#include "sched/sgeee.h"
#include "sched/load_correction.h"
#include "sched/sge_resource_utilization.h"
#include "sched/suspend_thresholds.h"
#include "sched/sge_support.h"
#include "sched/sort_hosts.h"
#include "sched/debit.h"
#include "sge_sched_prepare_data.h"
#include "sge_sched_job_category.h"
#include "basis_types.h"
#include "sge_mt_init.h"
#include "sge.h"
#include "setup_qmaster.h"
#include "sge_sched_process_events.h"
#include "sge_qmaster_threads.h"
#include "sge_follow.h"
#include "sge_follow.h"
#include "sge_qmaster_threads.h"
#include "sge_sched_process_events.h"
#include "sge_sched_thread.h"
#include "sge_sched_order.h"
#if 0
#define SCHEDULER_TIMEOUT_S 10
#define SCHEDULER_TIMEOUT_N 0
#endif
scheduler_control_t Scheduler_Control = {
PTHREAD_MUTEX_INITIALIZER,
PTHREAD_COND_INITIALIZER,
false, false, NULL,
true, /* rebuild_categories */
false /* new_global_config */
};
#if 0
static void rest_busy(sge_evc_class_t *evc);
static void wait_for_events(void);
#endif
static int dispatch_jobs(sge_evc_class_t *evc, scheduler_all_data_t *lists, order_t *orders,
lList **splitted_job_lists[]);
static dispatch_t
select_assign_debit(lList **queue_list, lList **dis_queue_list, lListElem *job, lListElem *ja_task,
lList *pe_list, lList *ckpt_list, lList *centry_list, lList *host_list,
lList *acl_list, lList **user_list, lList **group_list, order_t *orders,
double *total_running_job_tickets, int *sort_hostlist, bool is_start,
bool is_reserve, bool is_schedule_based, lList **load_list, lList *hgrp_list, lList *rqs_list,
lList *ar_list, sched_prof_t *pi, bool monitor_next_run, u_long32 now);
void st_set_flag_new_global_conf(bool new_value)
{
DENTER(TOP_LAYER, "st_set_flag_new_global_conf");
sge_mutex_lock("event_control_mutex", SGE_FUNC, __LINE__, &Scheduler_Control.mutex);
Scheduler_Control.new_global_conf = new_value;
sge_mutex_unlock("event_control_mutex", SGE_FUNC, __LINE__, &Scheduler_Control.mutex);
DRETURN_VOID;
}
bool st_get_flag_new_global_conf(void)
{
bool ret = false;
DENTER(TOP_LAYER, "st_get_flag_new_global_conf");
sge_mutex_lock("event_control_mutex", SGE_FUNC, __LINE__, &Scheduler_Control.mutex);
ret = Scheduler_Control.new_global_conf;
sge_mutex_unlock("event_control_mutex", SGE_FUNC, __LINE__, &Scheduler_Control.mutex);
DRETURN(ret);
}
int scheduler_method(sge_evc_class_t *evc, lList **answer_list, scheduler_all_data_t *lists, lList **order)
{
order_t orders = ORDER_INIT;
lList **splitted_job_lists[SPLIT_LAST]; /* JB_Type */
lList *waiting_due_to_pedecessor_list = NULL; /* JB_Type */
lList *waiting_due_to_time_list = NULL; /* JB_Type */
lList *pending_excluded_list = NULL; /* JB_Type */
lList *suspended_list = NULL; /* JB_Type */
lList *finished_list = NULL; /* JB_Type */
lList *pending_list = NULL; /* JB_Type */
lList *pending_excludedlist = NULL; /* JB_Type */
lList *running_list = NULL; /* JB_Type */
lList *error_list = NULL; /* JB_Type */
lList *hold_list = NULL; /* JB_Type */
lList *not_started_list = NULL; /* JB_Type */
lList *deferred_list = NULL; /* JB_Type */
int prof_job_count, global_mes_count, job_mes_count;
int i;
DENTER(TOP_LAYER, "scheduler_method");
PROF_START_MEASUREMENT(SGE_PROF_CUSTOM0);
serf_new_interval(sge_get_gmt());
orders.pendingOrderList = *order;
*order = NULL;
prof_job_count = lGetNumberOfElem(lists->job_list);
sconf_reset_jobs();
schedd_mes_initialize();
schedd_order_initialize();
for (i = SPLIT_FIRST; i < SPLIT_LAST; i++) {
splitted_job_lists[i] = NULL;
}
splitted_job_lists[SPLIT_WAITING_DUE_TO_PREDECESSOR] = &waiting_due_to_pedecessor_list;
splitted_job_lists[SPLIT_WAITING_DUE_TO_TIME] = &waiting_due_to_time_list;
splitted_job_lists[SPLIT_PENDING_EXCLUDED] = &pending_excluded_list;
splitted_job_lists[SPLIT_SUSPENDED] = &suspended_list;
splitted_job_lists[SPLIT_FINISHED] = &finished_list;
splitted_job_lists[SPLIT_PENDING] = &pending_list;
splitted_job_lists[SPLIT_PENDING_EXCLUDED_INSTANCES] = &pending_excludedlist;
splitted_job_lists[SPLIT_RUNNING] = &running_list;
splitted_job_lists[SPLIT_ERROR] = &error_list;
splitted_job_lists[SPLIT_HOLD] = &hold_list;
splitted_job_lists[SPLIT_NOT_STARTED] = ¬_started_list;
splitted_job_lists[SPLIT_DEFERRED] = &deferred_list;
split_jobs(&(lists->job_list), mconf_get_max_aj_instances(), splitted_job_lists, false);
if (lists->all_queue_list != NULL) { /* add global queue messages */
lList *qlp = NULL;
lCondition *where = NULL;
lEnumeration *what = NULL;
const lDescr *dp = lGetListDescr(lists->all_queue_list);
lListElem *mes_queues;
what = lWhat("%T(ALL)", dp);
where = lWhere("%T(%I m= %u "
"|| %I m= %u "
"|| %I m= %u "
"|| %I m= %u "
"|| %I m= %u)",
dp,
QU_state, QI_SUSPENDED, /* only not suspended queues */
QU_state, QI_SUSPENDED_ON_SUBORDINATE,
QU_state, QI_ERROR, /* no queues in error state */
QU_state, QI_AMBIGUOUS,
QU_state, QI_UNKNOWN); /* only known queues */
if (what == NULL || where == NULL) {
DPRINTF(("failed creating where or what describing non available queues\n"));
} else {
qlp = lSelect("", lists->all_queue_list, where, what);
for_each(mes_queues, qlp) {
schedd_mes_add_global(NULL, evc->monitor_next_run, SCHEDD_INFO_QUEUENOTAVAIL_S,
lGetString(mes_queues, QU_full_name));
}
}
for_each(mes_queues, lists->dis_queue_list) {
schedd_mes_add_global(NULL, evc->monitor_next_run, SCHEDD_INFO_QUEUENOTAVAIL_S,
lGetString(mes_queues, QU_full_name));
}
schedd_log_list(NULL, evc->monitor_next_run, MSG_SCHEDD_LOGLIST_QUEUESTEMPORARLYNOTAVAILABLEDROPPED,
qlp, QU_full_name);
lFreeList(&qlp);
lFreeWhere(&where);
lFreeWhat(&what);
}
/**
* the actual scheduling
*/
dispatch_jobs(evc, lists, &orders, splitted_job_lists);
/**
* post processing
*/
remove_immediate_jobs(*(splitted_job_lists[SPLIT_PENDING]),
*(splitted_job_lists[SPLIT_RUNNING]), &orders);
if (sge_thread_has_shutdown_started() == false) {
sge_schedd_send_orders(evc->get_gdi_ctx(evc), &orders, &(orders.configOrderList), NULL, "C: config orders");
sge_schedd_send_orders(evc->get_gdi_ctx(evc), &orders, &(orders.jobStartOrderList), NULL, "C: job start orders");
sge_schedd_send_orders(evc->get_gdi_ctx(evc), &orders, &(orders.pendingOrderList), NULL, "C: pending ticket orders");
}
PROF_START_MEASUREMENT(SGE_PROF_SCHEDLIB4);
{
int clean_jobs[] = {SPLIT_WAITING_DUE_TO_PREDECESSOR,
SPLIT_WAITING_DUE_TO_TIME,
SPLIT_PENDING_EXCLUDED,
SPLIT_PENDING_EXCLUDED_INSTANCES,
SPLIT_ERROR,
SPLIT_HOLD};
int i = 0;
int max = 6;
lListElem *job;
for (i = 0; i < max; i++) {
/* clear fields for queued jobs */
for_each(job, *(splitted_job_lists[clean_jobs[i]])) {
orders.pendingOrderList = sge_create_orders(orders.pendingOrderList,
ORT_clear_pri_info,
job, NULL, NULL, false);
}
}
}
sge_build_sgeee_orders(lists, NULL,*(splitted_job_lists[SPLIT_PENDING]), NULL,
&orders, false, 0, false);
sge_build_sgeee_orders(lists, NULL,*(splitted_job_lists[SPLIT_NOT_STARTED]), NULL,
&orders, false, 0, false);
/* generated scheduler messages, thus we have to call it */
trash_splitted_jobs(evc->monitor_next_run, splitted_job_lists);
orders.jobStartOrderList= sge_add_schedd_info(orders.jobStartOrderList, &global_mes_count, &job_mes_count);
if (prof_is_active(SGE_PROF_SCHEDLIB4)) {
prof_stop_measurement(SGE_PROF_SCHEDLIB4, NULL);
PROFILING((SGE_EVENT, "PROF: create pending job orders: %.3f s",
prof_get_measurement_utime(SGE_PROF_SCHEDLIB4,false, NULL)));
}
sge_schedd_send_orders(evc->get_gdi_ctx(evc), &orders, &(orders.configOrderList), answer_list, "D: config orders");
sge_schedd_send_orders(evc->get_gdi_ctx(evc), &orders, &(orders.jobStartOrderList), answer_list, "D: job start orders");
sge_schedd_send_orders(evc->get_gdi_ctx(evc), &orders, &(orders.pendingOrderList), answer_list, "D: pending ticket orders");
if (Master_Request_Queue.order_list != NULL) {
sge_schedd_add_gdi_order_request(evc->get_gdi_ctx(evc), &orders, answer_list, &Master_Request_Queue.order_list);
}
if(prof_is_active(SGE_PROF_CUSTOM0)) {
prof_stop_measurement(SGE_PROF_CUSTOM0, NULL);
PROFILING((SGE_EVENT, "PROF: scheduled in %.3f (u %.3f + s %.3f = %.3f): %d sequential, %d parallel, %d orders, %d H, %d Q, %d QA, %d J(qw), %d J(r), %d J(s), %d J(h), %d J(e), %d J(x), %d J(all), %d C, %d ACL, %d PE, %d U, %d D, %d PRJ, %d ST, %d CKPT, %d RU, %d gMes, %d jMes, %d/%d pre-send, %d/%d/%d pe-alg\n",
prof_get_measurement_wallclock(SGE_PROF_CUSTOM0, true, NULL),
prof_get_measurement_utime(SGE_PROF_CUSTOM0, true, NULL),
prof_get_measurement_stime(SGE_PROF_CUSTOM0, true, NULL),
prof_get_measurement_utime(SGE_PROF_CUSTOM0, true, NULL) +
prof_get_measurement_stime(SGE_PROF_CUSTOM0, true, NULL),
sconf_get_fast_jobs(),
sconf_get_pe_jobs(),
(int)orders.numberSendOrders,
lGetNumberOfElem(lists->host_list),
lGetNumberOfElem(lists->queue_list),
lGetNumberOfElem(lists->all_queue_list),
(lGetNumberOfElem(*(splitted_job_lists[SPLIT_PENDING])) + lGetNumberOfElem(*(splitted_job_lists[SPLIT_NOT_STARTED]))),
lGetNumberOfElem(*(splitted_job_lists[SPLIT_RUNNING])),
lGetNumberOfElem(*(splitted_job_lists[SPLIT_SUSPENDED])),
lGetNumberOfElem(*(splitted_job_lists[SPLIT_HOLD])),
lGetNumberOfElem(*(splitted_job_lists[SPLIT_ERROR])),
lGetNumberOfElem(*(splitted_job_lists[SPLIT_FINISHED])),
prof_job_count,
lGetNumberOfElem(lists->centry_list),
lGetNumberOfElem(lists->acl_list),
lGetNumberOfElem(lists->pe_list),
lGetNumberOfElem(lists->user_list),
lGetNumberOfElem(lists->dept_list),
lGetNumberOfElem(lists->project_list),
lGetNumberOfElem(lists->share_tree),
lGetNumberOfElem(lists->ckpt_list),
lGetNumberOfElem(lists->running_per_user),
global_mes_count,
job_mes_count,
(int)orders.numberSendOrders,
(int)orders.numberSendPackages,
sconf_get_pe_alg_value(SCHEDD_PE_LOW_FIRST),
sconf_get_pe_alg_value(SCHEDD_PE_BINARY),
sconf_get_pe_alg_value(SCHEDD_PE_HIGH_FIRST)
));
}
PROF_START_MEASUREMENT(SGE_PROF_CUSTOM5);
/* free all job lists */
for (i = SPLIT_FIRST; i < SPLIT_LAST; i++) {
if (splitted_job_lists[i]) {
lFreeList(splitted_job_lists[i]);
splitted_job_lists[i] = NULL;
}
}
if (prof_is_active(SGE_PROF_CUSTOM5)) {
prof_stop_measurement(SGE_PROF_CUSTOM5, NULL);
PROFILING((SGE_EVENT, "PROF: send orders and cleanup took: %.3f (u %.3f,s %.3f) s",
prof_get_measurement_wallclock(SGE_PROF_CUSTOM5, true, NULL),
prof_get_measurement_utime(SGE_PROF_CUSTOM5, true, NULL),
prof_get_measurement_stime(SGE_PROF_CUSTOM5, true, NULL) ));
}
DRETURN(0);
}
/****** schedd/scheduler/dispatch_jobs() **************************************
* NAME
* dispatch_jobs() -- dispatches jobs to queues
*
* SYNOPSIS
* static int dispatch_jobs(sge_Sdescr_t *lists, lList **orderlist, lList
* **running_jobs, lList **finished_jobs)
*
* FUNCTION
* dispatch_jobs() is responsible for splitting
* still running jobs into 'running_jobs'
*
* INPUTS
* sge_Sdescr_t *lists - all lists
* lList **orderlist - returns orders to be sent to qmaster
* lList **running_jobs - returns all running jobs
* lList **finished_jobs - returns all finished jobs
*
* RESULT
* 0 ok
* -1 got inconsistent data
******************************************************************************/
static int dispatch_jobs(sge_evc_class_t *evc, scheduler_all_data_t *lists, order_t *orders,
lList **splitted_job_lists[])
{
lList *user_list=NULL, *group_list=NULL;
lListElem *orig_job, *cat=NULL;
lList *none_avail_queues = NULL;
lList *consumable_load_list = NULL;
sched_prof_t pi;
u_long32 queue_sort_method;
u_long32 maxujobs;
lList *job_load_adjustments = NULL;
double total_running_job_tickets=0;
int nreservation = 0;
int fast_runs = 0; /* sequential jobs */
int fast_soft_runs = 0; /* sequential jobs with soft requests */
int pe_runs = 0; /* pe jobs */
int pe_soft_runs = 0; /* pe jobs with soft requests */
int global_lc = 0;
int sort_hostlist = 1; /* hostlist has to be sorted. Info returned by select_assign_debit */
/* e.g. if load correction was computed */
int nr_pending_jobs=0;
int max_reserve = sconf_get_max_reservations();
bool is_schedule_based = (max_reserve > 0) ? true: false;
u_long32 now = sge_get_gmt();
DENTER(TOP_LAYER, "dispatch_jobs");
queue_sort_method = sconf_get_queue_sort_method();
maxujobs = sconf_get_maxujobs();
job_load_adjustments = sconf_get_job_load_adjustments();
sconf_set_host_order_changed(false);
/*---------------------------------------------------------------------
* LOAD ADJUSTMENT
*
* Load sensors report load delayed. So we have to increase the load
* of an exechost for each job started before load adjustment decay time.
* load_adjustment_decay_time is a configuration value.
*---------------------------------------------------------------------*/
{
u_long32 decay_time = sconf_get_load_adjustment_decay_time();
if ( decay_time ) {
correct_load(*(splitted_job_lists[SPLIT_RUNNING]),
lists->queue_list,
lists->host_list,
decay_time, evc->monitor_next_run);
/* is there a "global" load value in the job_load_adjustments?
if so this will make it necessary to check load thresholds
of each queue after each dispatched job */
{
lListElem *gep, *lcep;
if ((gep = host_list_locate(lists->host_list, "global"))) {
for_each (lcep, job_load_adjustments) {
const char *attr = lGetString(lcep, CE_name);
if (lGetSubStr(gep, HL_name, attr, EH_load_list)) {
DPRINTF(("GLOBAL LOAD CORRECTION \"%s\"\n", attr));
global_lc = 1;
break;
}
}
}
}
}
}
sconf_set_global_load_correction((global_lc != 0) ? true : false);
if (max_reserve != 0 || lGetNumberOfElem(lists->ar_list) > 0) {
lListElem *dis_queue_elem = lFirst(lists->dis_queue_list);
/*----------------------------------------------------------------------
* ENSURE RUNNING JOBS ARE REFLECTED IN PER RESOURCE SCHEDULE
*---------------------------------------------------------------------*/
if (dis_queue_elem != NULL) {
lAppendList(lists->queue_list, lists->dis_queue_list);
}
prepare_resource_schedules(*(splitted_job_lists[SPLIT_RUNNING]),
*(splitted_job_lists[SPLIT_SUSPENDED]),
lists->pe_list, lists->host_list, lists->queue_list,
lists->rqs_list, lists->centry_list, lists->acl_list,
lists->hgrp_list, lists->ar_list, true, now);
if (dis_queue_elem != NULL) {
lDechainList(lists->queue_list, &(lists->dis_queue_list), dis_queue_elem);
}
}
/*---------------------------------------------------------------------
* CAPACITY CORRECTION
*---------------------------------------------------------------------*/
correct_capacities(lists->host_list, lists->centry_list);
/*---------------------------------------------------------------------
* KEEP SUSPEND THRESHOLD QUEUES
*---------------------------------------------------------------------*/
if (sge_split_queue_load(
evc->monitor_next_run,
&(lists->queue_list), /* queue list */
&none_avail_queues, /* list of queues in suspend alarm state */
lists->host_list,
lists->centry_list,
job_load_adjustments,
NULL, false, false,
QU_suspend_thresholds)) {
lFreeList(&none_avail_queues);
lFreeList(&job_load_adjustments);
DPRINTF(("couldn't split queue list with regard to suspend thresholds\n"));
DRETURN(-1);
}
unsuspend_job_in_queues(lists->queue_list,
*(splitted_job_lists[SPLIT_SUSPENDED]),
orders);
suspend_job_in_queues(none_avail_queues,
*(splitted_job_lists[SPLIT_RUNNING]),
orders);
lFreeList(&none_avail_queues);
/*---------------------------------------------------------------------
* FILTER QUEUES
*---------------------------------------------------------------------*/
/* split queues into overloaded and non-overloaded queues */
if (sge_split_queue_load(evc->monitor_next_run, &(lists->queue_list), NULL,
lists->host_list, lists->centry_list, job_load_adjustments,
NULL, false, true, QU_load_thresholds)) {
lFreeList(&job_load_adjustments);
DPRINTF(("couldn't split queue list concerning load\n"));
DRETURN(-1);
}
/* remove cal_disabled queues - needed them for implementing suspend thresholds */
if (sge_split_cal_disabled(evc->monitor_next_run, &(lists->queue_list), &lists->dis_queue_list)) {
DPRINTF(("couldn't split queue list concerning cal_disabled state\n"));
lFreeList(&job_load_adjustments);
DRETURN(-1);
}
/* trash disabled queues - needed them for implementing suspend thresholds */
if (sge_split_disabled(evc->monitor_next_run, &(lists->queue_list), &none_avail_queues)) {
DPRINTF(("couldn't split queue list concerning disabled state\n"));
lFreeList(&none_avail_queues);
lFreeList(&job_load_adjustments);
DRETURN(-1);
}
lFreeList(&none_avail_queues);
if (sge_split_queue_slots_free(evc->monitor_next_run, &(lists->queue_list), &none_avail_queues)) {
DPRINTF(("couldn't split queue list concerning free slots\n"));
lFreeList(&none_avail_queues);
lFreeList(&job_load_adjustments);
DRETURN(-1);
}
if (lists->dis_queue_list != NULL) {
lAddList(lists->dis_queue_list, &none_avail_queues);
} else {
lists->dis_queue_list = none_avail_queues;
none_avail_queues = NULL;
}
/*---------------------------------------------------------------------
* FILTER JOBS
*---------------------------------------------------------------------*/
DPRINTF(("STARTING PASS 1 WITH %d PENDING JOBS\n",
lGetNumberOfElem(*(splitted_job_lists[SPLIT_PENDING]))));
user_list_init_jc(&user_list, splitted_job_lists);
nr_pending_jobs = lGetNumberOfElem(*(splitted_job_lists[SPLIT_PENDING]));
DPRINTF(("STARTING PASS 2 WITH %d PENDING JOBS\n",nr_pending_jobs ));
/*--------------------------------------------------------------------
* CALL SCHEDULER TO CALCULATE TICKETS FOR EACH JOB
*------------------------------------------------------------------*/
{
int ret;
PROF_START_MEASUREMENT(SGE_PROF_CUSTOM1);
ret = sgeee_scheduler(lists,
*(splitted_job_lists[SPLIT_RUNNING]),
*(splitted_job_lists[SPLIT_FINISHED]),
*(splitted_job_lists[SPLIT_PENDING]),
orders);
sge_schedd_send_orders(evc->get_gdi_ctx(evc), orders, &(orders->configOrderList), NULL, "A: config orders");
sge_schedd_send_orders(evc->get_gdi_ctx(evc), orders, &(orders->jobStartOrderList), NULL, "A: job start orders");
sge_schedd_send_orders(evc->get_gdi_ctx(evc), orders, &(orders->pendingOrderList), NULL, "A: pending ticket orders");
if (prof_is_active(SGE_PROF_CUSTOM1)) {
prof_stop_measurement(SGE_PROF_CUSTOM1, NULL);
PROFILING((SGE_EVENT, "PROF: job-order calculation took %.3f s",
prof_get_measurement_wallclock(SGE_PROF_CUSTOM1, true, NULL)));
}
if (ret != 0) {
lFreeList(&user_list);
lFreeList(&group_list);
lFreeList(&job_load_adjustments);
DRETURN(-1);
}
}
if ( ((max_reserve == 0) && (lGetNumberOfElem(lists->queue_list) == 0)) || /* no reservation and no queues avail */
((lGetNumberOfElem(lists->queue_list) == 0) && (lGetNumberOfElem(lists->dis_queue_list) == 0))) { /* reservation and no queues avail */
DPRINTF(("queues dropped because of overload or full: ALL\n"));
schedd_mes_add_global(NULL, evc->monitor_next_run, SCHEDD_INFO_ALLALARMOVERLOADED_);
lFreeList(&user_list);
lFreeList(&group_list);
lFreeList(&job_load_adjustments);
DRETURN(0);
}
job_lists_split_with_reference_to_max_running(evc->monitor_next_run, splitted_job_lists,
&user_list,
NULL,
maxujobs);
nr_pending_jobs = lGetNumberOfElem(*(splitted_job_lists[SPLIT_PENDING]));
if (nr_pending_jobs == 0) {
/* no jobs to schedule */
schedd_log(MSG_SCHEDD_MON_NOPENDJOBSTOPERFORMSCHEDULINGON, NULL, evc->monitor_next_run);
lFreeList(&user_list);
lFreeList(&group_list);
lFreeList(&job_load_adjustments);
DRETURN(0);
}
/*
* Order Jobs in descending order according to tickets and
* then job number
*/
PROF_START_MEASUREMENT(SGE_PROF_CUSTOM3);
sgeee_sort_jobs(splitted_job_lists[SPLIT_PENDING]);
if (prof_is_active(SGE_PROF_CUSTOM3)) {
prof_stop_measurement(SGE_PROF_CUSTOM3, NULL);
PROFILING((SGE_EVENT, "PROF: job sorting took %.3f s",
prof_get_measurement_wallclock(SGE_PROF_CUSTOM3, false, NULL)));
}
/*---------------------------------------------------------------------
* SORT HOSTS
*---------------------------------------------------------------------*/
/*
there are two possibilities for SGE administrators
selecting queues:
sort by seq_no
the sequence number from configuration is used for sorting
sort by load (using a load formula)
the least loaded queue gets filled first
to do this we sort the hosts using the load formula
because there may be more queues than hosts and
the queue load is identically to the host load
*/
switch (queue_sort_method) {
case QSM_LOAD:
case QSM_SEQNUM:
default:
DPRINTF(("sorting hosts by load\n"));
sort_host_list(lists->host_list, lists->centry_list);
break;
}
/* generate a consumable load list structure. It stores which queues
are using consumables in their load threshold. */
sge_create_load_list(lists->queue_list, lists->host_list, lists->centry_list,
&consumable_load_list);
/*---------------------------------------------------------------------
* DISPATCH JOBS TO QUEUES
*---------------------------------------------------------------------*/
PROF_START_MEASUREMENT(SGE_PROF_CUSTOM4);
/*
* loop over the jobs that are left in priority order
*/
{
bool is_immediate_array_job = false;
bool do_prof = prof_is_active(SGE_PROF_CUSTOM4);
struct timeval tnow, later;
double time;
gettimeofday(&tnow, NULL);
memset(&pi, 0, sizeof(sched_prof_t));
while ( (orig_job = lFirst(*(splitted_job_lists[SPLIT_PENDING]))) != NULL) {
dispatch_t result = DISPATCH_NEVER_CAT;
u_long32 job_id;
bool is_pjob_resort = false;
bool is_reserve;
bool is_start;
job_id = lGetUlong(orig_job, JB_job_number);
/*
* We don't try to get a reservation, if
* - reservation is generally disabled
* - maximum number of reservations is exceeded
* - it's not desired for the job
* - the job is an immediate one
* - if the job reservation is disabled by category
*/
if (nreservation < max_reserve &&
lGetBool(orig_job, JB_reserve) &&
!JOB_TYPE_IS_IMMEDIATE(lGetUlong(orig_job, JB_type)) &&
!sge_is_job_category_reservation_rejected(orig_job)) {
is_reserve = true;
} else {
is_reserve = false;
}
/* Don't need to look for a 'now' assignment if the last job
of this category got no 'now' assignement either */
is_start = (sge_is_job_category_rejected(orig_job))?false:true;
if (is_start || is_reserve) {
lListElem *job = NULL;
u_long32 ja_task_id;
lListElem *ja_task;
/* sort the hostlist */
if (sort_hostlist) {
lPSortList(lists->host_list, "%I+", EH_sort_value);
sort_hostlist = 0;
sconf_set_host_order_changed(true);
} else {
sconf_set_host_order_changed(false);
}
is_immediate_array_job = (is_immediate_array_job ||
(JOB_TYPE_IS_ARRAY(lGetUlong(orig_job, JB_type)) &&
JOB_TYPE_IS_IMMEDIATE(lGetUlong(orig_job, JB_type)))) ? true : false;
if ((job = lCopyElem(orig_job)) == NULL) {
break;
}
if (job_get_next_task(job, &ja_task, &ja_task_id) != 0) {
DPRINTF(("Found job "sge_u32" with no job array tasks\n", job_id));
} else {
DPRINTF(("Found pending job "sge_u32"."sge_u32". Try %sto start and %sto reserve\n",
job_id, ja_task_id, is_start?"":"not ", is_reserve?"":"not "));
DPRINTF(("-----------------------------------------\n"));
result = select_assign_debit(
&(lists->queue_list),
&(lists->dis_queue_list),
job, ja_task,
lists->pe_list,
lists->ckpt_list,
lists->centry_list,
lists->host_list,
lists->acl_list,
&user_list,
&group_list,
orders,
&total_running_job_tickets,
&sort_hostlist,
is_start,
is_reserve,
is_schedule_based,
&consumable_load_list,
lists->hgrp_list,
lists->rqs_list,
lists->ar_list,
do_prof?&pi:NULL,
evc->monitor_next_run,
now);
}
lFreeElem(&job);
}
/* collect profiling data */
switch (sconf_get_last_dispatch_type()) {
case DISPATCH_TYPE_FAST : fast_runs++;
break;
case DISPATCH_TYPE_FAST_SOFT_REQ : fast_soft_runs++;
break;
case DISPATCH_TYPE_PE : pe_runs++;
break;
case DISPATCH_TYPE_PE_SOFT_REQ: pe_soft_runs++;
break;
}
switch (result) {
case DISPATCH_OK: /* now assignment */
{
char *owner = strdup(lGetString(orig_job, JB_owner));
/* here the job got an assignment that will cause it be started immediately */
DPRINTF(("Found NOW assignment\n"));
schedd_mes_rollback();
if (job_count_pending_tasks(orig_job, true) < 2)
is_pjob_resort = false;
else
is_pjob_resort = true;
job_move_first_pending_to_running(&orig_job, splitted_job_lists);
/*
* after sge_move_to_running() orig_job can be removed and job
* should be used instead
*/
orig_job = NULL;
/*
* drop idle jobs that exceed maxujobs limit
* should be done after resort_job() 'cause job is referenced
*/
job_lists_split_with_reference_to_max_running(evc->monitor_next_run, splitted_job_lists,
&user_list,
owner,
maxujobs);
sge_free(&owner);
/* do not send job start orders inbetween, if we have an immediate array
job. */
if (!is_immediate_array_job && (lGetNumberOfElem(orders->jobStartOrderList) > 10)) {
gettimeofday(&later, NULL);
time = later.tv_usec - tnow.tv_usec;
time = (time / 1000000.0) + (later.tv_sec - tnow.tv_sec);
if (time > 0.5) {
lList *answer_list = NULL;
sge_schedd_send_orders(evc->get_gdi_ctx(evc), orders, &(orders->configOrderList), &answer_list, "B: config orders");
sge_schedd_send_orders(evc->get_gdi_ctx(evc), orders, &(orders->jobStartOrderList), &answer_list, "B: job start orders");
sge_schedd_send_orders(evc->get_gdi_ctx(evc), orders, &(orders->pendingOrderList), &answer_list, "B: pending ticket orders");
answer_list_output(&answer_list);
gettimeofday(&tnow, NULL);
}
}
}
break;
case DISPATCH_NOT_AT_TIME: /* reservation */
/* here the job got a reservation but can't be started now */
DPRINTF(("Got a RESERVATION\n"));
nreservation++;
/* mark the category as rejected */
if ((cat = lGetRef(orig_job, JB_category))) {
DPRINTF(("SKIP JOB (R)" sge_u32 " of category '%s' (rc: "sge_u32 ")\n", job_id,
lGetString(cat, CT_str), lGetUlong(cat, CT_refcount)));
sge_reject_category(cat, false);
}
/* here no reservation was made for a job that couldn't be started now
or the job is not dispatchable at all */
schedd_mes_commit(*(splitted_job_lists[SPLIT_PENDING]), 0, cat);
/* Remove pending job if there are no pending tasks anymore (including the current) */
if (job_count_pending_tasks(orig_job, true) < 2 || (nreservation >= max_reserve )) {
lDechainElem(*(splitted_job_lists[SPLIT_PENDING]), orig_job);
if ((*(splitted_job_lists[SPLIT_NOT_STARTED])) == NULL) {
*(splitted_job_lists[SPLIT_NOT_STARTED]) = lCreateList("", lGetListDescr(*(splitted_job_lists[SPLIT_PENDING])));
}
lAppendElem(*(splitted_job_lists[SPLIT_NOT_STARTED]), orig_job);
is_pjob_resort = false;
} else {
u_long32 ja_task_number = range_list_get_first_id(lGetList(orig_job, JB_ja_n_h_ids), NULL);
object_delete_range_id(orig_job, NULL, JB_ja_n_h_ids, ja_task_number);
is_pjob_resort = true;
}
orig_job = NULL;
break;
case DISPATCH_NEVER_CAT: /* never this category */
/* before deleting the element mark the category as rejected */
if ((cat = lGetRef(orig_job, JB_category))) {
DPRINTF(("SKIP JOB (N)" sge_u32 " of category '%s' (rc: "sge_u32 ")\n", job_id,
lGetString(cat, CT_str), lGetUlong(cat, CT_refcount)));
sge_reject_category(cat, is_reserve);
}
/* fall through to DISPATCH_NEVER_JOB */
case DISPATCH_NEVER_JOB: /* never this particular job */
DPRINTF(("SKIP JOB (J)" sge_u32 "\n", job_id));
/* here no reservation was made for a job that couldn't be started now
or the job is not dispatchable at all */
schedd_mes_commit(*(splitted_job_lists[SPLIT_PENDING]), 0, cat);
if (JOB_TYPE_IS_IMMEDIATE(lGetUlong(orig_job, JB_type))) { /* immediate job */
lCondition *where = NULL;
lListElem *rjob;
/* remove job from pending list and generate remove immediate orders
for all tasks including alreaedy assigned ones */
where = lWhere("%T(%I==%u)", JB_Type, JB_job_number, job_id);
remove_immediate_job(*(splitted_job_lists[SPLIT_PENDING]), orig_job, orders, 0);
if ((rjob = lFindFirst(*(splitted_job_lists[SPLIT_RUNNING]), where)) != NULL)
remove_immediate_job(*(splitted_job_lists[SPLIT_RUNNING]), rjob, orders, 1);
lFreeWhere(&where);
} else {
/* prevent that we get the same job next time again */
lDechainElem(*(splitted_job_lists[SPLIT_PENDING]),orig_job);
if ((*(splitted_job_lists[SPLIT_NOT_STARTED])) == NULL) {
*(splitted_job_lists[SPLIT_NOT_STARTED]) = lCreateList("", lGetListDescr(*(splitted_job_lists[SPLIT_PENDING])));
}
lAppendElem(*(splitted_job_lists[SPLIT_NOT_STARTED]), orig_job);
}
orig_job = NULL;
break;
case DISPATCH_MISSING_ATTR : /* should not happen */
DPRINTF(("DISPATCH_MISSING_ATTR\n"));
default:
break;
}
/*------------------------------------------------------------------
* If we dispatch a job sub-task and the job has more
* sub-tasks, then the job is still first in the job list.
* We need to remove and reinsert the job back into the sorted job
* list in case another job is higher priority (i.e. has more tickets)
*------------------------------------------------------------------*/
/* no more free queues - then exit */
if (lGetNumberOfElem(lists->queue_list) == 0) {
break;
}
if (is_pjob_resort) {
sgeee_resort_pending_jobs(splitted_job_lists[SPLIT_PENDING]);
}
} /* end of while */
}
if (prof_is_active(SGE_PROF_CUSTOM4)) {
static bool first_time = true;
prof_stop_measurement(SGE_PROF_CUSTOM4, NULL);
PROFILING((SGE_EVENT, "PROF: job dispatching took %.3f s (%d fast, %d fast_soft, %d pe, %d pe_soft, %d res)",
prof_get_measurement_wallclock(SGE_PROF_CUSTOM4, false, NULL),
fast_runs,
fast_soft_runs,
pe_runs,
pe_soft_runs,
nreservation));
if (first_time) {
PROFILING((SGE_EVENT, "PROF: parallel matching %12.12s %12.12s %12.12s %12.12s %12.12s %12.12s %12.12s",
"global", "rqs", "cqstatic", "hstatic",
"qstatic", "hdynamic", "qdyn"));
PROFILING((SGE_EVENT, "PROF: sequential matching %12.12s %12.12s %12.12s %12.12s %12.12s %12.12s %12.12s",
"global", "rqs", "cqstatic", "hstatic",
"qstatic", "hdynamic", "qdyn"));
first_time = false;
}
PROFILING((SGE_EVENT, "PROF: parallel matching %12d %12d %12d %12d %12d %12d %12d",
pi.par_global, pi.par_rqs, pi.par_cqstat, pi.par_hstat,
pi.par_qstat, pi.par_hdyn, pi.par_qdyn));
PROFILING((SGE_EVENT, "PROF: sequential matching %12d %12d %12d %12d %12d %12d %12d",
pi.seq_global, pi.seq_rqs, pi.seq_cqstat, pi.seq_hstat,
pi.seq_qstat, pi.seq_hdyn, pi.seq_qdyn));
}
lFreeList(&user_list);
lFreeList(&group_list);
sge_free_load_list(&consumable_load_list);
lFreeList(&job_load_adjustments);
/* reset last dispatch type. Indicator for sorting queues */
sconf_set_last_dispatch_type(DISPATCH_TYPE_NONE);
DRETURN(0);
}
/****** schedd/scheduler/select_assign_debit() ********************************
* NAME
* select_assign_debit()
*
* FUNCTION
* Selects resources for 'job', add appropriate order to the 'orders_list',
* debits resources of this job for the next dispatch and sort out no longer
* available queues from the 'queue_list'. If no assignment can be made and
* reservation scheduling is enabled a reservation assignment is made if
* possible. This is done to prevent lower prior jobs eating up resources
* and thus preventing this job from being started at the earliest point in
* time.
*
* INPUTS
* bool is_start - try to find a now assignment
* bool is_reserve - try to find a reservation assignment
*
* RESULT
* int - 0 ok got an assignment now
* 1 got a reservation assignment
* -1 will never get an assignment for that category
* -2 will never get an assignment for that particular job
******************************************************************************/
static dispatch_t
select_assign_debit(lList **queue_list, lList **dis_queue_list, lListElem *job, lListElem *ja_task,
lList *pe_list, lList *ckpt_list, lList *centry_list, lList *host_list, lList *acl_list,
lList **user_list, lList **group_list, order_t *orders, double *total_running_job_tickets,
int *sort_hostlist, bool is_start, bool is_reserve, bool is_schedule_based, lList **load_list, lList *hgrp_list,
lList *rqs_list, lList *ar_list, sched_prof_t *pi, bool monitor_next_run, u_long32 now)
{
lListElem *granted_el;
dispatch_t result = DISPATCH_NOT_AT_TIME;
const char *pe_name, *ckpt_name;
sge_assignment_t a = SGE_ASSIGNMENT_INIT;
bool is_computed_reservation = false;
DENTER(TOP_LAYER, "select_assign_debit");
assignment_init(&a, job, ja_task, true);
a.queue_list = *queue_list;
a.host_list = host_list;
a.centry_list = centry_list;
a.acl_list = acl_list;
a.hgrp_list = hgrp_list;
a.rqs_list = rqs_list;
a.ar_list = ar_list;
a.pi = pi;
a.monitor_next_run = monitor_next_run;
a.now = now;
/* in reservation scheduling mode a non-zero duration always must be defined */
job_get_duration(&a.duration, job);
if (is_reserve) {
if (*queue_list == NULL) {
*queue_list = lCreateList("temp queue", lGetListDescr(*dis_queue_list));
a.queue_list = *queue_list;
}
a.care_reservation = is_computed_reservation = true;
lAppendList(*queue_list, *dis_queue_list);
}
a.duration = duration_add_offset(a.duration, sconf_get_duration_offset());
a.is_schedule_based = is_schedule_based;
/*------------------------------------------------------------------
* seek for ckpt interface definition requested by the job
* in case of ckpt jobs
*------------------------------------------------------------------*/
if ((ckpt_name = lGetString(job, JB_checkpoint_name))) {
a.ckpt = ckpt_list_locate(ckpt_list, ckpt_name);
if (!a.ckpt) {
schedd_mes_add(a.monitor_alpp, a.monitor_next_run, a.job_id, SCHEDD_INFO_CKPTNOTFOUND_);
assignment_release(&a);
DRETURN(DISPATCH_NEVER_CAT);
}
}
/*------------------------------------------------------------------
* if a global host pointer exists it is needed everywhere
* down in the assignment code (tired of searching/passing it).
*------------------------------------------------------------------*/
a.gep = host_list_locate(host_list, SGE_GLOBAL_NAME);
if ((pe_name = lGetString(job, JB_pe)) != NULL) {
/*------------------------------------------------------------------
* SELECT POSSIBLE QUEUE(S) FOR THIS PE JOB
*------------------------------------------------------------------*/
if (is_start) {
DPRINTF(("looking for immediate parallel assignment for job "
sge_U32CFormat"."sge_U32CFormat" requesting pe \"%s\" duration "sge_U32CFormat"\n",
a.job_id, a.ja_task_id, pe_name, a.duration));
a.start = DISPATCH_TIME_NOW;
a.is_reservation = false;
result = sge_select_parallel_environment(&a, pe_list);
}
if (result == DISPATCH_NOT_AT_TIME) {
if (is_reserve) {
DPRINTF(("looking for parallel reservation for job "
sge_U32CFormat"."sge_U32CFormat" requesting pe \"%s\" duration "sge_U32CFormat"\n",
a.job_id, a.ja_task_id, pe_name, a.duration));
is_computed_reservation = true;
a.start = DISPATCH_TIME_QUEUE_END;
a.is_reservation = true;
assignment_clear_cache(&a);
result = sge_select_parallel_environment(&a, pe_list);
if (result == DISPATCH_OK) {
result = DISPATCH_NOT_AT_TIME; /* this job got a reservation */
}
} else {
result = DISPATCH_NEVER_CAT;
}
}
} else {
/*------------------------------------------------------------------
* SELECT POSSIBLE QUEUE(S) FOR THIS SEQUENTIAL JOB
*------------------------------------------------------------------*/
a.slots = 1;
if (is_start) {
DPRINTF(("looking for immediate sequential assignment for job "
sge_U32CFormat"."sge_U32CFormat" duration "sge_U32CFormat"\n", a.job_id,
a.ja_task_id, a.duration));
a.start = DISPATCH_TIME_NOW;
a.is_reservation = false;
result = sge_sequential_assignment(&a);
DPRINTF(("sge_sequential_assignment(immediate) returned %d\n", result));
}
/* try to reserve for jobs that can be dispatched with the current configuration */
if (result == DISPATCH_NOT_AT_TIME) {
if (is_reserve) {
DPRINTF(("looking for sequential reservation for job "
sge_U32CFormat"."sge_U32CFormat" duration "sge_U32CFormat"\n",
a.job_id, a.ja_task_id, a.duration));
a.start = DISPATCH_TIME_QUEUE_END;
a.is_reservation = true;
assignment_clear_cache(&a);
result = sge_sequential_assignment(&a);
if (result == DISPATCH_OK) {
result = DISPATCH_NOT_AT_TIME; /* this job got a reservation */
}
} else {
result = DISPATCH_NEVER_CAT;
}
}
}
/*------------------------------------------------------------------
* BUILD ORDERS LIST THAT TRANSFERS OUR DECISIONS TO QMASTER
*------------------------------------------------------------------*/
if (result == DISPATCH_NEVER_CAT || result == DISPATCH_NEVER_JOB) {
/* failed scheduling this job */
if (JOB_TYPE_IS_IMMEDIATE(lGetUlong(job, JB_type))) { /* immediate job */
/* generate order for removing it at qmaster */
order_remove_immediate(job, ja_task, orders);
}
assignment_release(&a);
DRETURN(result);
}
if (result == DISPATCH_OK) {
/* in SGEEE we must account for job tickets on hosts due to parallel jobs */
{
double job_tickets_per_slot;
double job_ftickets_per_slot;
double job_otickets_per_slot;
double job_stickets_per_slot;
job_tickets_per_slot =(double)lGetDouble(ja_task, JAT_tix)/a.slots;
job_ftickets_per_slot =(double)lGetDouble(ja_task, JAT_fticket)/a.slots;
job_otickets_per_slot =(double)lGetDouble(ja_task, JAT_oticket)/a.slots;
job_stickets_per_slot =(double)lGetDouble(ja_task, JAT_sticket)/a.slots;
for_each(granted_el, a.gdil) {
u_long32 granted_slots = lGetUlong(granted_el, JG_slots);
lSetDouble(granted_el, JG_ticket, job_tickets_per_slot * granted_slots);
lSetDouble(granted_el, JG_oticket, job_otickets_per_slot * granted_slots);
lSetDouble(granted_el, JG_fticket, job_ftickets_per_slot * granted_slots);
lSetDouble(granted_el, JG_sticket, job_stickets_per_slot * granted_slots);
}
*total_running_job_tickets += lGetDouble(ja_task, JAT_tix);
}
if (a.pe) {
DPRINTF(("got PE %s\n", lGetString(a.pe, PE_name)));
lSetString(ja_task, JAT_granted_pe, lGetString(a.pe, PE_name));
}
orders->jobStartOrderList = sge_create_orders(orders->jobStartOrderList, ORT_start_job,
job, ja_task, a.gdil, true);
/* increase the number of jobs a user/group has running */
sge_inc_jc(user_list, lGetString(job, JB_owner), 1);
}
/*------------------------------------------------------------------
* DEBIT JOBS RESOURCES IN DIFFERENT OBJECTS
*
* We have not enough time to wait till qmaster updates our lists.
* So we do the work by ourselfs for being able to send more than
* one order per scheduling epoch.
*------------------------------------------------------------------*/
/* when a job is started *now* the RUE_utilized_now must always change */
/* if jobs with reservations are ahead then we also must change the RUE_utilized */
if (result == DISPATCH_OK) {
if (a.start == DISPATCH_TIME_NOW) {
a.start = now;
}
debit_scheduled_job(&a, sort_hostlist, orders, true,
SCHEDULING_RECORD_ENTRY_TYPE_STARTING, true);
} else {
debit_scheduled_job(&a, sort_hostlist, orders, false,
SCHEDULING_RECORD_ENTRY_TYPE_RESERVING, true);
}
/*------------------------------------------------------------------
* REMOVE QUEUES THAT ARE NO LONGER USEFUL FOR FURTHER SCHEDULING
*------------------------------------------------------------------*/
if (result == DISPATCH_OK || is_computed_reservation) {
lList *disabled_queues = NULL;
bool is_consumable_load_alarm = false;
if (*load_list == NULL) {
sge_split_suspended(monitor_next_run, queue_list, dis_queue_list);
sge_split_queue_slots_free(monitor_next_run, queue_list, dis_queue_list);
}
else {
sge_split_suspended(monitor_next_run, queue_list, &disabled_queues);
sge_split_queue_slots_free(monitor_next_run, queue_list, &disabled_queues);
sge_remove_queue_from_load_list(load_list, disabled_queues);
if (*dis_queue_list == NULL) {
*dis_queue_list = disabled_queues;
}
else {
lAddList(*dis_queue_list, &disabled_queues);
}
disabled_queues = NULL;
}
is_consumable_load_alarm = sge_load_list_alarm(monitor_next_run, *load_list, host_list,
centry_list);
/* split queues into overloaded and non-overloaded queues */
if (sge_split_queue_load(
monitor_next_run,
queue_list, /* source list */
&disabled_queues,
host_list, /* host list contains load values */
centry_list,
a.load_adjustments,
a.gdil,
is_consumable_load_alarm,
false, QU_load_thresholds)) { /* use load thresholds here */
DPRINTF(("couldn't split queue list concerning load\n"));
assignment_release(&a);
DRETURN(DISPATCH_NEVER);
}
if (*load_list != NULL) {
sge_remove_queue_from_load_list(load_list, disabled_queues);
}
if (*dis_queue_list == NULL) {
*dis_queue_list = disabled_queues;
} else {
lAddList(*dis_queue_list, &disabled_queues);
}
disabled_queues = NULL;
}
/* no longer needed - having built the order
and debited the job everywhere */
assignment_release(&a);
DRETURN(result);
}
|