Title: | DECmcc user notes file. Does not replace IPMT. |
Notice: | Use IPMT for problems. Newsletter location in note 6187 |
Moderator: | TAEC::BEROUD |
Created: | Mon Aug 21 1989 |
Last Modified: | Wed Jun 04 1997 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 6497 |
Total number of notes: | 27359 |
Background exporter job is terminated 5 minutes after startup with "%MCC-W-THRMAX, maximum thread count reached" in the log file. What is the caused of this ? too many exported entity ? Is there a work around ? Andrew -------------------------- MCC_EXPORTER_BACKGROUND.LOG $set noverify $ IF P1 .NES. "" THEN GOTO START_BTS $ START_BTS: $! $! $! When a system is rebooted background process has to wait $! until MCC_MTS_PRIV_SHR.EXE and RDBSHR.EXE are installed. $! This procedure checks if the required images are installed $! and wait SLEEPINTERVAL time for another attempt. The $! number of attempts is defined in WAITPERIOD. $! $ SLEEPINTERVAL = "00:00:30" ! 30 sec $ WAITPERIOD = 40 ! $! $ COUNT = 0 $! $ LOOP: $! $! suppress messages $ DEFINE/USER_MODE SYS$ERROR NL: $ DEFINE/USER_MODE SYS$OUTPUT NL: $! $ install list sys$share:mcc_mts_priv_shr.exe $ SVRT1 = $SEVERITY $! $! suppress messages $! $ DEFINE/USER_MODE SYS$ERROR NL: $ DEFINE/USER_MODE SYS$OUTPUT NL: $! $ install list sys$share:rdbshr.exe $ SVRT2 = $SEVERITY $! $ IF (SVRT1 .AND. SVRT2) THEN GOTO OKAY $ OKAY: $ WAIT 00:00:30 $! $! end_of wait procedure $! $! $ BTS == "$SYS$SYSTEM:MCC_EXPORTER_FM_BG.EXE" $ BTS "DKA0:[REPORTS]MCC_DB.RDB" "15" %MCC-W-THRMAX, maximum thread count reached $ EXIT NETMAN job terminated at 7-OCT-1994 08:14:54.77 Accounting information: Buffered I/O count: 1027 Peak working set size: 21254 Direct I/O count: 2114 Peak page file size: 68753 Page faults: 18218 Mounted volumes: 0 Charged CPU time: 0 00:01:40.65 Elapsed time: 0 00:04:44.54
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
6130.1 | 512 threads is the limit you reach | TAEC::LAVILLAT | Fri Oct 07 1994 05:40 | 13 | |
Andrew, The Exporter FM on both VMS and ULTRIX has an harcoded limit of 512 threads. The work around is to export less entities or to split the export in different export requests started by different jobs. Regards. Pierre. | |||||
6130.2 | NUmber of threads in exporter is limited | AZUR::DURIF | Fri Oct 07 1994 05:56 | 10 | |
Hello, Number of threads is limited to 500. This means that you cannot export more than 500 entities. In fact it is less than that. How mant entities do you export ? Benoit DURIF | |||||
6130.3 | thanks... | GIDDAY::CHONG | Andrew Chong - Sydney CSC | Sun Oct 09 1994 05:04 | 10 |
Its difficult to determine how many entities the customer is exporting. They use wild card export. Its is however quite possible that they have reached 500. The last count about a month ago there were more then 400. It was still working then , though they had other problems, but that's another story (or should I say saga !). Thanks Andrew |