IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Mainframe vs Open Systems


IBM Mainframe Forums -> All Other Mainframe Topics
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
steve6

New User


Joined: 10 Jul 2007
Posts: 7
Location: Chennai

PostPosted: Tue Sep 28, 2010 12:42 pm
Reply with quote

Hi,

In my recent project which is a conversion from Mainframe to open systems, I came across an interesting question from a non-mainframe colleague. I guess I have answered that question, though not 100% accurate icon_neutral.gif - the immediate impact of my answer being minimal.

I thought I should evaluate my understanding and correct myself, if requied. Pls share your thoughts.

Here is the question from my non-MF colleague:
How come Mainframe handles around 1000 transactions per sec where as with open systems we can assure only about 10 transactions per sec?

Here is my answer:
1. Going into the granular level of transaction, our CICS programs use VSAM files which are open out there to process things faster
- no opening / closing required
- KSDS, AIX/Path play role in quick access

2. When we design the Mainframe Application, we see to that the VSAM files used by CICS are pretty much like carriers of data - not permanent storage.
- number of records being less, the processing would be faster

3. We use something called psuedo batch(that doesn't involve screens) that does the posting of data from the vsam files into the DB2 tables (as permanent storage)

4. Even when we use DB2, the parallelism (processing and I/O) helps.

(Its a large scale application)
(detail on the transactions... when we say 1000 transactions, those are 1000 records coming in through MQ and the processing response is sent back thru MQ)
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Tue Sep 28, 2010 4:09 pm
Reply with quote

Mainframes are optimized for high-speed, high-volume data processing. I/O is handled by a separate subsystem, not by the CPU -- as one example. There are also specialized processors to handle specialized tasks, instruction look ahead, and many other features designed to support volume processing -- making a mainframe more like a cluster machine than a single box. Furthermore, the mainframe has benefited from the more than 40 years of development efforts aimed at improving processing throughput for large volumes of data.
Back to top
View user's profile Send private message
steve6

New User


Joined: 10 Jul 2007
Posts: 7
Location: Chennai

PostPosted: Tue Sep 28, 2010 4:24 pm
Reply with quote

Just wanted to mention couple more things.

1. I was just involved on the conversion part of the application from Mainframe end... so even I was surprised to see such difference 1000 to 10. I thought it would be the poor design in open system. but still the difference was extreme.

2. That project got over, the converted application went into shelves and just considered as a prototype in open system.

The application remains in Mainframe.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Tue Sep 28, 2010 4:25 pm
Reply with quote

mainframe.typepad.com/blog/2010/09/the-worlds-fastest-microprocessor.html
Back to top
View user's profile Send private message
Ronald Burr

Active User


Joined: 22 Oct 2009
Posts: 293
Location: U.S.A.

PostPosted: Tue Sep 28, 2010 8:12 pm
Reply with quote

Computers set for Quantum Leap

Will this new chip design make it possible for a computer to pre-fetch/pre-staticize MULTIPLE potential instruction sequences simultaneously - meaning absolutely NO interruption in processing speed for heavily branch-bound algorithms ( e.g. binary searches )?
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Tue Sep 28, 2010 11:46 pm
Reply with quote

Hello,

One needs to consider that the mainframe has been "tuned" for heavy multiple-user activity. From the early days, the focus of the mainframe has been to support many unlike activities at the same time - and provide good thruput.

If by "open systems" you mean Windows, keep in mind that Windows is a Personal Computer operating system. Which has been re-worked to run on a server so multiple other Windows PCs can interact with the server(s). The Windows Server environment is still a long way from an industrial strength multi-user operating system. IMHO icon_smile.gif

If you mean Unix, several of the systems i've helped migrate from either the Mainframe or Windows run very well on the Unix systems. . . fwiw.
Back to top
View user's profile Send private message
mtaylor

Active User


Joined: 20 Feb 2009
Posts: 108
Location: Kansas City

PostPosted: Fri Oct 01, 2010 5:28 am
Reply with quote

The fact that DB2 and the application run on the same hardware is probably a big performance plus for the mainframe, since in most 'modern' technology, the database runs on a separate server (or cluster of servers) requiring network communication which can be thousands of time slower than the communication buses inside a box.

But this is quiet a nebulous topic; there's no way to say why your application was 100x slower without doing some indepth profiling and load testing, which the open system devs should've been able to do. There are simply too many variables involved. Ie it could've been poorly coded. Which is all to easy to do.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Fri Oct 01, 2010 5:55 am
Reply with quote

Not that I am a fan of SAP, but SAP R3 can run 250-300 trans / second on a midrange server.

and a SAP transaction probably requires a minimum of 10-20 db2 table accesses.

now, the boys at SAP are no saps (pun intended). They know what they are doing.
which leads me to agree with mtaylor -
the people who wrote the open systems system did not.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Fri Oct 01, 2010 6:19 am
Reply with quote

and the 250-300/sec was a benchmark from a project that I worked on in 2001.

now nearly 10 years later, I have no idea what kind of thru-put they have.
Back to top
View user's profile Send private message
steve6

New User


Joined: 10 Jul 2007
Posts: 7
Location: Chennai

PostPosted: Wed Oct 13, 2010 4:07 pm
Reply with quote

Thanks for the responses. I could see there are multiple aspects contributing to the Mainframe's capacity. It was really helpful for me to see what lies behind our green screens.

Quote:
If by "open systems" you mean Windows

I should have been specific. sorry about that. By open system I meant Solaris - Java & Oracle.

I agree on the SAP part. I was working on a project in the past where we moved the billing part of application from Mainframe to SAP FS-CD. There SAP performed really good.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Thu Oct 14, 2010 4:55 pm
Reply with quote

During 2004 I heard of that in US, they don't open a new firm until they promise to use SAP/ERP in their Firm! (though I've never veirfied this statement!)
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Thu Oct 14, 2010 8:20 pm
Reply with quote

Hi Anuj,

Who are "they"?

I know of quite a few "new firms" that do not use SAP. . .

There is definitely something here i misunderstand icon_neutral.gif

d
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Thu Oct 14, 2010 8:27 pm
Reply with quote

dick scherrer wrote:
Who are "they"?
Owners of Firms, Dick.

And I just heard of it and never verified that, though.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> All Other Mainframe Topics

 


Similar Topics
Topic Forum Replies
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 4
No new posts Mainframe openings in Techmahnidra fo... Mainframe Jobs 0
No new posts Calling an Open C library function in... CICS 1
No new posts How to go into a subprogram in IBM De... IBM Tools 5
No new posts Mainframe Programmer with CICS Skill... Mainframe Jobs 0
Search our Forums:

Back to Top