File: accounting-classad-attributes.rst

package info (click to toggle)
condor 23.9.6%2Bdfsg-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 60,012 kB
  • sloc: cpp: 528,272; perl: 87,066; python: 42,650; ansic: 29,558; sh: 11,271; javascript: 3,479; ada: 2,319; java: 619; makefile: 615; xml: 613; awk: 268; yacc: 78; fortran: 54; csh: 24
file content (69 lines) | stat: -rw-r--r-- 2,677 bytes parent folder | download
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
Accounting ClassAd Attributes
=============================

The `condor_negotiator` keeps information about each submitter and group
in accounting ads that are also sent to the `condor_collector`.  Th
`condor_userprio` command queries and displays these ads.  For example,
to see the full set of raw accounting ads, run the command:

.. code-block:: console

    $ condor_userprio -l


:classad-attribute-def:`AccountingGroup`
    If this record is for an accounting group with quota, the name of the group.

:classad-attribute-def:`AccumulatedUsage`
    The total number of seconds this submitter has used since they first
    arrived in the pool.  Note this is not weighted by cpu cores -- an
    eight core job running for one hour has a usage of 3600, compare with 
    WeightedAccumulatedUsage

:classad-attribute-def:`BeginUsageTime`
    The Unix epoch time in seconds when this user claimed resources in the system.
    This is persistent and survives reboots and HTCondor upgrades.

:classad-attribute-def:`ConfigQuota`
    If this record is for an accounting group with quota, the amount of quota
    statically configured.

:classad-attribute-def:`IsAccountingGroup`
    A boolean which is true if this record represents an accounting group

:classad-attribute-def:`LastUsageTime`  
    The unix epoch time, in seconds, when this submitter last had
    claimed resources.

:classad-attribute-def:`Name`
    The fully qualified name of the user or accounting group. It will be
    of the form ``name@submit.domain``.

:classad-attribute-def:`Priority`
    The current effective priority of this user.

:classad-attribute-def:`PriorityFactor`
    The priority factor of this user.

:classad-attribute-def:`ResourcesUsed`
    The current number of slots claimed.

:classad-attribute-def:`SubmitterShare`
    When the negotiator computes the fair share of the pool that
    each user should get, assuming they have infinite jobs and every job
    matches every slot, the SubmitterShare is the fraction of the pool
    this user should get.  A floating point number from 0 to 1.0.

:classad-attribute-def:`SubmitterLimit`
    When the negotiator computes the fair share of the pool that
    each user should get, assuming they have infinite jobs and every job
    matches every slot, the SubmitterLimit is the absolute number of cores
    this user should get.

:classad-attribute-def:`WeightedAccumulatedUsage`
    The total amount of core-seconds used by this user since
    they arrived in the system, assuming ``SLOT_WEIGHT = CPUS``

:classad-attribute-def:`WeightedResourcesUsed`
    A total number of requested cores across all running jobs from the
    submitter.