× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.


  • Subject: RE: CGI-RPG performance question
  • From: rob@xxxxxxxxx
  • Date: Mon, 19 Mar 2001 11:58:25 -0500


Based on these tables CGI should be faster than net.data, provided you are
using named activation groups.  Just shooting out numbers as an example for
the CPW, but let's say your CPW was 100
Multiply by CPW to get per second responses
CGI Named Activation     .44
CGI SQL Named Activation .43
Net Data HTML  .24
Net Data SQL   .15

then 100 * .43 = 43 responses/second
versus 100 * .24 for 24 responses/second

A difference of almost double.

Rob Berendt

==================
Remember the Cole!


                                                                                
                                         
                    Andrew Borts                                                
                                         
                    <andrewb@setacorpor        To:     "'WEB400@midrange.com'" 
<WEB400@midrange.com>                     
                    ation.com>                 cc:                              
                                         
                    Sent by:                   Subject:     RE: CGI-RPG 
performance question                             
                    owner-web400@midran                                         
                                         
                    ge.com                                                      
                                         
                                                                                
                                         
                                                                                
                                         
                    03/19/01 10:07 AM                                           
                                         
                    Please respond to                                           
                                         
                    WEB400                                                      
                                         
                                                                                
                                         
                                                                                
                                         




I can say beyond a shadow of a doubt, that CGI programming should not be
the bottle neck... but I want to point out the following;
1) The Activation group MUST BE NAMED!!
2) Be VERY aware that this is no longer a single job performing... it is
more likely a thread - serialize them in RPG by using THREAD(*SERIALIZE) in
the H spec if you are performing I/O ... This makes all the iterations of
the program within the thread to file in one at a time for serious I/O
3) QTEMP can sometimes be your enemy because of more then one person is
using it now - remember the thread thoughts ...
4) Here is IBM's Suggestions as to the speed of Web activity on an AS/400
and their factors...

Multiply by CPW Rating for the per second count

Type of Internet Activity     Speed Multiply by CPW to get per second
responsese
HTML Cached    1.81
HTML Not Cached     1.18
CGI New Activation Group .07
CGI Named Activation     .44
CGI SQL New Activation   .06
CGI SQL Named Activation .43
Net Data HTML  .24
Net Data SQL   .15
Java Servlet   .40

 I will say this much - Net Data SEEMS much faster, so don't be afraid to
do it based on this chart.  Servlets also feel VERY quick!

Andrew Borts / E-Commerce Project Leader
Seta Corporation
6400 East Rogers Circle
Boca Raton, FL 33499

E-mail: Andrewb@setacorporation.com
Corporate web site http://www.setacorporation.com
E-Commerce web site http://www.palmbeachjewelry.com
Voice: 561-994-2660 Ext. 2211 / Fax: 561-997-0774


-----Original Message-----
From:     Loyd Goodbar [SMTP:lgoodbar@ispchannel.com]
Sent:     Sunday, March 18, 2001 3:19 PM
To:  web400@midrange.com
Subject:  CGI-RPG performance question

I've almost completed a utility to help our shop create web pages for
regular
tabular data. It is optimized for creating tables-based reports (i.e.,
convert
existing reports for intranet browsing). However, I have some performance
questions.

The application architecture is a service program that can be bound to ILE
RPG
modules. The back end implements storage as user spaces in the job's QTEMP
library. The requesting program sends data to the service program through
prototyped calls, which stores the unformatted data in the user space. When
the requesting program calls for output, it specifies either standard
output
or an IFS location (currently, only the IFS is implemented, and is the
focus
of current testing). The service program reads the user space, formats the
data, then shuttles the data to its final location. I'm about 95% complete,
with the exception of writing to standard output and some control fields.
So
far, the program works well, with the exception of some performance issues.

The major problem I have is two-fold. Since I've only implemented the IFS
portion, that's all I can test. However, the service program appears to
suck
up major CPU cycles when formatting the data and/or writing to the IFS.
Consequently, I only get 1-2K/sec when writing a HTML page. In the current
report I test, I have a summary portion and detail portion, as two separate
pages that are hyperlinked. The summary portion is 30KB, and takes between
30-40 seconds to read the user space, format the HTML, and write to the
IFS.
The detail portion is roughly 1.5MB, and this process takes around an hour!
(AS/400 model 720, 1GB RAM, 80GB disk)

I'm unsure where the bottleneck(s) lay.
1) When storing the data to the user space, I have turned on automatic
extendibility. Once the initial capacity fills, it takes noticeably longer
to
complete data storage. Does OS/400 actually create a new user space with a
larger size, then copies the data, or simply extend the current space?
Would
it be better to handle storage in a file, say keyed by handle and date/time
written? I don't know anything about data queues, but I do anticipate
generating pages up to 2 MB in size. All I need to do is store a varying
amount of data, and read it in FIFO manner.
2) Reading from the user space appears to take little time, I'm not
terribly
concerned here.
3) Formatting HTML. I take "unformatted" data, along with some control
fields,
and generate the appropriate HTML code on the output stage. Currently, this
involves many %trim/%trimr operations on the output data. I am currently
using
size 32000 workspaces for the data (since this is the current RPG/IV
limit).
String operations take a long time. I thought about possibly passing data
through pointers, but I still need to concatenate the data to an output
variable before writing it.
4) Writing the data to the IFS takes some time. Disk utilization obviously
increases. Hopefully in the next few days I can implement standard output
and
see if writing data is an actual bottleneck.

I'm hoping someone has done similar work before, and any tips would be
greatly
appreciated.

Thanks!
Loyd
--
Loyd Goodbar
lgoodbar@ispchannel.com  ICQ#504581
+---
| This is the WEB400 Mailing List!
| To submit a new message, send your mail to WEB400@midrange.com.
| To subscribe to this list send email to WEB400-SUB@midrange.com.
| To unsubscribe from this list send email to WEB400-UNSUB@midrange.com.
| Questions should be directed to the list owner/operator:
david@midrange.com
+---

+---
| This is the WEB400 Mailing List!
| To submit a new message, send your mail to WEB400@midrange.com.
| To subscribe to this list send email to WEB400-SUB@midrange.com.
| To unsubscribe from this list send email to WEB400-UNSUB@midrange.com.
| Questions should be directed to the list owner/operator:
david@midrange.com
+---



+---
| This is the WEB400 Mailing List!
| To submit a new message, send your mail to WEB400@midrange.com.
| To subscribe to this list send email to WEB400-SUB@midrange.com.
| To unsubscribe from this list send email to WEB400-UNSUB@midrange.com.
| Questions should be directed to the list owner/operator: david@midrange.com
+---

As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.