1CONDOR_RESCHEDULE(1) HTCondor Manual CONDOR_RESCHEDULE(1)
2
3
4
6 condor_reschedule - HTCondor Manual
7
8 Update scheduling information to the central manager
9
10
11
13 condor_reschedule [-help | -version ]
14
15 condor_reschedule [-debug ] [-pool centralmanagerhostname[:portnumber]]
16 [ -name hostname | hostname | -addr "<a.b.c.d:port>" | "<a.b.c.d:port>"
17 | -constraint expression | -all ]
18
20 condor_reschedule updates the information about a set of machines' re‐
21 sources and jobs to the central manager. This command is used to force
22 an update before viewing the current status of a machine. Viewing the
23 status of a machine is done with the condor_status command. con‐
24 dor_reschedule also starts a new negotiation cycle between resource
25 owners and resource providers on the central managers, so that jobs can
26 be matched with machines right away. This can be useful in situations
27 where the time between negotiation cycles is somewhat long, and an ad‐
28 ministrator wants to see if a job in the queue will get matched without
29 waiting for the next negotiation cycle.
30
31 A new negotiation cycle cannot occur more frequently than every 20 sec‐
32 onds. Requests for new negotiation cycle within that 20 second window
33 will be deferred until 20 seconds have passed since that last cycle.
34
36 -help Display usage information
37
38 -version
39 Display version information
40
41 -debug Causes debugging information to be sent to stderr, based on
42 the value of the configuration variable TOOL_DEBUG.
43
44 -pool centralmanagerhostname[:portnumber]
45 Specify a pool by giving the central manager's host name and
46 an optional port number
47
48 -name hostname
49 Send the command to a machine identified by hostname
50
51 hostname
52 Send the command to a machine identified by hostname
53
54 -addr "<a.b.c.d:port>"
55 Send the command to a machine's master located at
56 "<a.b.c.d:port>"
57
58 "<a.b.c.d:port>"
59 Send the command to a machine located at "<a.b.c.d:port>"
60
61 -constraint expression
62 Apply this command only to machines matching the given Clas‐
63 sAd expression
64
65 -all Send the command to all machines in the pool
66
68 condor_reschedule will exit with a status value of 0 (zero) upon suc‐
69 cess, and it will exit with the value 1 (one) upon failure.
70
72 To update the information on three named machines:
73
74 $ condor_reschedule robin cardinal bluejay
75
76 To reschedule on a machine within a pool other than the local pool, use
77 the -pool option. The argument is the name of the central manager for
78 the pool. Note that one or more machines within the pool must be speci‐
79 fied as the targets for the command. This command reschedules the sin‐
80 gle machine named cae17 within the pool of machines that has con‐
81 dor.cae.wisc.edu as its central manager:
82
83 $ condor_reschedule -pool condor.cae.wisc.edu -name cae17
84
86 HTCondor Team
87
89 1990-2023, Center for High Throughput Computing, Computer Sciences De‐
90 partment, University of Wisconsin-Madison, Madison, WI, US. Licensed
91 under the Apache License, Version 2.0.
92
93
94
95
96 Oct 02, 2023 CONDOR_RESCHEDULE(1)