RE: [SWMP] Introducing pub-sub

john_patterson@us.ibm.com Fri, 06 July 2007 22:51 UTC

Return-path: <swmp-bounces@ietf.org>
Received: from [127.0.0.1] (helo=stiedprmman1.va.neustar.com) by megatron.ietf.org with esmtp (Exim 4.43) id 1I6we7-0000Nw-V0; Fri, 06 Jul 2007 18:51:27 -0400
Received: from [10.90.34.44] (helo=chiedprmail1.ietf.org) by megatron.ietf.org with esmtp (Exim 4.43) id 1I6we4-0000G1-SY for swmp@ietf.org; Fri, 06 Jul 2007 18:51:24 -0400
Received: from e1.ny.us.ibm.com ([32.97.182.141]) by chiedprmail1.ietf.org with esmtp (Exim 4.43) id 1I6we4-0002A9-HA for swmp@ietf.org; Fri, 06 Jul 2007 18:51:24 -0400
Received: from d01relay02.pok.ibm.com (d01relay02.pok.ibm.com [9.56.227.234]) by e1.ny.us.ibm.com (8.13.8/8.13.8) with ESMTP id l66MoJmX021106 for <swmp@ietf.org>; Fri, 6 Jul 2007 18:50:19 -0400
Received: from d01av01.pok.ibm.com (d01av01.pok.ibm.com [9.56.224.215]) by d01relay02.pok.ibm.com (8.13.8/8.13.8/NCO v8.3) with ESMTP id l66MoJsh508060 for <swmp@ietf.org>; Fri, 6 Jul 2007 18:50:19 -0400
Received: from d01av01.pok.ibm.com (loopback [127.0.0.1]) by d01av01.pok.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id l66MoJNw013054 for <swmp@ietf.org>; Fri, 6 Jul 2007 18:50:19 -0400
Received: from internet1.lotus.com (internet1.lotus.com [9.33.9.11]) by d01av01.pok.ibm.com (8.12.11.20060308/8.12.11) with ESMTP id l66MoJB6013036 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Fri, 6 Jul 2007 18:50:19 -0400
Received: from wtfmail02.edc.lotus.com (wtfmail02.lotus.com [9.33.9.69]) by internet1.lotus.com (8.14.1/8.14.1) with ESMTP id l66MoIgP012071; Fri, 6 Jul 2007 18:50:19 -0400 (EDT)
In-Reply-To: <20070706202333.AA2D2464442@william.mediamachines.com>
To: Tony Parisi <tparisi@mediamachines.com>
Subject: RE: [SWMP] Introducing pub-sub
MIME-Version: 1.0
X-Mailer: Lotus Notes Release 7.0 August 18, 2005
Message-ID: <OF6D7DADFE.BDE89499-ON85257310.007AA99F-85257310.007D7407@lotus.com>
From: john_patterson@us.ibm.com
Date: Fri, 06 Jul 2007 18:50:54 -0400
X-MIMETrack: Serialize by Router on WTFMAIL02/WTF/M/Lotus(Release 7.0.2FP2|April 16, 2007) at 07/06/2007 06:50:55 PM, Serialize complete at 07/06/2007 06:50:55 PM
X-Spam-Score: 0.0 (/)
X-Scan-Signature: c0aa019322dfce838bd8604f5a841b57
Cc: swmp@ietf.org
X-BeenThere: swmp@ietf.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: Discussion of a Simple Wide-area Multiuser-3D Protocol <swmp.ietf.org>
List-Unsubscribe: <https://www1.ietf.org/mailman/listinfo/swmp>, <mailto:swmp-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www1.ietf.org/pipermail/swmp>
List-Post: <mailto:swmp@ietf.org>
List-Help: <mailto:swmp-request@ietf.org?subject=help>
List-Subscribe: <https://www1.ietf.org/mailman/listinfo/swmp>, <mailto:swmp-request@ietf.org?subject=subscribe>
Content-Type: multipart/mixed; boundary="===============0403639352=="
Errors-To: swmp-bounces@ietf.org

Tony:

Well the truth is you caught me.  I was shooting from the hip when I said 
that we should not use multiple ports.  I was writing about Subscribe and 
it occurred to me that one could use multiple ports.  It seemed like a bad 
idea on the face of it, but I didn't really think it through any deeper 
than that.

Having confessed the truth, let me see if I can ferret out some of the 
reasons this seems like a bad idea.  My guess is that there are others 
watching this list who understand networking better than I who will speak 
with more authority.  Until they speak up, let's see what I can come up 
with.

