This file is indexed.

/usr/share/doc/condor/html/8_3_Quill.html is in condor-doc 7.8.2~dfsg.1-1+deb7u3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<!--Converted with LaTeX2HTML 2008 (1.71)
original version by:  Nikos Drakos, CBLU, University of Leeds
* revised and updated by:  Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
  Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>8.3 Quill</TITLE>
<META NAME="description" CONTENT="8.3 Quill">
<META NAME="keywords" CONTENT="ref">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">

<META NAME="Generator" CONTENT="LaTeX2HTML v2008">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">

<LINK REL="STYLESHEET" HREF="ref.css">

<LINK REL="next" HREF="8_4_CondorView_Client.html">
<LINK REL="previous" HREF="8_2_Using_Condor.html">
<LINK REL="up" HREF="8_Contrib_Source.html">
<LINK REL="next" HREF="8_4_CondorView_Client.html">
</HEAD>

<BODY  BGCOLOR=#FFFFFF >

<DIV CLASS="navigation"><!--Navigation Panel-->
<A NAME="tex2html2455"
  HREF="8_4_CondorView_Client.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
<A NAME="tex2html2449"
  HREF="8_Contrib_Source.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
<A NAME="tex2html2443"
  HREF="8_2_Using_Condor.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
<A NAME="tex2html2451"
  HREF="Contents.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A> 
<A NAME="tex2html2453"
  HREF="Index.html">
<IMG WIDTH="43" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="index" SRC="index.png"></A> 
<BR>
<B> Next:</B> <A NAME="tex2html2456"
  HREF="8_4_CondorView_Client.html">8.4 The CondorView Client</A>
<B> Up:</B> <A NAME="tex2html2450"
  HREF="8_Contrib_Source.html">8. Contrib and Source</A>
<B> Previous:</B> <A NAME="tex2html2444"
  HREF="8_2_Using_Condor.html">8.2 Using Condor with</A>
 &nbsp; <B>  <A NAME="tex2html2452"
  HREF="Contents.html">Contents</A></B> 
 &nbsp; <B>  <A NAME="tex2html2454"
  HREF="Index.html">Index</A></B> 
<BR>
<BR></DIV>
<!--End of Navigation Panel-->
<!--Table of Child-Links-->
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>

<UL CLASS="ChildLinks">
<LI><A NAME="tex2html2457"
  HREF="8_3_Quill.html#SECTION00931000000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">1</SPAN> Installation and Configuration</A>
<UL>
<LI><A NAME="tex2html2458"
  HREF="8_3_Quill.html#SECTION00931100000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">1</SPAN> Configuration Variables</A>
</UL>
<BR>
<LI><A NAME="tex2html2459"
  HREF="8_3_Quill.html#SECTION00932000000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">2</SPAN> Four Usage Examples</A>
<LI><A NAME="tex2html2460"
  HREF="8_3_Quill.html#SECTION00933000000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">3</SPAN> Quill and Security</A>
<LI><A NAME="tex2html2461"
  HREF="8_3_Quill.html#SECTION00934000000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN> Quill and Its RDBMS Schema</A>
<UL>
<LI><A NAME="tex2html2462"
  HREF="8_3_Quill.html#SECTION00934100000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">1</SPAN> Administrative Tables</A>
<LI><A NAME="tex2html2463"
  HREF="8_3_Quill.html#SECTION00934200000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">2</SPAN> Daemon Tables</A>
<LI><A NAME="tex2html2464"
  HREF="8_3_Quill.html#SECTION00934300000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">3</SPAN> Files Tables</A>
<LI><A NAME="tex2html2465"
  HREF="8_3_Quill.html#SECTION00934400000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">4</SPAN> Interface Tables</A>
<LI><A NAME="tex2html2466"
  HREF="8_3_Quill.html#SECTION00934500000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">5</SPAN> Jobs Tables</A>
<LI><A NAME="tex2html2467"
  HREF="8_3_Quill.html#SECTION00934600000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">6</SPAN> Machines Tables</A>
<LI><A NAME="tex2html2468"
  HREF="8_3_Quill.html#SECTION00934700000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">7</SPAN> Matchmaking Tables</A>
<LI><A NAME="tex2html2469"
  HREF="8_3_Quill.html#SECTION00934800000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">8</SPAN> Runtime Tables</A>
<LI><A NAME="tex2html2470"
  HREF="8_3_Quill.html#SECTION00934900000000000000"><SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">9</SPAN> System Tables</A>
</UL></UL>
<!--End of Table of Child-Links-->
<HR>

<H1><A NAME="SECTION00930000000000000000"></A><A NAME="sec:Quill"></A>
<A NAME="50389"></A>
<BR>
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN> Quill
</H1>
<A NAME="50668"></A>
<A NAME="50391"></A>
<A NAME="50669"></A>
<A NAME="50393"></A>
Quill is an optional component of Condor that maintains a mirror 
of Condor operational data
in a relational database.  The <SPAN  CLASS="textit">condor_quill</SPAN> daemon updates
the data in the relation database, and the <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemon
maintains the database itself.

<P>
As of Condor version 7.5.5,
Quill is distributed only with the source code.
It is not included in the builds of Condor provided by UW,
but it is available as a feature that can be enabled by those who compile
Condor from the source code.
Find the code within the <TT>condor_contrib</TT> directory, 
in the directories <TT>condor_tt</TT> and <TT>condor_dbmsd</TT>.

<P>

<H2><A NAME="SECTION00931000000000000000"></A><A NAME="sec:Quill-Installation"></A>
<BR>
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">1</SPAN> Installation and Configuration
</H2>

<P>
Quill uses the <SPAN  CLASS="textit">PostgreSQL</SPAN> database management system.
Quill uses the <SPAN  CLASS="textit">PostgreSQL</SPAN> server as its back end
and client library, 
<SPAN  CLASS="textit">libpq</SPAN> to talk to the server.
We <SPAN  CLASS="textbf">strongly recommend</SPAN> the use of version 
8.2 or later due to its integrated facilities of certain key 
database maintenance tasks, and stronger security features.

<P>
Obtain <SPAN  CLASS="textit">PostgreSQL</SPAN> from

<P>
<A NAME="tex2html96"
  HREF="http://www.postgresql.org/ftp/source/">http://www.postgresql.org/ftp/source/</A>
<P>
Installation instructions are detailed in:
<A NAME="tex2html97"
  HREF="http://www.postgresql.org/docs/8.2/static/installation.html">http://www.postgresql.org/docs/8.2/static/installation.html</A>
<P>
Configure <SPAN  CLASS="textit">PostgreSQL</SPAN> after installation:

<P>

<OL>
<LI>Initialize the database with the <SPAN  CLASS="textit">PostgreSQL</SPAN> command 
<code>initdb</code>.

<P>
</LI>
<LI>Configure to accept TCP/IP connections.
For <SPAN  CLASS="textit">PostgreSQL</SPAN> version 8,
use the <TT>listen_addresses</TT> variable in 
<TT>postgresql.conf</TT> file as a guide.
For example,
<TT>listen_addresses = '*'</TT>
means listen on any IP interface.

<P>
</LI>
<LI>Configure automatic vacuuming.
Ensure that these variables with these defaults are
commented in and/or set properly in the 
<TT>postgresql.conf</TT> configuration file:
<PRE>
# Turn on/off automatic vacuuming
autovacuum = on

# time between autovacuum runs, in secs
autovacuum_naptime = 60

# min # of tuple updates before vacuum
autovacuum_vacuum_threshold = 1000

# min # of tuple updates before analyze
autovacuum_analyze_threshold = 500

# fraction of rel size before vacuum
autovacuum_vacuum_scale_factor = 0.4 

# fraction of rel size before analyze
autovacuum_analyze_scale_factor = 0.2

# default vacuum cost delay for 
   # autovac, -1 means use 
   # vacuum_cost_delay
autovacuum_vacuum_cost_delay = -1  

# default vacuum cost limit for 
   # autovac, -1 means use
   # vacuum_cost_limit
autovacuum_vacuum_cost_limit = -1
</PRE>

