-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangelog
1682 lines (1280 loc) · 69 KB
/
Changelog
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
################################################################################
# This is the Changelog for Grid Engine source code changes. #
# Possible keywords: "Bugfix", "Belongs to", "Review", "Enhancem.", #
# "Merged from", "Cleanup", "Issue", "Bugster" #
# #
# ===== PLEASE DO NOT DELETE THIS HEADER ==== #
################################################################################
1 2 3 4 5 6 7
01234567890123456789012345678901234567890123456789012345678901234567890123456789
JG-2011-04-18-0: Bugfix: dbwriter installation should expect Java 6
Issue: AR-9
Review: SH
JG-2011-04-07-0: Cleanup: cleaned up and updated build instructions
Review: DG
JG-2011-04-06-1: Bugfix: change install text about arco_read user
Issue: AR-3
Review: DG
JG-2011-04-06-0: Bugfix: dbwriter statistics thread throws error
Issue: AR-4
Review: SH
JG-2011-03-29-0: Cleanup: minor code cleanup and fix to compiling the JUnit
tests.
JG-2011-03-23-1: Cleanup: removed the reporting code (Web-Console)
Issue: AR-1
Review: DG
JG-2011-03-23-0: Bugfix: fixed the build with current versions of tools
(Java, ant, jaxb, removed dependency to jwsdp)
Cleanup: removed old review directory
Issue: AR-2
Review: DG
mD-2009-12-11-0: CVS: Created V62u5_TAG
-------------------------------------------------------
MD-2009-12-09-0: CVS: Created V62u5RC2_TAG
-------------------------------------------------------
MD-2009-12-02-1: CVS: Created V62u5RC1_TAG
-------------------------------------------------------
MD-2009-12-01-0: Enhancem: checkin version file
LP-2009-11-27-0: Bugfix: dbwriter.conf can not be read during upgrading
dbwriter
Bugster: 6902920
Issue: 3187
Bugfix: dbwriter installer shows error message if SGE_ROOT
is not set
Bugster: 6902923
Issue: 3187
Review: MD
SH-2009-11-25-0: Bugfix: Fixed TestParsing.java junit test
Review: CR
MD-2009-11-19-0: CVS: Created V62u5beta2_TAG
-------------------------------------------------------
MD-2009-11-17-0: CVS: Created V62u5beta1_TAG
-------------------------------------------------------
MD-2009-11-09-0: CVS: Created V62u5alpha2_TAG
-------------------------------------------------------
LP-2009-11-06-0: Bugfix: Cannot install dbwriter as root when
$SGE_ROOT/dbwriter is owned by root and
admin_user!=root
Bugster: 6894239
Issue: 3173
Review: MD
CR-2009-10-19-0: Cleanup: Enhanced logging in junit tests
Merged from: V61_BRANCH
Review: AP
MD-2009-10-02-0: CVS: Created V62u4_TAG
-----------------------------------------------------
MD-2009-09-21-0: Enhancem.: updated version to 6.2u4
LP-2009-09-01-0: Bugfix: SMF services should be started even when different
SMF service starts them
Bugster: 6877588
Issue: 3124
Review: MD
JO-2009-06-23-0: Enhancem.: Fixed typos in arco_faq.html
JO-2009-06-22-0: Enhancem.: Updated arco_faq.html
MD-2009-06-15-0: CVS: Created V62u3_TAG
-----------------------------------------------------
MD-2009-04-21-0: CVS: Created V62u3beta_TAG
-----------------------------------------------------
RD-2009-02-16-0: CVS: Created V62u2_TAG
-----------------------------------------------
RD-2009-02-11-0: CVS: Created V62u2_RC2_TAG
---------------------------------------------------
AP-2009-02-10-0: Bugfix: PostgreSQL jdbc driver is not bundled in packages,
must be handled.
Belongs to: AP-2009-02-03-0
Review: JO
RD-2009-02-03-0: CVS: Created V62u2_RC1_TAG
---------------------------------------------------
AP-2009-02-03-0: Bugfix: SQL queries don't display all column values and
saving of the result causes an exception
Bugster: 6792542
Issue: 2869
Review: JO
AP-2009-01-26-0: Bugfix: File permissions must be set by admin user
Review: JO
RD-2008-12-12-0: CVS: Created V62u2beta_TAG
---------------------------------------------------
RD-2008-12-09-0: CVS: Created V62u2alpha2_TAG
-----------------------------------------------------
RD-2008-11-28-0: CVS: Created V62u2alpha1_TAG
-----------------------------------------------------
AP-2008-11-19-0: Bugfix: Dbwriter is not starting after reboot of the machine
Bugster: 6764942
Issue: 2790
Review: DG
MD-2008-11-13-0: CVS: Created V62u1_TAG
-----------------------------------------------
AP-2008-10-30-0: Bugfix: Updating Changelog entry
Belongs to: AP-2008-10-20-0
AP-2008-10-20-0: Bugfix: adding the missing file BigDecimalField.java
Belongs to: AP-2008-10-17-0
Review: JO
JO-2008-10-17-0: Bugfix: dbwriter installation fails if admin_user in bootstrap file is 'none'
Bugster: 6743431
Issue: 2712
Review: LP
AP-2008-10-17-0: Bugfix: All foreign and primary keys in db_definition.xml
should be defined as bigint
Bugster: 6717825
Issue: 2626
Review: JO
JO-2008-09-25-0: Enhancem.: Fixed Cangelog entry
JO-2008-09-12-0: Bugfix: Fixed commit JO-2008-08-26-0 - database version upgrade needs to be enhanced
Review: LP
JO-2008-09-10-0: Bugfix: dbwriter keeps crashing due to inability to close the open cursors
Bugster: 6745913
Issue: 2722
Review: LP
JO-2008-08-29-0: Bugfix: parameters are not replaced during database connection test
Bugster: 6742976
Issue: 2708
Bugfix: Correction of commit: AP-2008-08-14-0
Review: AP
JO-2008-08-27-0: Enhancem.: Updated files in www directory for sunsource.net
Review: AP
JO-2008-08-26-0: RFE: database version upgrade needs to be enhanced
Bugster: 6647720
Issue: 2453
Bugfix: reporting installation fails with SJWC 3.0.x if $JAVA_HOME is not set to java version at least 1.5
Bugster: 6740388
Issue: 2696
Bugfix: dbwriter installation doesn't exit when an SQL error happens during database install/upgrade
Bugster: 6740404
Issue: 2697
Bugfix: Upgrading dbwriter from 6.1u4, 6.1u5 to 6.2 fails on MySQL
Bugster: 6740420
Issue: 2698
Review: AP
AP-2008-08-14-0: Bugfix: Instalation script for reporting "assumes" correct
permission settings for instalation files
Bugster: 6734854
Issue: 2690
Review: LP
JO-2008-08-07-0: Enhancem.: Updated files in www directory for sunsource.net
Review: AP
JO-2008-08-05-0: RFE: ARCo should support SJWC 3.1
Bugster: 6733626
Issue: 2683
Review: AP
MD-2008-07-31-0: CVS: Created V62_TAG
-------------------------------------------
JO-2008-07-28-0: Enhancem.: Updated files in www directory for sunsource.net
Review: AP
JO-2008-07-24-0: Bugfix: Exception occurs during the exportation of a query result to pdf
Bugster: 6729353
Issue: 2676
Review: AP
LP-2008-07-22-0: Cleanup: Removed sunsource.net link from SMF service template
Bugfix: tr command has wrong replace arguments in some
places
Bugfix: Installation fails when another cluster already uses
RC scripts on Linux
Bugster: 6728406, 6727751
Review: MD, AP
JO-2008-07-10-0: Bugfix: PDF output does not span over multiple pages
Bugster: 6254027
Issue: 2649
Bugfix: arcorun: Unexpected Error: Could not load the translet class 'GregorSamsa'
Bugster: 6254021
Issue: 2648
Review: AP
AP-2008-07-09-0: Bugfix: dbw install parameters are not verified
removed no longer existing SourceSmfSupport function
Bugster: 6713362
Issue: 2642
Review: JO
RD-2008-07-07-0: Cleanup: corrected the man page when build without catman
Review: AA
JO-2008-06-19-0: Bugfix: Wallclock_Time query should be more constrained
Bugster: 6715561
Issue: 2620
Review: AP
RD-2008-06-10-1: CVS: Created V62beta2_TAG
--------------------------------------------------
RD-2008-06-10-0: Bugfix: reverted RD-2008-06-09-0
JO-2008-06-09-0: Bugfix: Exception in reporting when running query after running result
Bugster: 6712075
Review: RD
RD-2008-06-09-0: Bugfix: corrected copyright header
Review: JO
JO-2008-05-28-0: RFE: Arco dbwriter should be uninstallable
Bugster: 6661540
Review: LP
Cleanup: Removed dbwriter.sh script
RD-2008-05-05-0: CVS: Created V62beta_TAG
-----------------------------------------------
AP-2008-05-05-0: Enhancem.: Adding License agreement to installation scripts
JO-2008-04-30-0: Bugfix: AdvancedReservationManager needs to include another field as primary key field
Bugster: 6691982
Review: JG
AP-2008-04-28-0: Bugfix: TABLESPACE values should be written to dbwriter.conf
Bugster: 6684968
Issue: 2566
Review: JO
PJ-2008-04-25-0: Bugfix: Exception when switching cluster in ARCo GUI
Bugster: 6692055
Bugfix: Simple Query builder does not repopulate dropdown menus when cluster changed
Bugster: 6693980
Bugfix: ARCo should not print exception stack trace in the console
Bugster: 6694003
Issue: 2565
Review: JO
RD-2008-04-21-0: CVS: Created V62beta_RC2_TAG
---------------------------------------------------
JO-2008-04-17-0: Enhancem.: o Removed PostgreSQL jdbc driver from distribution
o Fixed reporting online-hlep mistakes
Review: AP
PJ-2008-04-07-0: Bugfix: Problem with case sensitivity for queries in ARCo
Bugster: 6684918
Bugfix: Switching from Simple Query to Advanced Query removes the Latebingings
Bugster: 6680905
Issue: 2536
Review: JO
RD-2008-03-04-0: CVS: Created V62beta_RC1_TAG
---------------------------------------------------
JO-2008-03-31-0: Enhancem.: changed messages according to Janice advice
Review: AP
JO-2008-03-27-0: Enhancem.: Fixed typos, consistency changes, changed messages according to Janice advice
Review: AP
PJ-2008-03-27-0: Bugfix: Latebindings for Advanced Queries does not work
Bugster: 6677885
Issue: 2529
Bugfix: Repaired object synchronization in ArcoServlet
Bugfix: Fixed online help for advance query latebindings
Review: JO
PJ-2008-03-20-0: Bugfix: Advanced Query with wild card character * does not produce correct results.
Enhancem.: The SQLQueryResultsets is following the names from the database row set meta data.
Enhancem.: The lifecycle of the SQLQueryResultsets is optimised. Passivate is being called in finally
Enhancem.: Unused statements and results pro ArcoDbConnection is removed
Enhancem.: The arco.xsd is reorganised. The related parts are moved together.
Bugster: 6511009
Review: LP
LP-2008-03-18-1: Bugfix: Fixed typo from LP-2008-03-18-0
Review: JO
LP-2008-03-18-0: Enhancem.: Added useful message for users when startup fails
with SMF
Review: JO
AP-2008-03-17-0: Bugfix: Fix of incorrect usage summary for larger databases.
Enhancem.: ARCo reporting installation - get all required SWC
information for installation.
Review: JO, LP
PJ-2008-03-03-0: Bugfix: Validation of the Filter List in Simple Query builder fails
Bugfix: Row Limit in ARCo Simple Query builder cannot be empty
Bugster: 6670264, 6661461
Review: JO
PJ-2008-02-29-0: Bugfix: Row Limit in ARCo Simple Query builder cannot be empty
Bugster: 6661461
Review: JO
PJ-2008-02-28-0: Bugfix: Sort order and row limit cannot be specified together in
ARCo Simple Query builder
Bugster: 6661470
Issue: 2487
Review: JO
JO-2008-02-28-0: Enhancem.: Enhanced reporting test SQLGeneratotTest
Review: PJ
JO-2008-02-27-0: Bugfix: Fixed commit JO-2008-02-22-0 to work with arcorun
Review: PJ
JO-2008-02-22-0: Bugfix: In SJWC on Oracle dates appear truncated to just MM/DD/YYYY
Bugster: 6661500
Issue: 2503
Review: AP
AP-2008-02-20-0: Bugfix: ARCo reporting module installation script is broken
on Red Hat Enterprise Linux 4 Update 4
Bugster: 6663741
Issue: 2498
Review: JG
JO-2008-02-15-0: Bugfix: Batch failure on Oracle database.
Bugster: 6659300
Review: PJ
JO-2008-02-11-0: Bugfix: Queries Average Job Turnaround Time and Average Job Wait Time irresponsive on MySQL
Bugster: 6661473
Review: AP
AP-2008-02-06-0: Bugfix: Correct the field name in dbwriter.xml for mysql
to ju_exit_status
RD-2008-02-04-0: CVS: Created V62alpha1_TAG
---------------------------------------------------
LP-2008-02-01-0: Cleanup: Cleanup to use new GetCell functionality (detection)
Review: PJ
JO-2008-02-01-0: Cleanup: got rid of 5.3 specific code
got rid of word Please in prompts
changes for consistency
other minor cosmetic changes
Review: PJ
PJ-2008-01-31-0: Bugfix: ORDER BY clause ignored in Advanced Query
Bugster: 6598005
Issue: 2354
Review: JO
LP-2008-01-25-0: Enhancem.: Improvements to SMF support
Cleanup for java 1.5
PJ-2008-01-25-0: Bugfix: Sort on table column throws exception
if explicit SORT specified in
SimpleQuery Sort on table column
Bugster: 6549694
Issue: 2344
Review: LP
AP-2008-01-22-0: Bugfix: deletion rule for PostgreSQL incorrect for deletion
of sge_share_log
Bugster: 6653090
Issue: 2468
Review: JO
PJ-2008-01-16-0: Bugfix: Row Limit in Simple Query uses wrong syntax
Bugster: 6640762
Issue: 2444
Review: JO
LP-2008-01-16-0: Bugfix: PID file is not automatically removed
PJ-2008-01-16-0: Enhancem.: Change ClusterIndex to ClusterName, ready for unique
SGE_CLUSTER_NAME
Review: JO
AP-2008-01-16-0: Bugfix: Wrong variable for calculating daily host values from
hourly ones
DBW derived rules and reporting queries that count
jobs need to be updated - updating views view_accounting,
view_job_times, view_jobs_completed
Updating queries, fixing sql statements, adding
descriptions
Bugster: 6457900, 6638354
Issue: 2463, 2440
Review: JO
JO-2008-01-15-0: Enhancem.: Changed project.xml to use java 1.5
LP-2008-01-10-0: Enhancem.: Removed version string from SMF service name
AP-2008-01-09-0: Bugfix: fix of PJ-2007-12-07-0 commit
JO-2008-01-09-0: Enhancem.: Changed FileParser so it would parse the reporting
file even if the 'acct' line does not contain ar_number
Added test for parsing line without ar_number
Updated arco run man page
LP-2008-01-09-0: Enhancem.: dbwriter_template.xml is now in
dbwriter/util/sgeSMF directory
Bugfix.: Fixed db select in reporting installation
Review: AP
LP-2008-01-08-0: Enhancem.: ReportingDBWriter reads in dbwriter.conf
Enhancem.: ARCo now must use Java 1.5+
Review: JO
LP-2008-01-04-0: Enhancem.: Initial SMF support
Review: JG
JO-2008-01-04-0: RFE: dbwriter should write checkpoint to database
Bugster: 6644709
Issue: 2450
Review: LP
JO-2007-12-21-0: Bugfix: Correction of previous Cleanup.
JO-2007-12-19-0: RFE: dbwriter should support schemas for Postgres db installation
Bugster: 6643273
Issue: 2448
Review: AP
Bugfix: ARCo online help contains invalid, unclear or outdated information
Bugster: 6634786
Issue: 2434
Review: JG
Cleanup: droped columns j_open, ju_state, changed relevant src and test files
Review: AP
AP-2007-12-18-0: Bugfix: Queue Consumables query incorrect in ARCo predefined
queries
adding missing tablespace syntax into postgreSQL
dbdefinition
Bugster: 6598176
Issue: 2373
Review: JO
PJ-2007-12-07-0: RFE: ARCo should support multi-clusters
Bugfix: Error.jsp contains unbalanced tagError.jsp
Bugfix: Reporting 'View' dropdown menu and 'Save Result' functionality is confusing
Bugster: 6556389, 6638329
Issue: 2245,2439
Changed: reporting
Review: JO,JG
AP-2007-12-05-0: Bugfix: arco_read should be able to create synonyms
instead of arco_write
Bugster: 6565635
Issue: 2282
Review: JO
JO-2007-12-03-0: RFE: DBW should use batch inserts
Bugster: 6566325
Issue: 2285
Bugfix: DBWriter should not exit if there is a database connection error
Bugster: 6636466
Issue: 2438
Review: RH
AP-2007-11-07-0: Bugfix: o ju_exit_status should provide means to recognize
the intermediate record
o fix of correction of usage summary for Oracle db
Bugster: 6621482
Review: JO
AP-2007-11-06-0: Bugfix: Added Wallclock Time example query for Postgresql db.
JO-2007-10-31-0: Bugfix: Long running jobs cause incorrect usage summary from ARCo database
Bugster: 6618599
Issue: 2414
Review: AP
AP-2007-10-31-0: Bugfix: o Oracle, Postgres DWB should prompt for tablespace
where indexes and tables should be created
o recompile views dependend on altered tables
Bugster: 6565821
Issue: 2283
Review: JO
RD-2007-10-24-0: CVS Created V61ARsnapshot3_TAG
--------------------------------------------------------
JO-2007-10-24-0: Bugfix: ARCO view_accounting filters out parallel job usage incorrectly
Bugster: 6620930
Issue: 2415
Review: AP
JO-2007-10-23-0: Bugfix: o Returned method commit and rollback in Database class to previous state,
state where they are not checking if connection is closed
o removed some unnecessary logs
AP-2007-10-23-0: Bugfix: During the installation the admin user should create web.xml file
Bugster: 6620253
Review: JG
JO-2007-08-06-0: Refactoring: Class, method name changes, new package
Review: JG
JO-2007-07-20-0: Bugfix: Oracle: rollback segments keep filling up, Postgres: delete query keeps running
Bugster: 6565841
Issue: 2284
Bugfix: sge_queue_values definition does not contain PRIMARY KEY
Bugster: 6572801
Issue: 2309
Bugfix: Oralce, Postgres FOREIGN KEY fields need to be indexed
Bugster: 6574565
Issue: 2317
Changed: dbwriter, common, tests
Bugfix: o refactored classes Advanced* to Advance*
o changed view_ar_time_usage
o adjusted AR code to be compatible with the bugs above
o changed build.properties to use 8.1 postgres driver
Review: LP
JO-2007-05-30-0: RFE: Wrong usage of 'day' format model in trunc(date) Oracle functions
Bugster: 6563346
Issue: 2266
Changed: Oracle queries in reporting, dbwriter.xml
Review: AP
RD-2007-05-29-0: CVS Created V61AR_BRANCH
------------------------------------------------
JO-2007-05-28-0: RFE: DBW MySql query Average Job Turnaround Time causes exception
Bugster: 6556411
Changed: MySql, Oracle queries in reporting
Review: AP
JO-2007-05-23-0: RFE: Arco should support webconsole 3.0.x
Bugster: 6481737
Changed: arcorun, inst_reporting, build.xml, build.properties,
util, src
Review: AP
AP-2007-05-09-0: Bugfix: o arcorun can not be used as sge_admin user if the toc
file is not available
o Need a possibility to update exiting example queries
for the ARCo web application
Bugster: 6355674, 6514085
Issue: -, 2164
Changed: inst_reporting
Review: JG
JO-2007-05-04-1: Enhancem.: Added code for Advanced Reservation
Changed: dbwriter, reporting, common, testsuite
Review: JG, EB
JO-2007-05-04-0: CVS Created V61_BRANCH
----------------------------------------------
RD-2007-04-24-0: CVS Created V61_TAG
-------------------------------------------
JO-2007-04-24-0: Bugfix: Rollback commit from JO-2007-02-05-0:
Code change throws Exception when trying to edit Result
Review: JG
JO-2007-04-20-0: Bugfix: Pivot for ARCo Accounting Queries does not show all the fields
Bugster: 6546370
Issue: 2230
Review: EB
AP-2007-04-13-0: Bugfix: Updating the online documentation. Adding
the description of statistic tables.
Bugster: 6545277
RD-2007-03-14-0: CVS Created V61beta2_TAG
--------------------------------------------------
JO-2007-03-13-0: Bugfix: DBwriter should not use AutoCommit mode
Bugster: 6506690
Issue: 2139
Changed: dbwriter, test
Review: RH
JO-2007-02-21-0: Bugfix: Correction: entered default value for man.mode
property
JO-2007-02-20-0: Bugfix: Enhance build.xml and build.properties for building
man pages
Review: RH
AP-2007-02-20-0: Bugfix: Changing the default dbversion property in
DBWriterTestConfig.properties.template
RD-2007-02-14-0: CVS Created V61beta_TAG
-------------------------------------------------
AP-2007-02-15-0: Bugfix: o Adding missing tables and views to TestDB.java
o Switched off the autocommit mode for oracle and
mysql
o excluding non-existing TestDelete from test target
in build.xml
Review: RH
AP-2007-02-15-0: Bugfix: Typo in example query DBWriter_Performance
Review: RH
JO-2007-02-05-0: Bugfix: Changed code that prevented ARCo to run SWC 3.0
Removed ambiguous entries in web.xml
Review: RH
RD-2007-02-02-0: CVS Created V61preview2_TAG
-----------------------------------------------------
RD-2007-02-01-0: Bugfix: fixed man page creation
Review: RH
PJ-2007-01-25-0: Bugfix: sgedbwriter -debug does not create the dbwriter.pid
file when suspend=y in -Xrunjdwp option
Bugster: 6439438
Changed: dbwriter
Review: RH
RH-2007-01-17-0: Enhancem.: need database statistics in ARCO (database + query)
Bug-Id: 6225522
Review: JG
AP-2007-01-18-0: Bugfix: ARCo should work with MySQL
Bugster: 5093930
Changed: common, dbwriter, reporting
Review: RH
JO-2007-01-15-0: Bugfix: Save button is not enabled after ANY modification
Bug-Id: 6511013
Changed: reporting
Review: RH
RH-2007-01-10-0: Bugfix: Junit test TestDerivedValues#vaccumAnalyse did
not test the result of the VACCUM ANALYZE
Review: AA
RH-2007-01-09-0: Bugfix: reading test configuration from file did
not work
Review: JG
AP-2007-01-03-0: Bugfix: dbwriter should not use autocommit mode
Bug-Id: 6506690
Issue: 2139
Changed: dbwriter
Review: AA
JO-2006-12-20-0: Bugfix: A symbol character in table heading name causes an unexpected error
Bug-Id: 6469715
Changed: reporting
Review: RH
RD-2006-12-13-1: CVS Created V61preview_TAG
----------------------------------------------------
RD-2006-12-13-0: Enhancem. Added scripts/snapshot.csh
Review: AA
AA-2006-12-12-0: Cleanup: - Readd of repository
------------------------------------------------------------------------------
AA-2006-12-08-0: Cleanup: - branding
- removal of obsolete files
AA-2006-12-07-0: Cleanup: - removal of doc dir
AA-2006-12-01-0: Cleanup: - removal of jtestcase dependency
- additional copyrights
- build files
JG-2006-11-27-0: Bugfix: Some columns in the ARCo database were too small.
Bug-id: 6439443
Fixed retrieval from sge_version table.
Load libjuti with N1GE > 6.0 systems.
Review: RH
AA-2006-11-24-0: Cleanup: moved testsuite to project
testsuite testsuite/src/checktree_arco
and removed rrviewer
AA-2006-11-21-1: Cleanup: copyright headers, comment cleanup
AA-2006-11-21-0: CVS created V60_ARCO_BRANCH in new repository
common, dbwriter, reporting, rrviewer now
under source
------------------------------------------------------------------------------
PJ-2006-10-27-0: Bugfix: dbwriter can not process nonnumerical host values
Bug-id: 6457961
Changed: arco
Review: RH
PJ-2006-10-20-0: Bugfix: clean target do not call clean from commons
Changed: arco
Review: RH
RH-2006-09-20-0: Enhancem.: dbwriter ant scripts uses compilearch script
to determine sge.src.arch property
Review: AA
JG-2006-08-03-0: Enhancem.: Optionally build dbwriter with instrumentation
for code coverage analysis (emma).
Call build process and dbwriter accordingly
from testsuite.
Review: RH
RH-2006-04-26-0: Bugfix: ARCo webapplication can not display results with
empty value tags
Bug-Id: 6418074
Changed: reporting
Bugfix: customers which have no administration privileges
on the database can not install ARCo
Bug-Id: 6412237
Changed: common, dbwriter
Review: AA
RD-2006-04-26-0: CVS Created V60u8_TAG
------------------------------------------------------------------------------
RD-2006-04-19-0: Bugfix: build additional arocrun manpages
Review: RH
RH-2006-04-12-0: Bugfix: dbwriter can not handle memory values with the suffix 'G'
Bug-Id: 6411652
Changed: dbwriter
Review: RD
RH-2006-04-10-0: Bugfix: All users may edit or delete queries in arco web application
Bug-Id: 6409035
Changed: reporting
Enhancm.: oracle support for ARCo checktree added
Changed: testsuite
Review: JG
RH-2006-03-30-0: Bugfix: dbwriter can not handle strings with a ' character
Bug-Id: 6400768
Bugfix: vacuum analyze causes performance problems
Bug-Id: 6396069
Enhancm.: dbwriter checks version of database model at startup
Changed: dbwriter
Review: AA
DT-2005-12-23-0: Enhancem.: o Moved utils out of libdrmaa into libutil
Review: pending (RH)
Changed: dbwriter
RH-2005-12-19-1: Changes in the arco database model documented
Changed: reporting online help
Review: AA
RH-2005-12-19-0: Bugfix: missing entry in table sge_job if job number is reused
Bug-Id: 6359492
Changed: dbwriter
Testsuite: o job_log checks added for dbwriter
o arcorun checks moved into checktree subdirectory
Review: JG
RD-2005-12-13-0: CVS Created V60u7_TAG
------------------------------------------------------------------------------
RH-2005-11-29-1: Bugfix: o high cpu utilisation of arco reporting module
o adding a graph in the view configuration leads to a NullPointerException
Bug-Id: 6356369, 6356379
Changed: reporting
Review: AA
RH-2005-11-29-0: Version number set to 6.0u7
Changed: build.properties
DT-2005-11-28-0: Docs: o Added -n to arcorun man page
- Merged from DT-2005-11-28-0 (V60s2_BRANCH)
Changed: arcorun man page
RH-2005-11-28-0: Testsuite: ARCO junit tests use the jar files from SGE_ROOT
Changed: testsuite reporting/build.xml dbwriter/build.xml
Review: RD
RH-2005-11-24-1: Enhancm. Man pages can now be built with mk_ascman and mk_catman
Changed: reporting/build.xml
Review: AS
RH-2005-11-24-0: Bugfix: Missing error messages for arcorun in ResourceBundle
added
Changed: Resource.properties
Testsuite: Tests for arcorun added
Changed: Testsuite
Review: AA
DT-2005-11-23-0: Bugfix: o Update build file for man page
Bug-id: 6353093
Changed: reporting/build.xml
Review: RH
RH-2005-11-23-1: Bugfix: arcorun gives stack traces for error output
Changed: arcorun
Review: AA
RH-2005-11-23-0: Testsuite: Installation of the arco reporting module added
Changed: testsuite
Review: CR
DT-2005-11-22-0: Docs: o Added arcorun man page
RH-2005-11-22-2: Bugfix: ARCo web application does not know the SQL key
word distinct
Bug-Id: 6344702
Review: AA
RH-2005-11-22-1: Bugfix: NullPointerException when converting a simple
query into an advanced query
Bug-Id: 6353541
Review: AH
RH-2005-11-22-0: Bugfix: It is not possible to have two queries/result
with the same name
Bug-Id: 6351846
Enhancem.: It should be possible to modify the name of a
result with the arcorun util
Bug-Id: 6351851
Bugfix: sgedbwriter script fails when executed as root
when spooling on root=nobody
Bug-Id: 6351818
Changed: reporting, dbwriter, common, testsuite
Review: AA
DT-2005-11-18-0: Bugfix: o Fixed inst_dbwriter script
Bug-id: 6353093
Changed: inst_dbwriter
Review: RH
RH-2005-11-14-0: dbwriter: The oracle calculation file of the dbwriter
contains an invalid username
Bug-Id: 6349592
Review: CR
RH-2005-11-09-0: Testsuite: - arco_junit tests integrated
Build: - environment variable ANT_OPTS is now
considered
- build scripts stops if the build of one
target fails
dbwriter: install_dbwriter uses -d32 as jvm option. This
option is not supported by all jdks
Review: AA
RH-2005-11-03-1: Enhancem.: Online help for ARCo webapplication added
Changed: reporting
Review: RD
RH-2005-11-03-0: Testsuite: checktree for arco testsuite tests implemeneted
Changed: testsuite
Review: CR
RH-2005-10-12-1: Bugfix: inst_reporting has an "S" missing in SWC_VERSION
Bug-Id: 6325118
Changed: reporting
Review: MD
RH-2005-10-12-0: Bugfix: javascript method that displays the description of query/result does not work
Bug-Id: 6330099
Changed: reporting
Review: MD
Bugfix: missing id assignment in Database connection object
Changed: dbwriter
Review: MD
RH-2005-09-16-0: Bugfix: should not show stack trace if query is invalid
Bug-Id: 6312983
Changed: reporting
Review: RD
RH-2005-09-12-0: Bugfix: dbwriter does not provide an error message if it is started twice
Bug-Id: 6320694
Bugfix: dbwriter can hang on shutdown
Bug-Id: 6320688
Changed: dbwriter
Review: AA
RH-2005-08-17-0: Bugfix: VACUUM ANALYZE is not executed, if a derived value/deletion rule fails
Bug-Id: 6274376
Bugfix: empty strings in reporting line are not accepted
(introduced with Bugfix RH-2005-07-22-0)
Changed: dbwriter
Review: HP
RH-2005-08-16-0: Bugfix: PDF output missinterprets time field as date
Bug-Id: 6254020
Enhancm.: graphical output should allow customization or suppression of data labels
Bug-Id: 6269476
Changed: reporting
Review: AA
RH-2005-07-27-0: Bugfix: startup of dbwriter fails if the 64-Bit version of java is not installed
Bug-Id: 6302373
Changed: dbwriter installation
Review: AA
RH-2005-07-22-0: Bugfix: in sge_host_values, hv_svalue not always convert to hv_dvalue
Bug-Id: 6278900
Bugfix: dbwriter exits if a float value contains Inf or NaN
Bug-Id: 6298062
Enhancem.: dbwriter does not stop if a line of the reporting source
file can not be parsed.
Changed: dbwriter
Review: AA
RH-2005-07-19-0: Enhancem. sql threshold implemented (dbwriter writes warning
if the execution of a sql statement takes longer then
the sql threshhold).
Bugfix: Bad performance of determining max id in arco tables (PostgreSQL)
Bug-Id: 6274371
Changed: dbwriter
Review: AH
------------------------------------------------------------------------------
AS-2005-04-26-0: CVS Created V60u4_TAG
RH-2005-04-26-1: Bug: Typos in help window
Changed: reporting
RH-2005-04-26-0: Bug: Invalid servlet mapping for version servlet fixed
Changed: reporting
RH-2005-04-25-1: Obsolete file html/en/example_app.html remove
Changed: reporting
RH-2005-04-25-0: Bug: db_writer does not start on sol-amd64 with
Java 1.5
Bug-Id: 6260585
Review: RD
RH-2005-04-19-0: Bug: HTML Output never includes the SQL query
Bug-Id: 6254007
Bug: arcorun does not include the default table in
HTML output
Bug-Id: 6254013
Review: RD
RH-2005-04-18-0: Bug: - The reporting module can be new installed
without modification of the distribution
files.
Bug-Id: 6256463
Changed: dbwriter, reporting
Review. RD
RD-2005-04-12-0: Bug: inst_dbwriter script error
in case $SGE_ROOT/dbwriter is not writeable
Changed: inst_dbwriter and inst_reporting
Review: RH
RH-2005-04-11-1: Spacing before table in pdf export added
Changed: reporting
Review:
RH-2005-04-11-0: inst_reporting does not complain if the java
web console is not running
Changed: reporting
Review: JG
RH-2005-04-07-3: Bug: Query "Job Log" creates weird pivot table in pdf output
Bug-Id: 6251219
Changed: reporting