I guess the main reason is that I do not believe that ports come for free. 
 There is a large numbering space, but I assume the active ports actually 
consume some amount of OS resources.  I am less familiar with UDP, but I 
believe this is true for TCP.  If we wanted a server to support a hundred 
shards using TCP, we would be listening on one hundred ports and then 
shunting any client that connected over to a separate active port.  With n 
active clients we would be consuming 100 + n ports.  Or, in general, m + n 
ports, if m is the number of shards.

I am old enough to remember when we had a restricted number of ports, but 
these days it is possible that m+n does not seem like such a burden. Let's 
look a little deeper and ask whether there are any other costs.

One other cost is the cost of publishing so many well known ports.  If we 
register these in the name servers, then we are adding a lot of entries 
for a rather specialized purpose.  If we do not register them, then we 
will probably have to augment the protocol with a "name-service-like" 
function that allows one well-known port to redirect activity to the other 
ports.  This seems a rather awkward arrangement for something that is 
easily handled within the protocol.

Finally, there is the cost of creating and tearing down sessions as we 
move from port to port.  This seems an unnecessary burden on our server 
and our protocol.  It is even worse if we consider that authentication is 
typically tied to the session and would now be occurring over and over as 
we try to navigate from shard to shard.

I wasn't sure when I started this, but I think I convinced myself that my 
first instincts were right.

Hope that helps.

jfp

> "Tony Parisi" <tparisi@mediamachines.com> wrote on 07/06/2007 04:24:37 
PM:
>
> Hi John
> 
> Sounds reasonable to me.
> 
> For the uninitiated: can you elaborate on why we wouldn?t want to do
> this via multiple ports?
> 
> Thanks
> Tony
> 
> 
> 
> From: john_patterson@us.ibm.com [mailto:john_patterson@us.ibm.com] 
> Sent: Friday, July 06, 2007 1:14 PM
> To: Jay C. Weber
> Cc: swmp@ietf.org
> Subject: [SWMP] Introducing pub-sub
> 
> 
> Jay: 
> 
> OK, I understand what you are doing with Hello.  I don't see a big 
> problem with using it to activate the sending of latecomer 
> information, but you are overloading its purpose a little.  It would
> be cleaner to use Hello for session establishment and a separate 
> Subscribe message to activate latecomer sends.  Given the austere 
> nature of swamp right now, this seems like overkill, but I do not 
> think you can avoid it. 
> 
> As you indicate, swamp has an implicit subscription to all the state
> that a network element has to support.  My guess is that we will not
> want that in the general case.  We will definitely want to ensure 
> that one server can offer state sharing for multiple contexts (eg 
> multiple pieces of the virtual world, sometimes called shards).  We 
> will not want to do this via multiple ports, so the context of 
> sharing will need to be brought into the protocol.  This will permit
> clients to indicate the shard that they need to learn about. 
> 
> As a first approximation, we might say that a network element 
> (client) can issue a Subscribe request and indicate which node is of
> interest.  This would establish a subscription to the state 
> associated with that node and any under it in the tree.  Once we 
> accept that the nodes need not be X3D nodes, but may be more 
> general, then it is easy to imagine that each X3D model would be 
> rooted in a Shard node, with each of those under a ROOT node.  A 
> subscription to this shard node would indicate which piece of the 
> world one wants to learn about and would cause the appropriate 
> latecomer messages to be sent. 
> 
> It is a small step to suggest that one network element might want 
> more than one such subscription.  For example, I might want to know 
> about the shard I am in and the shard I am about to enter.  This 
> means I will want two subscriptions and, in general, I will want to 
> be able to have an arbitrary number of subscriptions at one time. 
> Of course, if I can create subscriptions, then I will need to be 
> able to get rid of them.  For this, I will want an Unsubscribe 
> message (presumably indicating the node I am no longer interested in.) 
> 
> With this approach, we might imagine the virtual world broken into 
> square tiles or shards.  I would subscribe to the tile I am in and 
> the eight that surround me.  As I move from tile to tile, I would 
> drop and add subscriptions as needed. 
> 
> If this makes sense, then you can see that Hello will need to let go
> of its subscription role and swmp will need to add Subscribe and 
> Unsubscribe messages. 
> 
> jfp 
> 
_______________________________________________
SWMP mailing list
SWMP@ietf.org
https://www1.ietf.org/mailman/listinfo/swmp