<P>
</LI>
<LI>Configure <SPAN  CLASS="textit">PostgreSQL</SPAN> to accept TCP/IP connections from 
specific hosts.
Modify the <TT>pg_hba.conf</TT> file 
(which usually resides in the <SPAN  CLASS="textit">PostgreSQL</SPAN> server's data directory).
Access is required by the <SPAN  CLASS="textit">condor_quill</SPAN> daemon,
as well as the database users
``<SPAN  CLASS="textbf">quillreader</SPAN>'' and ``<SPAN  CLASS="textbf">quillwriter</SPAN>''.
For example, to give
database users ``<SPAN  CLASS="textbf">quillreader</SPAN>'' and ``<SPAN  CLASS="textbf">quillwriter</SPAN>''
password-enabled access to all databases on current machine from any
machine in the 128.105.0.0/16 subnet, add the following:

<P>
<TABLE CELLPADDING=3>
<TR><TD ALIGN="LEFT">host</TD>
<TD ALIGN="LEFT">all</TD>
<TD ALIGN="LEFT">quillreader</TD>
<TD ALIGN="LEFT">128.105.0.0</TD>
<TD ALIGN="LEFT">255.255.0.0</TD>
<TD ALIGN="LEFT">md5</TD>
</TR>
<TR><TD ALIGN="LEFT">host</TD>
<TD ALIGN="LEFT">all</TD>
<TD ALIGN="LEFT">quillwriter</TD>
<TD ALIGN="LEFT">128.105.0.0</TD>
<TD ALIGN="LEFT">255.255.0.0</TD>
<TD ALIGN="LEFT">md5</TD>
</TR>
</TABLE>

<P>
Note that in addition to the database specified by
the configuration variable <TT>QUILL_DB_NAME</TT>,
the <SPAN  CLASS="textit">condor_quill</SPAN> daemon also needs access to the database
"template1".
In order to create the database in the first place, 
the <SPAN  CLASS="textit">condor_quill</SPAN> daemon needs to connect to the database.

<P>
</LI>
<LI>Start the <SPAN  CLASS="textit">PostgreSQL</SPAN> server service. See the
installation instructions for the appropriate method to start the service at
<A NAME="tex2html98"
  HREF="http://www.postgresql.org/docs/8.2/static/installation.html">http://www.postgresql.org/docs/8.2/static/installation.html</A>
<P>
</LI>
<LI>The <SPAN  CLASS="textit">condor_quill</SPAN> and <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemons and client tools connect
to the database as users ``<SPAN  CLASS="textbf">quillreader</SPAN>'' and 
``<SPAN  CLASS="textbf">quillwriter</SPAN>''.
These are database users, not operating system users.
The two types of users are quite different from each other.
If these database users do not exist,
add them using the 
<SPAN  CLASS="textit">createuser</SPAN> command supplied with the installation.
Assign them with appropriate passwords;
these passwords will be used by the Quill tools to connect
to the database in a secure way.
User ``<SPAN  CLASS="textbf">quillreader</SPAN>'' should not be allowed to create
more databases nor create more users.
User ``<SPAN  CLASS="textbf">quillwriter</SPAN>'' should
not be allowed to create more users,
however it should be allowed to create more databases.
The following commands create the two users
with the appropriate permissions,
and be ready to enter the corresponding passwords when prompted.

<P>
<PRE>
/path/to/postgreSQL/bin/directory/createuser quillreader \
	--no-createdb --no-createrole --pwprompt

/path/to/postgreSQL/bin/directory/createuser quillwriter \
	--createdb --no-createrole --pwprompt
</PRE>
<P>
Answer ``no'' to the question about the ability for role creation.

<P>
</LI>
<LI>Create a database for Quill to store data in
with the <code>createdb</code> command. 
Create this database with the ``<SPAN  CLASS="textbf">quillwriter</SPAN>'' user as the owner.
A sample command to do this is
<PRE>
createdb -O quillwriter quill
</PRE><code>quill</code> is the database name to use with the <TT>QUILL_DB_NAME</TT>
configuration variable.

<P>
</LI>
<LI>The <SPAN  CLASS="textit">condor_quill</SPAN> and <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemons need read and write access
to the database.
They connect as user ``<SPAN  CLASS="textbf">quillwriter</SPAN>'',
which has owner privileges to the database.
Since this gives all access to the ``<SPAN  CLASS="textbf">quillwriter</SPAN>'' user,
its password cannot be stored in a public place 
(such as in a ClassAd).
For this reason, the ``<SPAN  CLASS="textbf">quillwriter</SPAN>'' password is stored
in a file named <TT>.pgpass</TT> in the Condor spool directory.
Appropriate protections on this file guarantee secure access to the database.
This file must be created and protected by the site administrator;
if this file does not exist as and where expected, the <SPAN  CLASS="textit">condor_quill</SPAN>
and <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemons log an error and exit.
The <TT>.pgpass</TT> file contains a single line that
has fields separated by colons and is properly terminated by
an operating system specific newline character (Unix) or CRLF (Windows).
The first field may be either the machine name and fully qualified domain,
or it may be a dotted quad IP address.
This is followed by four fields containing:
the TCP port number, 
the name of the database,
the "quillwriter" user name,
and the password.
The form used in the first field must exactly match the value set for 
the configuration variable <TT>QUILL_DB_IP_ADDR</TT>  <A NAME="50745"></A>.
Condor uses a string comparison between the two, and it does not resolve the
host names to compare IP addresses.
Example:
<PRE>
machinename.cs.wisc.edu:5432:quill:quillwriter:password
</PRE>
<P>
</LI>
</OL>

<P>
After the <SPAN  CLASS="textit">PostgreSQL</SPAN> database is initialized and running, 
the Quill schema
must be loaded into it.  First, load the plsql programming language
into the server:

<P>
<PRE>
createlang plpgsql [databasename]
</PRE>

<P>
Then, load the Quill schema from the sql files in the <TT>sql</TT> subdirectory
of the Condor release directory:

<P>
<PRE>
psql [databasename] [username] &lt; common_createddl.sql
psql [databasename] [username] &lt; pgsql_createddl.sql
</PRE>
where <code>[username]</code> will be <code>quillwriter</code>.

<P>
After <SPAN  CLASS="textit">PostgreSQL</SPAN> is configured and running, Condor must also be
configured to use Quill, since by default Quill is configured to be off.

<P>
<DL>
<DT></DT>
<DD>Add the file <TT>.pgpass</TT> to the 
  <TT>VALID_SPOOL_FILES</TT> variable, since <SPAN  CLASS="textit">condor_preen</SPAN> must
  be told not to delete this file.
  This step may not be necessary, depending on which version of Condor 
  you are upgrading from. 

<P>
</DD>
<DT></DT>
<DD>Set up configuration variables that are specific to the installation,
and check that the <TT>HISTORY</TT> variable is set.
<PRE>
HISTORY                 = $(SPOOL)/history
QUILL_ENABLED           = TRUE
QUILL_USE_SQL_LOG       = FALSE
QUILL_NAME              = some-unique-quill-name.cs.wisc.edu
QUILL_DB_USER           = quillwriter
QUILL_DB_NAME           = database-for-some-unique-quill-name
QUILL_DB_IP_ADDR        = databaseIPaddress:port
# the following parameter's units is in seconds
QUILL_POLLING_PERIOD    = 10
QUILL_HISTORY_DURATION 	= 30
QUILL_MANAGE_VACUUM     = FALSE
QUILL_IS_REMOTELY_QUERYABLE = TRUE
QUILL_DB_QUERY_PASSWORD =  password-for-database-user-quillreader
QUILL_ADDRESS_FILE      = $(LOG)/.quill_address
QUILL_DB_TYPE           = PGSQL
# The Purge and Reindex intervals are in seconds
DATABASE_PURGE_INTERVAL	= 86400
DATABASE_REINDEX_INTERVAL = 86400
# The History durations are all in days 
QUILL_RESOURCE_HISTORY_DURATION  = 7
QUILL_RUN_HISTORY_DURATION = 7
QUILL_JOB_HISTORY_DURATION = 3650
#The DB Size limit is in gigabytes
QUILL_DBSIZE_LIMIT      = 20
QUILL_MAINTAIN_DB_CONN  = TRUE
SCHEDD_SQLLOG           = $(LOG)/schedd_sql.log
SCHEDD_DAEMON_AD_FILE   = $(LOG)/.schedd_classad
</PRE>
<P>
</DD>
</DL>

<P>
The default Condor configuration file should already contain definitions
for <TT>QUILL</TT> and <TT>QUILL_LOG</TT>.  
When upgrading from a previous version that did not have Quill to
a new one that does, define these two configuration variables.

<P>
Only one machine should run the <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemon.  
On this machine, add it to the <TT>DAEMON_LIST</TT> configuration variable.
All Quill-enabled machines should also run the <SPAN  CLASS="textit">condor_quill</SPAN> daemon.
The machine running the <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemon can also 
run a <SPAN  CLASS="textit">condor_quill</SPAN> daemon.  An example <TT>DAEMON_LIST</TT>
for a machine running both daemons,
and acting as both a submit machine and a central manager might 
look like the following:

<P>
<PRE>
DAEMON_LIST  = MASTER, SCHEDD, COLLECTOR, NEGOTIATOR, DBMSD, QUILL
</PRE>
<P>
The <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemon will need configuration file entries
common to all daemons.
If not already in the configuration file, add the following entries:

<P>
<PRE>
DBMSD = $(SBIN)/condor_dbmsd
DBMSD_ARGS = -f
DBMSD_LOG = $(LOG)/DbmsdLog
MAX_DBMSD_LOG = 10000000
</PRE>

<P>

<H3><A NAME="SECTION00931100000000000000"></A><A NAME="sec:Quill-Config"></A>
<BR>
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">1</SPAN>.<SPAN CLASS="arabic">1</SPAN> Configuration Variables
</H3>

<P>
<A NAME="50488"></A>
These macros affect the Quill database
management and interface to its representation of the job queue.

<P>
<DL>
<DD><A NAME="param:Quill"></A></DD>
<DT><STRONG><TT>QUILL</TT>  <A NAME="50770"></A></STRONG></DT>
<DD>The full path name to the <SPAN  CLASS="textit">condor_quill</SPAN> daemon.

<P>
<A NAME="param:QuillArgs"></A></DD>
<DT><STRONG><TT>QUILL_ARGS</TT>  <A NAME="50775"></A></STRONG></DT>
<DD>Arguments to be passed to the <SPAN  CLASS="textit">condor_quill</SPAN> daemon upon its invocation.

<P>
<A NAME="param:QuillLog"></A></DD>
<DT><STRONG><TT>QUILL_LOG</TT>  <A NAME="50780"></A></STRONG></DT>
<DD>Path to the Quill daemon's log file.

<P>
<A NAME="param:QuillEnabled"></A></DD>
<DT><STRONG><TT>QUILL_ENABLED</TT>  <A NAME="50783"></A></STRONG></DT>
<DD>A boolean variable that defaults to <TT>False</TT>.
  When <TT>True</TT>, Quill functionality is enabled.
  When <TT>False</TT>, the Quill daemon writes a message to its log and exits.
  The <SPAN  CLASS="textit">condor_q</SPAN> and <SPAN  CLASS="textit">condor_history</SPAN> tools then do not use Quill.

<P>
<A NAME="param:QuillName"></A></DD>
<DT><STRONG><TT>QUILL_NAME</TT>  <A NAME="50793"></A></STRONG></DT>
<DD>A string that uniquely identifies an instance of the <SPAN  CLASS="textit">condor_quill</SPAN>
  daemon, as there may be more than <SPAN  CLASS="textit">condor_quill</SPAN> daemon per pool.
  The string must not be the same as for any <SPAN  CLASS="textit">condor_schedd</SPAN> daemon.

<P>
See the description of <TT>MASTER_NAME</TT> in
  section&nbsp;<A HREF="3_3_Configuration.html#param:MasterName">3.3.9</A> on page&nbsp;<A HREF="3_3_Configuration.html#param:MasterName"><IMG  ALIGN="BOTTOM" BORDER="1" ALT="[*]" SRC="crossref.png"></A>
  for defaults and composition of valid Condor daemon names.

<P>
<A NAME="param:QuillUseSQLLog"></A></DD>
<DT><STRONG><TT>QUILL_USE_SQL_LOG</TT>  <A NAME="50803"></A></STRONG></DT>
<DD>In order for Quill to store historical job information or resource
  information, the Condor daemons must write information to the SQL logfile.
  By default, this is set to <TT>False</TT>, and the only information Quill
  stores in the database is the current job queue.
  This can be set on a per daemon basis. For example, to store information
  about historical jobs, but not store execute resource information, set
  <TT>QUILL_USE_SQL_LOG</TT> to <TT>False</TT> and set
  <TT>SCHEDD._QUILL_USE_SQL_LOG</TT> to <TT>True</TT>.

<P>
<A NAME="param:QuillDBName"></A></DD>
<DT><STRONG><TT>QUILL_DB_NAME</TT>  <A NAME="50811"></A></STRONG></DT>
<DD>A string that identifies a database within a database server.

<P>
<A NAME="param:QuillDBUser"></A></DD>
<DT><STRONG><TT>QUILL_DB_USER</TT>  <A NAME="50814"></A></STRONG></DT>
<DD>A string that identifies the <SPAN  CLASS="textit">PostgreSQL</SPAN> user that Quill 
  will connect as to the database.
  We recommend ``<SPAN  CLASS="textbf">quillwriter</SPAN>'' for this setting. 
  There is no default setting for <TT>QUILL_DB_USER</TT>, 
  so it must be specified in the configuration file. 

<P>
<A NAME="param:QuillDBType"></A></DD>
<DT><STRONG><TT>QUILL_DB_TYPE</TT>  <A NAME="50820"></A></STRONG></DT>
<DD>A string that distinguishes between database system types.
  Defaults to the only database system currently defined,
  <code>"PGSQL"</code>.

<P>
<A NAME="param:QuillDBIPAddr"></A></DD>
<DT><STRONG><TT>QUILL_DB_IP_ADDR</TT>  <A NAME="50823"></A></STRONG></DT>
<DD>The host address of the database server. It can be either an IP address
  or an IP address.
  It must match exactly what is used in the <TT>.pgpass</TT> file.
  More than one Quill server can talk to the same database
  server.  This can be accomplished by letting all the 
  <TT>QUILL_DB_IP_ADDR</TT> values point to the same database server.

<P>
<A NAME="param:QuillPollingPeriod"></A></DD>
<DT><STRONG><TT>QUILL_POLLING_PERIOD</TT>  <A NAME="50828"></A></STRONG></DT>
<DD>The frequency, in number of seconds, at which the Quill daemon
  polls the file <TT>job_queue.log</TT> for updates.
  New information in the log file is sent to the database.
  The default value is 10.
  Since Quill works by periodically sniffing the log file for updates and 
  then sending those updates to the database, 
  this variable controls the trade off between the currency of query results 
  and Quill's load on the system, which is usually negligible.

<P>
<A NAME="param:QuillNotRespondingTimeout"></A></DD>
<DT><STRONG><TT>QUILL_NOT_RESPONDING_TIMEOUT</TT>  <A NAME="50832"></A></STRONG></DT>
<DD>The length of time, in seconds, before the <SPAN  CLASS="textit">condor_master</SPAN>
  may decide that the <SPAN  CLASS="textit">condor_quill</SPAN> daemon is hung due to 
  a lack of communication,
  potentially causing  the <SPAN  CLASS="textit">condor_master</SPAN> to kill and
  restart the <SPAN  CLASS="textit">condor_quill</SPAN> daemon.
  When the <SPAN  CLASS="textit">condor_quill</SPAN> daemon is processing a very long log file, it 
  may not be able to communicate with the master. 
  The default is 3600 seconds, or one hour. It may be
  advisable to increase this to several hours. 

<P>
<A NAME="param:QuillMaintainDBConn"></A></DD>
<DT><STRONG><TT>QUILL_MAINTAIN_DB_CONN</TT>  <A NAME="50845"></A></STRONG></DT>
<DD>A boolean variable that defaults to <TT>True</TT>.
  When <TT>True</TT>, the <SPAN  CLASS="textit">condor_quill</SPAN> daemon
  maintains an open connection the database server,
  which speeds up updates to the database.
  As each open connection consumes resources at the database server,
  we recommend a setting of <TT>False</TT> for large pools.

<P>
<A NAME="param:QuillDatabasePurgeInterval"></A></DD>
<DT><STRONG><TT>DATABASE_PURGE_INTERVAL</TT>  <A NAME="50853"></A></STRONG></DT>
<DD>The interval, in seconds, between scans of the database to identify and
  delete records that are beyond their history durations. 
  The default value is 86400, or one day.

<P>
<A NAME="param:QuillJobHistoryDuration"></A></DD>
<DT><STRONG><TT>QUILL_JOB_HISTORY_DURATION</TT>  <A NAME="50856"></A></STRONG></DT>
<DD>The number of days after entry into the database that a job will
  remain in the database.
  After <TT>QUILL_JOB_HISTORY_DURATION</TT> days, the job is deleted.
  The job history is the final ClassAd, and contains all information 
  necessary for <SPAN  CLASS="textit">condor_history</SPAN> to succeed.
  The default is 3650, or about 10 years. 

<P>
<A NAME="param:QuillRunHistoryDuration"></A></DD>
<DT><STRONG><TT>QUILL_RUN_HISTORY_DURATION</TT>  <A NAME="50862"></A></STRONG></DT>
<DD>The number of days after entry into the database that extra information 
  about the job will remain in the database.
  After <TT>QUILL_RUN_HISTORY_DURATION</TT> days, the records are deleted.
  This data includes matches made for the job, file transfers the job 
  performed, and user log events.
  The default is 7 days, or one week. 

<P>
<A NAME="param:QuillResourceHistoryDuration"></A></DD>
<DT><STRONG><TT>QUILL_RESOURCE_HISTORY_DURATION</TT>  <A NAME="50866"></A></STRONG></DT>
<DD>The number of days after entry into the database that a resource record will
  remain in the database.
  After <TT>QUILL_RESOURCE_HISTORY_DURATION</TT> days, the record is 
  deleted.
  The resource history data includes the ClassAd of a compute slot,
  submitter ClassAds, and daemon ClassAds.
  The default is 7 days, or one week. 

<P>
<A NAME="param:QuillDBSizeLimit"></A></DD>
<DT><STRONG><TT>QUILL_DBSIZE_LIMIT</TT>  <A NAME="50870"></A></STRONG></DT>
<DD>At intervals of time set by <TT>DATABASE_PURGE_INTERVAL</TT>,
  the <SPAN  CLASS="textit">condor_quill</SPAN> daemon estimates the size of the database. 
  If the size of the database exceeds the limit set by this variable, 
  the <SPAN  CLASS="textit">condor_quill</SPAN> daemon will e-mail the administrator a warning. 
  This size is given in Gbytes, and defaults to 20. 

<P>
<A NAME="param:QuillManageVacuum"></A></DD>
<DT><STRONG><TT>QUILL_MANAGE_VACUUM</TT>  <A NAME="50878"></A></STRONG></DT>
<DD>A boolean value that defaults to <TT>False</TT>.
  When <TT>True</TT>, the <SPAN  CLASS="textit">condor_quill</SPAN> daemon takes on 
  the maintenance task of vacuuming the database.
  As of <SPAN  CLASS="textit">PostgreSQL</SPAN> version 8.1, the database
  can perform this task automatically; 
  therefore, having the <SPAN  CLASS="textit">condor_quill</SPAN> daemon vacuum is not necessary.
  A value of <TT>True</TT> causes warnings to be written to the log file.

<P>
<A NAME="param:QuillShouldReindex"></A></DD>
<DT><STRONG><TT>QUILL_SHOULD_REINDEX</TT>  <A NAME="50889"></A></STRONG></DT>
<DD>A boolean value that defaults to <TT>True</TT>.
  When <TT>True</TT>, the <SPAN  CLASS="textit">condor_quill</SPAN> daemon will re-index the database
  tables when the history file is purged of old data. So, if Quill is
  configured to never delete history data, the tables are never re-indexed.

<P>
<A NAME="param:QuillDatabaseReindexInterval"></A></DD>
<DT><STRONG><TT>DATABASE_REINDEX_INTERVAL</TT>  <A NAME="50896"></A></STRONG></DT>
<DD>Because <SPAN  CLASS="textit">PostgreSQL</SPAN> does not aggressively maintain the index 
  structures for deleted tuples, it can lead to bloated index structures.
  This variable is the interval, in seconds, 
  between re-index commands on the database.
  The default value is 86400, or one day.
  This is only used when the <TT>QUILL_DB_TYPE</TT> is set to
  <code>"PGSQL"</code>.

<P>
<A NAME="param:QuillIsRemotelyQueryable"></A></DD>
<DT><STRONG><TT>QUILL_IS_REMOTELY_QUERYABLE</TT>  <A NAME="50901"></A></STRONG></DT>
<DD>A boolean value that defaults to <TT>True</TT>.
  Thanks to <SPAN  CLASS="textit">PostgreSQL</SPAN>,
  one can now remotely query both the job queue and the history tables. 
  This variable controls whether this remote querying 
  feature should be enabled.  
  Note that even if <TT>False</TT>, one can still query the job queue 
  at the remote <SPAN  CLASS="textit">condor_schedd</SPAN> daemon.

<P>
<A NAME="param:QuillDBQueryPassword"></A></DD>
<DT><STRONG><TT>QUILL_DB_QUERY_PASSWORD</TT>  <A NAME="50909"></A></STRONG></DT>
<DD>Defines the password string needed by <SPAN  CLASS="textit">condor_q</SPAN> to gain read
  access for remotely querying the Quill database.
  In order for the query tools to connect to a database, 
  they need to provide the password that is assigned to the 
  database user ``<SPAN  CLASS="textbf">quillreader</SPAN>''. 
  This variable is then advertised by the <SPAN  CLASS="textit">condor_quill</SPAN> daemon
  to the <SPAN  CLASS="textit">condor_collector</SPAN>.  
  This facility enables remote querying: remote <SPAN  CLASS="textit">condor_q</SPAN> query tools first 
  ask the <SPAN  CLASS="textit">condor_collector</SPAN> for
  the password associated with a particular Quill database, 
  and then query that database.  
  Users who do not have access to the <SPAN  CLASS="textit">condor_collector</SPAN> 
  cannot view the password, and as such cannot query the database.

<P>
<A NAME="param:QuillAddressFile"></A></DD>
<DT><STRONG><TT>QUILL_ADDRESS_FILE</TT>  <A NAME="50925"></A></STRONG></DT>
<DD>When defined, it specifies the path and file name of a local file
  that contains the IP address and port number of the Quill daemon.
  By using the file, tools executed on the local machine do not need
  to query the central manager in order to find the <SPAN  CLASS="textit">condor_quill</SPAN> daemon.

<P>
<A NAME="param:DBMSD"></A> 
</DD>
<DT><STRONG><TT>DBMSD</TT>  <A NAME="50930"></A></STRONG></DT>
<DD>The full path name to the <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemon.
  The default location is <TT>$(SBIN)/condor_dbmsd</TT>.

<P>
<A NAME="param:DBMSDArgs"></A></DD>
<DT><STRONG><TT>DBMSD_ARGS</TT>  <A NAME="50936"></A></STRONG></DT>
<DD>Arguments to be passed to the <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemon upon its invocation.
  The default arguments are <code>-f</code>.

<P>
<A NAME="param:DBMSDLog"></A></DD>
<DT><STRONG><TT>DBMSD_LOG</TT>  <A NAME="50941"></A></STRONG></DT>
<DD>Path to the <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemon's log file.
  The default log location is <TT>$(LOG)/DbmsdLog</TT>.

<P>
<A NAME="param:DBMSDNotRespondingTimeout"></A></DD>
<DT><STRONG><TT>DBMSD_NOT_RESPONDING_TIMEOUT</TT>  <A NAME="50947"></A></STRONG></DT>
<DD>The length of time, in seconds, before the <SPAN  CLASS="textit">condor_master</SPAN>
  may decide that the <SPAN  CLASS="textit">condor_dbmsd</SPAN> is hung due to a lack of communication,
  potentially causing  the <SPAN  CLASS="textit">condor_master</SPAN> to kill and
  restart the <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemon.
  When the <SPAN  CLASS="textit">condor_dbmsd</SPAN> is purging or re-indexing a very large database, 
  it may not be able to communicate with the master. 
  The default is 3600 seconds, or one hour. 
  It may be advisable to increase this to several hours. 

<P>
</DD>
</DL>

<P>

<H2><A NAME="SECTION00932000000000000000"></A><A NAME="sec:Quill-Example"></A>
<BR>
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">2</SPAN> Four Usage Examples
</H2>

<P>

<OL>
<LI>Query a remote Quill daemon on <TT>regular.cs.wisc.edu</TT>
for all the jobs in the queue
<PRE>
	condor_q -name quill@regular.cs.wisc.edu
	condor_q -name schedd@regular.cs.wisc.edu
</PRE>
There are two ways to get to a Quill daemon: directly using its name as 
specified in the <TT>QUILL_NAME</TT> configuration variable, or indirectly
by querying the <SPAN  CLASS="textit">condor_schedd</SPAN> daemon using its name.
In the latter case, <SPAN  CLASS="textit">condor_q</SPAN> will detect 
if that <SPAN  CLASS="textit">condor_schedd</SPAN> daemon is being serviced by a database, and if so, directly query it.
In both cases, the IP address and port of the database server hosting the data of 
this particular remote Quill daemon can be figured out by the <TT>QUILL_DB_IP_ADDR</TT> 
and <TT>QUILL_DB_NAME</TT> variables specified in the <TT>QUILL_AD</TT>
sent by the quill daemon to the collector and in the <TT>SCHEDD_AD</TT> sent by
the <SPAN  CLASS="textit">condor_schedd</SPAN> daemon.  

<P>
</LI>
<LI>Query a remote Quill daemon on <TT>regular.cs.wisc.edu</TT> for all historical 
jobs belonging to owner einstein.
<PRE>
	condor_history -name quill@regular.cs.wisc.edu einstein
</PRE>

<P>
</LI>
<LI>Query the local Quill daemon for the average time spent in the queue 
for all non-completed jobs. 
<PRE>
	condor_q -avgqueuetime
</PRE>
The average queue time is defined as the average of
<TT>(currenttime - jobsubmissiontime)</TT> over all jobs which are neither
completed <TT>(JobStatus == 4)</TT> or removed <TT>(JobStatus == 3)</TT>.

<P>
</LI>
<LI>Query the local Quill daemon for all historical jobs completed since 
Apr 1, 2005 at 13h 00m.
<PRE>
	condor_history -completedsince '04/01/2005 13:00'
</PRE>
It fetches all jobs
which got into the 'Completed' state on or after the
specified time stamp.  It use the <SPAN  CLASS="textit">PostgreSQL</SPAN> date/time
syntax rules, as it encompasses most format options.  See
<A NAME="tex2html99"
  HREF="http://www.postgresql.org/docs/8.2/static/datatype-datetime.html">http://www.postgresql.org/docs/8.2/static/datatype-datetime.html</A>
for the various time stamp formats.

<P>
</LI>
</OL>

<P>

<H2><A NAME="SECTION00933000000000000000"></A><A NAME="sec:Quill-Security"></A>
<BR>
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">3</SPAN> Quill and Security
</H2>

<P>
There are several layers of security in Quill, some provided by Condor and
others provided by the database.  First, all accesses to the database
are password-protected.

<P>

<OL>
<LI>The query tools, <SPAN  CLASS="textit">condor_q</SPAN> and
<SPAN  CLASS="textit">condor_history</SPAN> connect to the database as user ``<SPAN  CLASS="textbf">quillreader</SPAN>''.
The password for this user can vary from one database to another and
as such, each Quill daemon advertises this password to the collector.
The query tools then obtain this password from the collector and
connect successfully to the database.  Access to the database by the
``<SPAN  CLASS="textbf">quillreader</SPAN>'' user is read-only, as this is sufficient for the
query tools.  The <SPAN  CLASS="textit">condor_quill</SPAN> daemon ensures this protected access using the sql
GRANT command when it first creates the tables in the database.  Note that
access to the ``<SPAN  CLASS="textbf">quillreader</SPAN>'' password itself can be blocked by
blocking access to the collector, a feature already supported in Condor.

<P>
</LI>
<LI>The <SPAN  CLASS="textit">condor_quill</SPAN> and <SPAN  CLASS="textit">condor_dbmsd</SPAN> daemons, on the other hand,
need read and write access to the database.
As such, they connect as user ``<SPAN  CLASS="textbf">quillwriter</SPAN>'',
who has owner privileges to the database.  Since this gives all
access to the ``<SPAN  CLASS="textbf">quillwriter</SPAN>'' user, this password cannot
be stored in a public place (such as the collector).  For this
reason, the ``<SPAN  CLASS="textbf">quillwriter</SPAN>'' password is stored in a file called
<TT>.pgpass</TT> in the Condor spool directory.
Appropriate protections on this file guarantee secure access to the database.
This file must be created and protected by the site administrator;
if this file does not exist as and where expected, the <SPAN  CLASS="textit">condor_quill</SPAN>
daemon logs an error and exits.

<P>
</LI>
<LI>The <TT>IsRemotelyQueryable</TT> attribute in the Quill ClassAd advertised
by the Quill daemon to the collector can be used by site administrators
to disallow the database from being read by all remote Condor query tools.

<P>
</LI>
</OL>

<P>

<H2><A NAME="SECTION00934000000000000000"></A><A NAME="sec:Quill-Schema"></A>
<BR>
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN> Quill and Its RDBMS Schema
</H2>

<P>

<P>
<SPAN  CLASS="textbf">Notes:</SPAN>

<UL>
<LI>The type ``timestamp(<SPAN  CLASS="textit">precision</SPAN>) with timezone'' is
abbreviated ``ts(<SPAN  CLASS="textit">precision</SPAN>) w tz.''
</LI>
<LI>The column O. Type is an abbreviation for Oracle Type.
</LI>
<LI>The column P. Type is an abbreviation for PostgreSQL Type.
</LI>
</UL>
Although the current version of Condor does not support Oracle, we
anticipate supporting it in the future, so Oracle support in this
schema document is for future reference.
<BR>
<BR>
<BR>

<P>

<H3><A NAME="SECTION00934100000000000000">
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">1</SPAN> Administrative Tables</A>
</H3>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of currencies Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=238><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">datasource</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=238>Identifier of the data source.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastupdate</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=238>Time of the last update sent to the database from the data source.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of error_sqllogs Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">logname</TD>
<TD ALIGN="LEFT">varchar(100)</TD>
<TD ALIGN="LEFT">varchar(100)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Name of the SQL log file causing a SQL error.</TD>
</TR>
<TR><TD ALIGN="LEFT">host</TD>
<TD ALIGN="LEFT">varchar(50)</TD>
<TD ALIGN="LEFT">varchar(50)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>The host where the SQL log resides.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastmodified</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>The last modified time of the SQL log.</TD>
</TR>
<TR><TD ALIGN="LEFT">errorsql</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>The SQL statement causing an error.</TD>
</TR>
<TR><TD ALIGN="LEFT">logbody</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>The body of the SQL log.</TD>
</TR>
<TR><TD ALIGN="LEFT">errormessage</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>The description of the error.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">INDEX:</SPAN> Index named error_sqllog_idx on (logname, host, lastmodified)</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of maintenance_log Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=245><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">eventts</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=245>Time the event occurred.</TD>
</TR>
<TR><TD ALIGN="LEFT">eventmsg</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=245>Message describing the event.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of quilldbmonitor Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=295><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">dbsize</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=295>Size of the database in megabytes.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of quill_schema_version Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=259><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">major</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=259>Major version number.</TD>
</TR>
<TR><TD ALIGN="LEFT">minor</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=259>Minor version number.</TD>
</TR>
<TR><TD ALIGN="LEFT">back_to_major</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=259>The major number of the old version this version is compatible to.</TD>
</TR>
<TR><TD ALIGN="LEFT">back_to_minor</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=259>The minor number of the old version this version is compatible to.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of throwns Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">filename</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>The name of the log that was truncated.</TD>
</TR>
<TR><TD ALIGN="LEFT">machine_id</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>The machine where the truncated log resides.</TD>
</TR>
<TR><TD ALIGN="LEFT">log_size</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>The size of the truncated log.</TD>
</TR>
<TR><TD ALIGN="LEFT">throwtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>The time when the truncation occurred.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>

</DIV>

<P>

<H3><A NAME="SECTION00934200000000000000">
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">2</SPAN> Daemon Tables</A>
</H3>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of daemons_horizontal Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">mytype</TD>
<TD ALIGN="LEFT">varchar(100)</TD>
<TD ALIGN="LEFT">varchar(100)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The type of daemon ClassAd, e.g. ``Master''</TD>
</TR>
<TR><TD ALIGN="LEFT">name</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The name identifier of the daemon ClassAd.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastreportedtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>Time when the daemon last reported to Quill.</TD>
</TR>
<TR><TD ALIGN="LEFT">monitorselftime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The time when the daemon last collected information about itself.</TD>
</TR>
<TR><TD ALIGN="LEFT">monitorselfcpuusage</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The amount of CPU this daemon has used.</TD>
</TR>
<TR><TD ALIGN="LEFT">monitorselfimagesize</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The amount of virtual memory this daemon has used.</TD>
</TR>
<TR><TD ALIGN="LEFT">monitorselfresidentsetsize</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The amount of physical memory this daemon has used.</TD>
</TR>
<TR><TD ALIGN="LEFT">monitorselfage</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>How long the daemon has been running.</TD>
</TR>
<TR><TD ALIGN="LEFT">updatesequencenumber</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The sequence number associated with the update.</TD>
</TR>
<TR><TD ALIGN="LEFT">updatestotal</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The number of updates received from the daemon.</TD>
</TR>
<TR><TD ALIGN="LEFT">updatessequenced</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The number of updates that were in order.</TD>
</TR>
<TR><TD ALIGN="LEFT">updateslost</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The number of updates that were lost.</TD>
</TR>
<TR><TD ALIGN="LEFT">updateshistory</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>Bitmask of the last 32 updates.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastreportedtime_epoch</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The equivalent epoch time of last heard from.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> (mytype, name)</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">NOT NULL:</SPAN> mytype and name cannot be null</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of daemons_horizontal_history Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">mytype</TD>
<TD ALIGN="LEFT">varchar(100)</TD>
<TD ALIGN="LEFT">varchar(100)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The type of daemon ClassAd, e.g. ``Master''</TD>
</TR>
<TR><TD ALIGN="LEFT">name</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The name identifier of the daemon ClassAd.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastreportedtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>Time when the daemon last reported to Quill.</TD>
</TR>
<TR><TD ALIGN="LEFT">monitorselftime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The time when the daemon last collected information about itself.</TD>
</TR>
<TR><TD ALIGN="LEFT">monitorselfcpuusage</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The amount of CPU this daemon has used.</TD>
</TR>
<TR><TD ALIGN="LEFT">monitorselfimagesize</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The amount of virtual memory this daemon has used.</TD>
</TR>
<TR><TD ALIGN="LEFT">monitorselfresidentsetsize</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The amount of physical memory this daemon has used.</TD>
</TR>
<TR><TD ALIGN="LEFT">monitorselfage</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>How long the daemon has been running.</TD>
</TR>
<TR><TD ALIGN="LEFT">updatesequencenumber</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The sequence number associated with the update.</TD>
</TR>
<TR><TD ALIGN="LEFT">updatestotal</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The number of updates received from the daemon.</TD>
</TR>
<TR><TD ALIGN="LEFT">updatessequenced</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The number of updates that were in order.</TD>
</TR>
<TR><TD ALIGN="LEFT">updateslost</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>The number of updates that were lost.</TD>
</TR>
<TR><TD ALIGN="LEFT">updateshistory</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>Bitmask of the last 32 updates.</TD>
</TR>
<TR><TD ALIGN="LEFT">endtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=166>End of when the ClassAd is valid.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of daemons_vertical Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">mytype</TD>
<TD ALIGN="LEFT">varchar(100)</TD>
<TD ALIGN="LEFT">varchar(100)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>The type of daemon ClassAd, e.g. ``Master''</TD>
</TR>
<TR><TD ALIGN="LEFT">name</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>The name identifier of the daemon ClassAd.</TD>
</TR>
<TR><TD ALIGN="LEFT">attr</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Attribute name.</TD>
</TR>
<TR><TD ALIGN="LEFT">val</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Attribute value.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastreportedtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Time when the daemon last reported to Quill.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> (mytype, name, attr)</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">NOT NULL:</SPAN> mytype, name, and attr cannot be null</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of daemons_vertical_history Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">mytype</TD>
<TD ALIGN="LEFT">varchar(100)</TD>
<TD ALIGN="LEFT">varchar(100)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>The type of daemon ClassAd, e.g. ``Master''</TD>
</TR>
<TR><TD ALIGN="LEFT">name</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>The name identifier of the daemon ClassAd.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastreportedtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Time when the daemon last reported to Quill.</TD>
</TR>
<TR><TD ALIGN="LEFT">attr</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Attribute name.</TD>
</TR>
<TR><TD ALIGN="LEFT">val</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Attribute value.</TD>
</TR>
<TR><TD ALIGN="LEFT">endtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>End of when the ClassAd is valid.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of submitters_horizontal table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">name</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Name of the submitter ClassAd.</TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Name of the schedd where the submitter ad is from.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastreportedtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Last time a submitter ClassAd was sent to Quill.</TD>
</TR>
<TR><TD ALIGN="LEFT">idlejobs</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Number of idle jobs of the submitter.</TD>
</TR>
<TR><TD ALIGN="LEFT">runningjobs</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Number of running jobs of the submitter.</TD>
</TR>
<TR><TD ALIGN="LEFT">heldjobs</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Number of held jobs of the submitter.</TD>
</TR>
<TR><TD ALIGN="LEFT">flockedjobs</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Number of flocked jobs of the submitter.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of submitters_horizontal_history table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">name</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT">varchar(500)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Name of the submitter ClassAd.</TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Name of the schedd where the submitter ad is from.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastreportedtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Last time a submitter ClassAd was sent to Quill.</TD>
</TR>
<TR><TD ALIGN="LEFT">idlejobs</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Number of idle jobs of the submitter.</TD>
</TR>
<TR><TD ALIGN="LEFT">runningjobs</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Number of running jobs of the submitter.</TD>
</TR>
<TR><TD ALIGN="LEFT">heldjobs</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Number of held jobs of the submitter.</TD>
</TR>
<TR><TD ALIGN="LEFT">flockedjobs</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>Number of flocked jobs of the submitter.</TD>
</TR>
<TR><TD ALIGN="LEFT">endtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=223>End of when the ClassAd is valid.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>

</DIV>

<P>

<H3><A NAME="SECTION00934300000000000000">
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">3</SPAN> Files Tables</A>
</H3>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of files Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">file_id</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Unique numeric identifier of the file.</TD>
</TR>
<TR><TD ALIGN="LEFT">name</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>File name.</TD>
</TR>
<TR><TD ALIGN="LEFT">host</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Name of machine where the file is located.</TD>
</TR>
<TR><TD ALIGN="LEFT">path</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Directory path to the file.</TD>
</TR>
<TR><TD ALIGN="LEFT">acl_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Not yet used, null.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastmodified</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Timestamp of the file.</TD>
</TR>
<TR><TD ALIGN="LEFT">filesize</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Size of the file in bytes.</TD>
</TR>
<TR><TD ALIGN="LEFT">checksum</TD>
<TD ALIGN="LEFT">varchar(32)</TD>
<TD ALIGN="LEFT">varchar(32)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>MD5 checksum of the file.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> file_id</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">NOT NULL:</SPAN> file_id cannot be null</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of fileusages Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">globaljobid</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Global identifier of the job that used the file.</TD>
</TR>
<TR><TD ALIGN="LEFT">file_id</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT">int</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Numeric identifier of the file.</TD>
</TR>
<TR><TD ALIGN="LEFT">usagetype</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Type of use of the file by the job, e.g., input, output, command.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">REFERENCE:</SPAN> file_id references files(file_id)</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of transfers Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">globaljobid</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Unique global identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">src_name</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Name of the file on the source machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">src_host</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Name of the source machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">src_port</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Source port number used for the transfer.</TD>
</TR>
<TR><TD ALIGN="LEFT">src_path</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Path to the file on the source machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">src_daemon</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Condor demon performing the transfer on the source machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">src_protocol</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The protocol used on the source machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">src_credential_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Not yet used, null.</TD>
</TR>
<TR><TD ALIGN="LEFT">src_acl_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Not yet used, null.</TD>
</TR>
<TR><TD ALIGN="LEFT">dst_name</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Name of the file on the destination machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">dst_host</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Name of the destination machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">dst_port</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Destination port number used for the transfer.</TD>
</TR>
<TR><TD ALIGN="LEFT">dst_path</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Path to the file on the destination machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">dst_daemon</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Condor daemon receiving the transfer on the destination machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">dst_protocol</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The protocol used on the destination machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">dst_credential_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Not yet used, null.</TD>
</TR>
<TR><TD ALIGN="LEFT">dst_acl_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Not yet used, null.</TD>
</TR>
<TR><TD ALIGN="LEFT">transfer_intermediary_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Not yet used, null; will use someday if a proxy is used.</TD>
</TR>
<TR><TD ALIGN="LEFT">transfer_size_bytes</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric (38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Size of the data transfered in bytes.</TD>
</TR>
<TR><TD ALIGN="LEFT">elapsed</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Number of seconds that elapsed during the transfer.</TD>
</TR>
<TR><TD ALIGN="LEFT">checksum</TD>
<TD ALIGN="LEFT">varchar(256)</TD>
<TD ALIGN="LEFT">varchar(256)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Checksum of the file.</TD>
</TR>
<TR><TD ALIGN="LEFT">transfer_time</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Time when the transfer took place.</TD>
</TR>
<TR><TD ALIGN="LEFT">last_modified</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Last modified time for the file that was transfered.</TD>
</TR>
<TR><TD ALIGN="LEFT">is_encrypted</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>(boolean) True if the file is encrypted.</TD>
</TR>
<TR><TD ALIGN="LEFT">delegation_method_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Not yet used, null.</TD>
</TR>
<TR><TD ALIGN="LEFT">completion_code</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Indicates whether the transfer failed or succeeded.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>

</DIV>

<P>

<H3><A NAME="SECTION00934400000000000000">
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">4</SPAN> Interface Tables</A>
</H3>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of cdb_users Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=245><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">userid</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=245>Unique identifier of the user</TD>
</TR>
<TR><TD ALIGN="LEFT">password</TD>
<TD ALIGN="LEFT">character(32)</TD>
<TD ALIGN="LEFT">character(32)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=245>Encrypted password</TD>
</TR>
<TR><TD ALIGN="LEFT">admin</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=245>(boolean) True if the user has administrator privileges</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of l_eventtype Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">eventtype</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Numeric type code of the event.</TD>
</TR>
<TR><TD ALIGN="LEFT">description</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Description of the type of event associated with the eventtype code.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of l_jobstatus Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">jobstatus</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Numeric code for job status.</TD>
</TR>
<TR><TD ALIGN="LEFT">abbrev</TD>
<TD ALIGN="LEFT">char(1)</TD>
<TD ALIGN="LEFT">char(1)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Single letter code for job status.</TD>
</TR>
<TR><TD ALIGN="LEFT">description</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Description of job status.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> jobstatus</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">NOT NULL:</SPAN> jobstatus cannot be null</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>

</DIV>

<P>

<H3><A NAME="SECTION00934500000000000000">
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">5</SPAN> Jobs Tables</A>
</H3>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of clusterads_horizontal Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Name of the schedd the job is submitted to.</TD>
</TR>
<TR><TD ALIGN="LEFT">cluster_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Cluster identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">owner</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>User who submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">jobstatus</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Current status of the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">jobprio</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Priority for this job.</TD>
</TR>
<TR><TD ALIGN="LEFT">imagesize</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Estimate of memory image size of the job in kilobytes.</TD>
</TR>
<TR><TD ALIGN="LEFT">qdate</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Time the job was submitted to the job queue.</TD>
</TR>
<TR><TD ALIGN="LEFT">remoteusercpu</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Total number of seconds of user CPU time the job used on remote machines.</TD>
</TR>
<TR><TD ALIGN="LEFT">remotewallclocktime</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Committed cumulative number of seconds the job has been allocated to a machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">cmd</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Path to and filename of the job to be executed.</TD>
</TR>
<TR><TD ALIGN="LEFT">args</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Arguments passed to the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">jobuniverse</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The Condor universe used by the job.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> (scheddname, cluster_id)</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">NOT NULL:</SPAN> scheddname and cluster_id cannot be null</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of clusterads_vertical Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Name of the schedd that the job is submitted to.</TD>
</TR>
<TR><TD ALIGN="LEFT">cluster_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Cluster identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">attr</TD>
<TD ALIGN="LEFT">varchar(2000)</TD>
<TD ALIGN="LEFT">varchar(2000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Attribute name.</TD>
</TR>
<TR><TD ALIGN="LEFT">val</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Attribute value.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> (scheddname, cluster_id, attr)</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of jobs_horizontal_history Table - Part 1 of 3</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Name of the schedd that submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">scheddbirthdate</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The birth date of the schedd where the job is submitted.</TD>
</TR>
<TR><TD ALIGN="LEFT">cluster_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Cluster identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">proc_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Process identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">qdate</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Time the job was submitted to the job queue.</TD>
</TR>
<TR><TD ALIGN="LEFT">owner</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT">varchar(30)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>User who submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">globaljobid</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Unique global identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">numckpts</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Number of checkpoints written by the job during its lifetime.</TD>
</TR>
<TR><TD ALIGN="LEFT">numrestarts</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Number of restarts from a checkpoint attempted by the job in its lifetime.</TD>
</TR>
<TR><TD ALIGN="LEFT">numsystemholds</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Number of times Condor-G placed the job on hold.</TD>
</TR>
<TR><TD ALIGN="LEFT">condorversion</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Version of Condor that ran the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">condorplatform</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Platform of the computer where the schedd runs.</TD>
</TR>
<TR><TD ALIGN="LEFT">rootdir</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Root directory on the system where the job is submitted from.</TD>
</TR>
<TR><TD ALIGN="LEFT">iwd</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Initial working directory of the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">jobuniverse</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The Condor universe used by the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">cmd</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Path to and filename of the job to be executed.</TD>
</TR>
<TR><TD ALIGN="LEFT">minhosts</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Minimum number of hosts that must be in the claimed state for this job, before the job may enter the running state.</TD>
</TR>
<TR><TD ALIGN="LEFT">maxhosts</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Maximum number of hosts this job would like to claim.</TD>
</TR>
<TR><TD ALIGN="LEFT">jobprio</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Priority for this job.</TD>
</TR>
<TR><TD ALIGN="LEFT">negotiation_user_name</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>User name in which the job is negotiated.</TD>
</TR>
<TR><TD ALIGN="LEFT">env</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Environment under which the job ran.</TD>
</TR>
<TR><TD ALIGN="LEFT">userlog</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>User log where the job events are written to.</TD>
</TR>
<TR><TD ALIGN="LEFT">coresize</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Maximum allowed size of the core file.</TD>
</TR>
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Table Continues on Next Page</SPAN></SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of jobs_horizontal_history Table - Part 2 of 3</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">killsig</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Signal to be sent if the job is put on hold.</TD>
</TR>
<TR><TD ALIGN="LEFT">stdin</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The file used as stdin.</TD>
</TR>
<TR><TD ALIGN="LEFT">transferin</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>(boolean) For globus universe jobs. True if input should be transferred to the remote machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">stdout</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The file used as stdout.</TD>
</TR>
<TR><TD ALIGN="LEFT">transferout</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>(boolean) For globus universe jobs. True if output should be transferred back to the submit machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">stderr</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The file used as stderr.</TD>
</TR>
<TR><TD ALIGN="LEFT">transfererr</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>(boolean) For globus universe jobs. True if error output should be transferred back to the submit machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">shouldtransferfiles</TD>
<TD ALIGN="LEFT">varchar (4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Whether Condor should transfer files to and from the machine where the job runs.</TD>
</TR>
<TR><TD ALIGN="LEFT">transferfiles</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Depreciated. Similar to shouldtransferfiles.</TD>
</TR>
<TR><TD ALIGN="LEFT">executablesize</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Size of the executable in kilobytes.</TD>
</TR>
<TR><TD ALIGN="LEFT">diskusage</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Size of the executable and input files to be transferred.</TD>
</TR>
<TR><TD ALIGN="LEFT">filesystemdomain</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Name of the networked file system used by the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">args</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Arguments passed to the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastmatchtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Time when the job was last successfully matched with a resource.</TD>
</TR>
<TR><TD ALIGN="LEFT">numjobmatches</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of times the negotiator matches the job with a resource.</TD>
</TR>
<TR><TD ALIGN="LEFT">jobstartdate</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Time when the job first began running.</TD>
</TR>
<TR><TD ALIGN="LEFT">jobcurrentstartdate</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Time when the job's current run started.</TD>
</TR>
<TR><TD ALIGN="LEFT">jobruncount</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of times a shadow has been started for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">filereadcount</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of read(2) calls the job made (only standard universe).</TD>
</TR>
<TR><TD ALIGN="LEFT">filereadbytes</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of bytes read by the job (only standard universe).</TD>
</TR>
<TR><TD ALIGN="LEFT">filewritecount</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of write calls the job made (only standard universe).</TD>
</TR>
<TR><TD ALIGN="LEFT">filewritebytes</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of bytes written by the job (only standard universe).</TD>
</TR>
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Table Continues on Next Page</SPAN></SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of jobs_horizontal_history Table - Part 3 of 3</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">fileseekcount</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of seek calls that this job made (only standard universe).</TD>
</TR>
<TR><TD ALIGN="LEFT">totalsuspensions</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of times the job has been suspended during its lifetime</TD>
</TR>
<TR><TD ALIGN="LEFT">imagesize</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Estimate of memory image size of the job in kilobytes.</TD>
</TR>
<TR><TD ALIGN="LEFT">exitstatus</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>No longer used by Condor.</TD>
</TR>
<TR><TD ALIGN="LEFT">localusercpu</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of seconds of user CPU time the job used on the submit machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">localsyscpu</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of seconds of system CPU time the job used on the submit machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">remoteusercpu</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of seconds of user CPU time the job used on remote machines.</TD>
</TR>
<TR><TD ALIGN="LEFT">remotesyscpu</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of seconds of system CPU time the job used on remote machines.</TD>
</TR>
<TR><TD ALIGN="LEFT">bytessent</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of bytes sent to the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">bytesrecvd</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of bytes received by the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">rscbytessent</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of remote system call bytes sent to the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">rscbytesrecvd</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of remote system call bytes received by the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">exitcode</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Exit return code of the user job. Used when a job exits by means other than a signal.</TD>
</TR>
<TR><TD ALIGN="LEFT">jobstatus</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Current status of the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">enteredcurrentstatus</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Time the job entered into its current status.</TD>
</TR>
<TR><TD ALIGN="LEFT">remotewallclocktime</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Cumulative number of seconds the job has been allocated to a machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastremotehost</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The remote host for the last run of the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">completiondate</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Time when the job completed; 0 if job has not yet completed.</TD>
</TR>
<TR><TD ALIGN="LEFT">enteredhistorytable</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Time when the job entered the history table.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> (scheddname, scheddbirthdate, cluster_id, proc_id)</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">NOT NULL:</SPAN> scheddname, scheddbirthdate, cluster_id, and proc_id cannot be null</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">INDEX:</SPAN> Index named hist_h_i_owner on owner</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of jobs_vertical_history Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=209><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=209>Name of the schedd that submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">scheddbirthdate</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=209>The birth date of the schedd where the job is submitted.</TD>
</TR>
<TR><TD ALIGN="LEFT">cluster_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=209>Cluster identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">proc_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=209>Process identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">attr</TD>
<TD ALIGN="LEFT">varchar(2000)</TD>
<TD ALIGN="LEFT">varchar(2000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=209>Attribute name.</TD>
</TR>
<TR><TD ALIGN="LEFT">val</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=209>Attribute value.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> (scheddname, scheddbirthdate, cluster_id, proc_id, attr)</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">NOT NULL:</SPAN> scheddname, scheddbirthdate, cluster_id, proc_id, and attr cannot be null</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of procads_horizontal Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Name of the schedd that submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">cluster_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Cluster identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">proc_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Process identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">jobstatus</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Current status of the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">imagesize</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Estimate of memory image size of the job in kilobytes.</TD>
</TR>
<TR><TD ALIGN="LEFT">remoteusercpu</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Total number of seconds of user CPU time the job used on remote machines.</TD>
</TR>
<TR><TD ALIGN="LEFT">remotewallclocktime</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Cumulative number of seconds the job has been allocated to a machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">remotehost</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Name of the machine running the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">globaljobid</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Unique global identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">jobprio</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Priority of the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">args</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Arguments passed to the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">shadowbday</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The time when the shadow was started.</TD>
</TR>
<TR><TD ALIGN="LEFT">enteredcurrentstatus</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Time the job entered its current status.</TD>
</TR>
<TR><TD ALIGN="LEFT">numrestarts</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Number of times the job has restarted.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> (scheddname, cluster_id, proc_id)</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">NOT NULL:</SPAN> scheddname, cluster_id, and proc_id cannot be null</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of procads_vertical Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Name of the schedd that submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">cluster_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Cluster identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">proc_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Process identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">attr</TD>
<TD ALIGN="LEFT">varchar(2000)</TD>
<TD ALIGN="LEFT">varchar(2000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Attribute name.</TD>
</TR>
<TR><TD ALIGN="LEFT">val</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Attribute value.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>

</DIV>

<P>

<H3><A NAME="SECTION00934600000000000000">
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">6</SPAN> Machines Tables</A>
</H3>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of machines_horizontal Table - Part 1 of 2</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">machine_id</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Unique identifier of the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">opsys</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Operating system running on the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">arch</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Architecture of the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">state</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Condor state of the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">activity</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Condor job activity on the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">keyboardidle</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Number of seconds since activity has been detected on any keyboard or mouse associated with the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">consoleidle</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Number of seconds since activity has been detected on the console keyboard or mouse.</TD>
</TR>
<TR><TD ALIGN="LEFT">loadavg</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Current load average of the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">condorloadavg</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Portion of load average generated by Condor</TD>
</TR>
<TR><TD ALIGN="LEFT">totalloadavg</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>&nbsp;</TD>
</TR>
<TR><TD ALIGN="LEFT">virtualmemory</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Amount of currently available virtual memory in kilobytes.</TD>
</TR>
<TR><TD ALIGN="LEFT">memory</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Amount of RAM in megabytes.</TD>
</TR>
<TR><TD ALIGN="LEFT">totalvirtualmemory</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>&nbsp;</TD>
</TR>
<TR><TD ALIGN="LEFT">cpubusytime</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Time in seconds since cpuisbusy became true.</TD>
</TR>
<TR><TD ALIGN="LEFT">cpuisbusy</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>(boolean) True when the CPU is busy.</TD>
</TR>
<TR><TD ALIGN="LEFT">currentrank</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The machine owner's affinity for running the Condor job which it is currently hosting.</TD>
</TR>
<TR><TD ALIGN="LEFT">clockmin</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Number of minutes passed since midnight.</TD>
</TR>
<TR><TD ALIGN="LEFT">clockday</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The day of the week.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastreportedtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Time when the Condor central manager last received a status update from this machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">enteredcurrentactivity</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Time when the machine entered the current activity.</TD>
</TR>
<TR><TD ALIGN="LEFT">enteredcurrentstate</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Time when the machine entered the current state.</TD>
</TR>
<TR><TD ALIGN="LEFT">updatesequencenumber</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Each update includes a sequence number.</TD>
</TR>
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Table Continues on Next Page</SPAN></SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of machines_horizontal Table - Part 2 of 2</SPAN></SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">updatestotal</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The number of updates received from the daemon.</TD>
</TR>
<TR><TD ALIGN="LEFT">updatessequenced</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The number of updates that were in order.</TD>
</TR>
<TR><TD ALIGN="LEFT">updateslost</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The number of updates that were lost.</TD>
</TR>
<TR><TD ALIGN="LEFT">globaljobid</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Unique global identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastreportedtime_epoch</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The equivalent epoch time of lastreportedtime.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> machine_id</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of machines_horizontal_history Table - Part 1 of 2</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">machine_id</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Unique identifier of the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">opsys</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Operating system running on the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">arch</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Architecture of the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">state</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Condor state of the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">activity</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Condor job activity on the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">keyboardidle</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Number of seconds since activity has been detected on any keyboard or mouse associated with the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">consoleidle</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Number of seconds since activity has been detected on the console keyboard or mouse.</TD>
</TR>
<TR><TD ALIGN="LEFT">loadavg</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Current load average of the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">condorloadavg</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Portion of load average generated by Condor</TD>
</TR>
<TR><TD ALIGN="LEFT">totalloadavg</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>&nbsp;</TD>
</TR>
<TR><TD ALIGN="LEFT">virtualmemory</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Amount of currently available virtual memory in kilobytes.</TD>
</TR>
<TR><TD ALIGN="LEFT">memory</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Amount of RAM in megabytes.</TD>
</TR>
<TR><TD ALIGN="LEFT">totalvirtualmemory</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>&nbsp;</TD>
</TR>
<TR><TD ALIGN="LEFT">cpubusytime</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Time in seconds since cpuisbusy became true.</TD>
</TR>
<TR><TD ALIGN="LEFT">cpuisbusy</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT">varchar(5)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>(boolean) True when the CPU is busy.</TD>
</TR>
<TR><TD ALIGN="LEFT">currentrank</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The machine owner's affinity for running the Condor job which it is currently hosting.</TD>
</TR>
<TR><TD ALIGN="LEFT">clockmin</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Number of minutes passed since midnight.</TD>
</TR>
<TR><TD ALIGN="LEFT">clockday</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>The day of the week.</TD>
</TR>
<TR><TD ALIGN="LEFT">lastreportedtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Time when the Condor central manager last received a status update from this machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">enteredcurrentactivity</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Time when the machine entered the current activity.</TD>
</TR>
<TR><TD ALIGN="LEFT">enteredcurrentstate</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Time when the machine entered the current state.</TD>
</TR>
<TR><TD ALIGN="LEFT">updatesequencenumber</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=173>Each update includes a sequence number.</TD>
</TR>
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Table Continues on Next Page</SPAN></SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of machines_horizontal_history Table - Part 2 of 2</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=194><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">updatestotal</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=194>The number of updates received from the daemon.</TD>
</TR>
<TR><TD ALIGN="LEFT">updatessequenced</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=194>The number of updates that were in order.</TD>
</TR>
<TR><TD ALIGN="LEFT">updateslost</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=194>The number of updates that were lost.</TD>
</TR>
<TR><TD ALIGN="LEFT">globaljobid</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=194>Unique global identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">end_time</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=194>The end of when the ClassAd is valid.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of machines_vertical Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">machine_id</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Unique identifier of the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">attr</TD>
<TD ALIGN="LEFT">varchar(2000)</TD>
<TD ALIGN="LEFT">varchar(2000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Attribute name.</TD>
</TR>
<TR><TD ALIGN="LEFT">val</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Attribute value.</TD>
</TR>
<TR><TD ALIGN="LEFT">start_time</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Time when this attribute-value pair became valid.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> (machine_id, attr)</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">NOT NULL:</SPAN> machine_id and attr cannot be null</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of machines_vertical_history Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">machine_id</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Unique identifier of the machine.</TD>
</TR>
<TR><TD ALIGN="LEFT">attr</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Attribute name.</TD>
</TR>
<TR><TD ALIGN="LEFT">val</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Attribute value.</TD>
</TR>
<TR><TD ALIGN="LEFT">start_time</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Time when this attribute-value pair became valid.</TD>
</TR>
<TR><TD ALIGN="LEFT">end_time</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Time when this attribute-value pair became invalid.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>

</DIV>

<P>

<H3><A NAME="SECTION00934700000000000000">
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">7</SPAN> Matchmaking Tables</A>
</H3>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of matches Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=216><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">match_time</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=216>Time the match was made.</TD>
</TR>
<TR><TD ALIGN="LEFT">username</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=216>User who submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=216>Name of the schedd that the job is submitted to.</TD>
</TR>
<TR><TD ALIGN="LEFT">cluster_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=216>Cluster identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">proc_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=216>Process identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">globaljobid</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=216>Unique global identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">machine_id</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=216>Identifier of the machine the job matched with.</TD>
</TR>
<TR><TD ALIGN="LEFT">remote_user</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=216>User that was preempted.</TD>
</TR>
<TR><TD ALIGN="LEFT">remote_priority</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT">real</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=216>The preempted user's priority.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of rejects Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">reject_time</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Time when the job was rejected.</TD>
</TR>
<TR><TD ALIGN="LEFT">username</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>User who submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Name of the schedd that submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">cluster_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Cluster identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">proc_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Process identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">globaljobid</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Unique global identifier for the job.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>

</DIV>

<P>

<H3><A NAME="SECTION00934800000000000000">
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">8</SPAN> Runtime Tables</A>
</H3>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of events Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Name of the schedd that submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">cluster_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Cluster identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">proc_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Process identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">globaljobid</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Global identifier of the job that generated the event.</TD>
</TR>
<TR><TD ALIGN="LEFT">run_id</TD>
<TD ALIGN="LEFT">numeric(12,0)</TD>
<TD ALIGN="LEFT">numeric(12,0)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Identifier of the run that the event is associated with.</TD>
</TR>
<TR><TD ALIGN="LEFT">eventtype</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Numeric type code of the event.</TD>
</TR>
<TR><TD ALIGN="LEFT">eventtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Time the event occurred.</TD>
</TR>
<TR><TD ALIGN="LEFT">description</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Description of the event.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of generic_messages Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=238><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">eventtype</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=238>The type of event.</TD>
</TR>
<TR><TD ALIGN="LEFT">eventkey</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=238>The key of the event.</TD>
</TR>
<TR><TD ALIGN="LEFT">eventtime</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=238>The time of the event.</TD>
</TR>
<TR><TD ALIGN="LEFT">eventloc</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=238>The location of the event.</TD>
</TR>
<TR><TD ALIGN="LEFT">attname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=238>The attribute name.</TD>
</TR>
<TR><TD ALIGN="LEFT">attval</TD>
<TD ALIGN="LEFT">clob</TD>
<TD ALIGN="LEFT">text</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=238>The attribute value.</TD>
</TR>
<TR><TD ALIGN="LEFT">attrtype</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=238>The attribute type.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of runs Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">run_id</TD>
<TD ALIGN="LEFT">numeric(12)</TD>
<TD ALIGN="LEFT">numeric(12)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Unique identifier of the run.</TD>
</TR>
<TR><TD ALIGN="LEFT">machine_id</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Identifier of the machine where the job ran.</TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Name of the schedd that submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">cluster_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Cluster identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">proc_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Process identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">spid</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Subprocess identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">globaljobid</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Identifier of the job that was run.</TD>
</TR>
<TR><TD ALIGN="LEFT">startts</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Time when the job started.</TD>
</TR>
<TR><TD ALIGN="LEFT">endts</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT">ts(3) w tz</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Time when the job ended.</TD>
</TR>
<TR><TD ALIGN="LEFT">endtype</TD>
<TD ALIGN="LEFT">smallint</TD>
<TD ALIGN="LEFT">smallint</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>The type of ending event.</TD>
</TR>
<TR><TD ALIGN="LEFT">endmessage</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>The ending message.</TD>
</TR>
<TR><TD ALIGN="LEFT">wascheckpointed</TD>
<TD ALIGN="LEFT">varchar(7)</TD>
<TD ALIGN="LEFT">varchar(7)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Whether the run was checkpointed.</TD>
</TR>
<TR><TD ALIGN="LEFT">imagesize</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>The image size of the executable.</TD>
</TR>
<TR><TD ALIGN="LEFT">runlocalusageuser</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>The time the job spent in usermode on execute machines (only standard universe).</TD>
</TR>
<TR><TD ALIGN="LEFT">runlocalusagesystem</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>The time the job was in system calls.</TD>
</TR>
<TR><TD ALIGN="LEFT">runremoteusageuser</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>The time the shadow spent working for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">runremoteusagesystem</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>The time the shadow spent in system calls for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">runbytessent</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Number of bytes sent to the run.</TD>
</TR>
<TR><TD ALIGN="LEFT">runbytesreceived</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=180>Number of bytes received from the run.</TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">PRIMARY KEY:</SPAN> run_id</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT" COLSPAN=4><SPAN><SPAN  CLASS="textbf">NOT NULL:</SPAN> run_id cannot be null</SPAN></TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>

</DIV>

<P>

<H3><A NAME="SECTION00934900000000000000">
<SPAN CLASS="arabic">8</SPAN>.<SPAN CLASS="arabic">3</SPAN>.<SPAN CLASS="arabic">4</SPAN>.<SPAN CLASS="arabic">9</SPAN> System Tables</A>
</H3>
<DIV ALIGN="CENTER">
<TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of dummy_single_row_table Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=288><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">a</TD>
<TD ALIGN="LEFT">varchar(1)</TD>
<TD ALIGN="LEFT">varchar(1)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=288>A dummy column.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of history_jobs_to_purge Table</SPAN></SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Name of the schedd that submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">cluster_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Cluster identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">proc_id</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Process identifier for the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">globaljobid</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=230>Unique global identifier for the job.</TD>
</TR>
</TABLE>
<BR>
<BR>
<BR>
</DIV>
<P>
<DIV ALIGN="CENTER"><TABLE CELLPADDING=3 BORDER="1">
<TR><TD ALIGN="CENTER" COLSPAN=4><SPAN><SPAN  CLASS="textbf">Attributes of jobqueuepollinginfo Table</SPAN></SPAN></TD>
</TR>
<TR><TH ALIGN="LEFT"><SPAN  CLASS="textbf">Name</SPAN></TH>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">O. Type</SPAN></TD>
<TD ALIGN="LEFT"><SPAN  CLASS="textbf">P. Type</SPAN></TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187><SPAN  CLASS="textbf">Description</SPAN></TD>
</TR>
<TR><TD ALIGN="LEFT">scheddname</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>Name of the schedd that submitted the job.</TD>
</TR>
<TR><TD ALIGN="LEFT">last_file_mtime</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The last modification time of the file.</TD>
</TR>
<TR><TD ALIGN="LEFT">last_file_size</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT">numeric(38)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The last size of the file in bytes.</TD>
</TR>
<TR><TD ALIGN="LEFT">last_next_cmd_offset</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The last offset for the next command.</TD>
</TR>
<TR><TD ALIGN="LEFT">last_cmd_offset</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT">integer</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The last offset of the current command.</TD>
</TR>
<TR><TD ALIGN="LEFT">last_cmd_type</TD>
<TD ALIGN="LEFT">smallint</TD>
<TD ALIGN="LEFT">smallint</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The last type of command.</TD>
</TR>
<TR><TD ALIGN="LEFT">last_cmd_key</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The last key of the command.</TD>
</TR>
<TR><TD ALIGN="LEFT">last_cmd_mytype</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The last my ClassAd type of the command.</TD>
</TR>
<TR><TD ALIGN="LEFT">last_cmd_targettype</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The last target ClassAd type.</TD>
</TR>
<TR><TD ALIGN="LEFT">last_cmd_name</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The attribute name of the command.</TD>
</TR>
<TR><TD ALIGN="LEFT">last_cmd_value</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT">varchar(4000)</TD>
<TD ALIGN="LEFT" VALIGN="TOP" WIDTH=187>The attribute value of the command.</TD>
</TR>
</TABLE>
</DIV>

<P>

<P>
<A NAME="51763"></A>

<DIV CLASS="navigation"><HR>
<!--Navigation Panel-->
<A NAME="tex2html2455"
  HREF="8_4_CondorView_Client.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> 
<A NAME="tex2html2449"
  HREF="8_Contrib_Source.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> 
<A NAME="tex2html2443"
  HREF="8_2_Using_Condor.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> 
<A NAME="tex2html2451"
  HREF="Contents.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A> 
<A NAME="tex2html2453"
  HREF="Index.html">
<IMG WIDTH="43" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="index" SRC="index.png"></A> 
<BR>
<B> Next:</B> <A NAME="tex2html2456"
  HREF="8_4_CondorView_Client.html">8.4 The CondorView Client</A>
<B> Up:</B> <A NAME="tex2html2450"
  HREF="8_Contrib_Source.html">8. Contrib and Source</A>
<B> Previous:</B> <A NAME="tex2html2444"
  HREF="8_2_Using_Condor.html">8.2 Using Condor with</A>
 &nbsp; <B>  <A NAME="tex2html2452"
  HREF="Contents.html">Contents</A></B> 
 &nbsp; <B>  <A NAME="tex2html2454"
  HREF="Index.html">Index</A></B> </DIV>
<!--End of Navigation Panel-->
<ADDRESS>
condor-admin@cs.wisc.edu
</ADDRESS>
</BODY>
</HTML>