blob: 4e61fec884a36a66308cc1a88d80b36d063bf036 [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<document>
<properties>
<title>Apache Synapse - Sample 650</title>
</properties>
<body>
<section name="Sample 650: Introduction to Priority Based Mediation">
<div class="xmlConf">&lt;definitions xmlns="http://ws.apache.org/ns/synapse"&gt;
&lt;priorityExecutor name="exec"&gt;
&lt;queues&gt;
&lt;queue size="100" priority="1"/&gt;
&lt;queue size="100" priority="10"/&gt;
&lt;/queues&gt;
&lt;/priorityExecutor&gt;
&lt;proxy name="StockQuoteProxy"&gt;
&lt;target&gt;
&lt;inSequence&gt;
&lt;filter source="$trp:priority" regex="1"&gt;
&lt;then&gt;
&lt;enqueue priority="1" sequence="priority_sequence" executor="exec"/&gt;
&lt;/then&gt;
&lt;else&gt;
&lt;enqueue priority="10" sequence="priority_sequence" executor="exec"/&gt;
&lt;/else&gt;
&lt;/filter&gt;
&lt;/inSequence&gt;
&lt;outSequence&gt;
&lt;send/&gt;
&lt;/outSequence&gt;
&lt;/target&gt;
&lt;publishWSDL uri="file:repository/conf/sample/resources/proxy/sample_proxy_1.wsdl"/&gt;
&lt;/proxy&gt;
&lt;sequence name="priority_sequence"&gt;
&lt;log level="full"/&gt;
&lt;send&gt;
&lt;endpoint&gt;
&lt;address uri="http://localhost:9000/services/SimpleStockQuoteService"/&gt;
&lt;/endpoint&gt;
&lt;/send&gt;
&lt;/sequence&gt;
&lt;/definitions&gt;</div>
<subsection name="Objective">
<p>
Demonstrate the usage of priority executors in Synapse to assign priority levels
to requests and mediate them based on the assigned priority
</p>
</subsection>
<subsection name="Pre-requisites">
<p>
<ul>
<li>
Deploy the SimpleStockQuoteService in the sample Axis2 server and start Axis2
</li>
<li>
Start Synapse using the configuration numbered 650 (repository/conf/sample/synapse_sample_650.xml)
<div class="command">
Unix/Linux: sh synapse.sh -sample 650<br/>
Windows: synapse.bat -sample 650
</div>
</li>
</ul>
</p>
</subsection>
<subsection name="Executing the Client">
<p>
Priority is applied only when synapse is loaded with enough messages to consume
all of its core worker threads. So to observe the priority based mediation, it is
required to use a load testing tool like JMeter, SOAP UI or Apache bench.
</p>
<p>
In this sample, client should send a HTTP header that specifies the priority of
the message.This header name is 'priority'. This header is retrieved in the synapse
configuration using the $trp:priority XPath expression. Then it is matched against
the value 1. If it has the value 1, message is executed with priority 1. Otherwise
the message is executed with priority 10.
</p>
<p>
Messages with different priorities are put into different priority queues. Then they
are mediated in a manner so that high priority messages are always processed first.
</p>
<p>
Here are two sample SOAP requests that can be used to invoke the service using a
tool like JMeter, or Apache Bench. For SOAP UI, user can use the WSDL
repository/conf/sample/resources/proxy/sample_proxy_1.wsdl to create the request.
The only difference between the two requests shown here is the symbol. One
has the symbol as IBM and other has MSFT. For one type of requests set the priority
header to 1 and for the next set the priority header to 10. Then load Synapse with
a large volume of traffic consisting of both types of requests using the load testing tool.
Back end Axis2 server prints the symbol of the incoming requests. User should be
able to see more of the high priority symbol.
</p>
<div class="xmlConf">&lt;soapenv:Envelope xmlns:soapenv=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt;
&lt;soapenv:Header xmlns:wsa=&quot;http://www.w3.org/2005/08/addressing&quot;&gt;
&lt;wsa:To&gt;http://localhost:8281/services/SimpleStockQuoteService&lt;/wsa:To&gt;
&lt;wsa:MessageID&gt;urn:uuid:1B57D0B0BF770678DE1261165228620&lt;/wsa:MessageID&gt;
&lt;wsa:Action&gt;urn:getQuote&lt;/wsa:Action&gt;
&lt;/soapenv:Header&gt;
&lt;soapenv:Body&gt;
&lt;m0:getQuote xmlns:m0=&quot;http://services.samples&quot;&gt;
&lt;m0:request&gt;
&lt;m0:symbol&gt;IBM&lt;/m0:symbol&gt;
&lt;/m0:request&gt;
&lt;/m0:getQuote&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;</div>
<div class="xmlConf">&lt;soapenv:Envelope xmlns:soapenv=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt;
&lt;soapenv:Header xmlns:wsa=&quot;http://www.w3.org/2005/08/addressing&quot;&gt;
&lt;wsa:To&gt;http://localhost:8281/services/SimpleStockQuoteService&lt;/wsa:To&gt;
&lt;wsa:MessageID&gt;urn:uuid:1B57D0B0BF770678DE1261165228620&lt;/wsa:MessageID&gt;
&lt;wsa:Action&gt;urn:getQuote&lt;/wsa:Action&gt;
&lt;/soapenv:Header&gt;
&lt;soapenv:Body&gt;
&lt;m0:getQuote xmlns:m0=&quot;http://services.samples&quot;&gt;
&lt;m0:request&gt;
&lt;m0:symbol&gt;MSFT&lt;/m0:symbol&gt;
&lt;/m0:request&gt;
&lt;/m0:getQuote&gt;
&lt;/soapenv:Body&gt;
&lt;/soapenv:Envelope&gt;</div>
</subsection>
</section>
<p><a href="../samples.html">Back to Catalog</a></p>
</body>
</document>