Posted: Tue Apr 26, 2005 5:50 am Post subject: Performance on z/OS with XML messages
Acolyte
Joined: 04 Jun 2004 Posts: 65 Location: Copenhagen
Is it reasonable to expect a CPU usages of about 50ms pr. message with an output size of 250Kbyte pr. message, just for creating the output structure???
The broker is creating the entire output XML structure from scratch.
I am using references to create the entire structure, like the example below...., do you guys have any ideas on how to lower the CPU usage?
Code:
CREATE LASTCHILD OF XMLref NAME 'ASmallPrefix:ATagName';
MOVE XMLref LASTCHILD;
CREATE LASTCHILD OF XMLref NAME 'SomeLongePrefixTheCustomerWants:AReallyLongTagNameThatTheCustomerLikes';
MOVE XMLref LASTCHILD;
CREATE LASTCHILD OF XMLref TYPE XML.Attribute NAME 'Status' VALUE 'Create';
CREATE LASTCHILD OF XMLref NAME 'AnotherLongePrefixTheCustomerWants:AnotherReallyLongTagNameThatTheCustomerLikes';
MOVE XMLref LASTCHILD;
CREATE LASTCHILD OF XMLref NAME 'LongePrefixTheCustomerWants:LongTagNameThatTheCustomerLikes' VALUE 'SOMEDATA';
CREATE LASTCHILD OF XMLref NAME 'LongePrefixTheCustomerWants:LongTagNameThatTheCustomerLikes' VALUE 'SOMEDATA';
CREATE LASTCHILD OF XMLref NAME 'LongePrefixTheCustomerWants:LongTagNameThatTheCustomerLikes' VALUE 'SOMEDATA';
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum