Re: [hybi] hybi Digest, Vol 8, Issue 41
Greg Wilkins <gregw@webtide.com> Fri, 30 October 2009 23:46 UTC
Return-Path: <gregw@webtide.com>
X-Original-To: hybi@core3.amsl.com
Delivered-To: hybi@core3.amsl.com
Received: from localhost (localhost [127.0.0.1]) by core3.amsl.com (Postfix) with ESMTP id 5167A3A6A21 for <hybi@core3.amsl.com>; Fri, 30 Oct 2009 16:46:23 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.107
X-Spam-Level:
X-Spam-Status: No, score=-2.107 tagged_above=-999 required=5 tests=[AWL=-0.108, BAYES_00=-2.599, J_CHICKENPOX_42=0.6]
Received: from mail.ietf.org ([64.170.98.32]) by localhost (core3.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id crMM2YPGWRdV for <hybi@core3.amsl.com>; Fri, 30 Oct 2009 16:46:22 -0700 (PDT)
Received: from mail-yw0-f183.google.com (mail-yw0-f183.google.com [209.85.211.183]) by core3.amsl.com (Postfix) with ESMTP id 31CE93A6A16 for <hybi@ietf.org>; Fri, 30 Oct 2009 16:46:22 -0700 (PDT)
Received: by ywh13 with SMTP id 13so3615167ywh.29 for <hybi@ietf.org>; Fri, 30 Oct 2009 16:46:37 -0700 (PDT)
Received: by 10.150.120.3 with SMTP id s3mr4144364ybc.126.1256946396885; Fri, 30 Oct 2009 16:46:36 -0700 (PDT)
Received: from ?10.10.1.9? (60-242-119-126.tpgi.com.au [60.242.119.126]) by mx.google.com with ESMTPS id 15sm233739gxk.12.2009.10.30.16.46.30 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 30 Oct 2009 16:46:35 -0700 (PDT)
Message-ID: <4AEB7AD1.7050509@webtide.com>
Date: Sat, 31 Oct 2009 10:46:25 +1100
From: Greg Wilkins <gregw@webtide.com>
User-Agent: Thunderbird 2.0.0.23 (X11/20090817)
MIME-Version: 1.0
To: Jason Duell <jduell.mcbugs@gmail.com>
References: <mailman.3820.1256908248.4669.hybi@ietf.org> <91a5e3ea0910301458q465e5778kb46bcaedc65595a6@mail.gmail.com>
In-Reply-To: <91a5e3ea0910301458q465e5778kb46bcaedc65595a6@mail.gmail.com>
X-Enigmail-Version: 0.95.7
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 7bit
Cc: hybi@ietf.org
Subject: Re: [hybi] hybi Digest, Vol 8, Issue 41
X-BeenThere: hybi@ietf.org
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: Server-Initiated HTTP <hybi.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/listinfo/hybi>, <mailto:hybi-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/hybi>
List-Post: <mailto:hybi@ietf.org>
List-Help: <mailto:hybi-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/hybi>, <mailto:hybi-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Oct 2009 23:46:23 -0000
Jason Duell wrote: > Greetings, all. I'm one of the developers on the Mozilla networking > stack. We have a rather obvious interest in the discussion here, so > I'll be keeping at least roughly abreast of the conversations here and > chiming in when it seems useful. > >>> Could I ask you to more concretely describe your problem so that I could >>> more concretely (maybe with actual code examples) describe the alternative >>> solution that I am describing? > > From my reading of the last few days' posts, it does seem like > focusing on use cases might be the best way to move the conversation > forward. The more concrete the use cases, the better. > >>> sticky load balancer with SSL offload that works with any ws app. > > Is there any particular reason one couldn't do sticky load-balancing > just by remembering the TCP IP/port four-tuple for a given web socket? IP stickiness is a reasonable solution when cookies are not available, but it is far from perfect. Every user from AOL will look to be coming from just a few IP addresses - which can and do frequently change for any given user. Cookie based sticky load balancing is well established and understood and surely is a good basis to start with. Note also that load balancers also communicate meta data to the server they are balancing for: + SSL session IDs and client certificates. + X-Forwarded-For headers >> multiplexing protocol implemented in browser/server (not in application). > > What's the use case here? If a browser has two pages open that each > want to connect to the same server? How likely is that? it's not just two pages, but multiple widgets, iframes and tabs. This is one of the biggest pain points that I currently have deploying reliable comet/push applications at the moment. While I think multiplexing should be supported in the base protocol, I'm currently not advocating that we support it in the ws protocol. All I'm currently asking is that ws allows the easy transport of meta-data so that multiplexing can be transparently implemented without explicit support from the application code and without breaking non multiplexing interoperability. >> orderly closing a ws connection implemented in an application >> independent way. > > I'm quite sympathetic to providing guarantees about closing (or > really, about delivery, which is what one really cares about usually). > But I'm not clear on what the proposal is here. Yes, HTTP allows > servers to arbitrarily close sockets, and thus we can't shove POSTS or > other non-idempotent requests into a pipeline. But I don't see > anything in the ws spec that is equivalent. So I'd like to see more > detail here. What's the solution here (and to what problem(s)?) The primary problem that I would like to see addressed is the issue of idle shutdown of connections. Currently the client, server or intermediary may decide a connection is idle too long and close it. But there are no common timeouts, no way to discover these timeouts and not way to negotiate these timeouts. Thus clients will often select and idle connection and try to use it only to discover that it has been closed. Lack of orderly shutdown means that the client has no idea if the messages sent have been delivered or not. Websocket will make this a server problem as well, because servers can now try to use a connection that has been idle closed by an intermediary or client. Having an orderly close will allow implementations to distinguish between a failure (for which there is nothing much that can be done short of a reliable protocol on top) and a routine idle shutdown, which would now be able to be handled without any message loss. > <brief rant>It's notable the in the current Internet, the main > obstacle to things like pipelining are the existence of badly written > proxies and intermediaries. These are the beasties that are still > preventing us from turning on HTTP pipelining by default (even for > GETs), all these years after HTTP 1.1 was specified. So a cynical > part of me is tempted to believe that the easiest way to provide more > predictable close semantics for ws applications is to ram the protocol > past proxies via port 443/TSL, so that they can't muck up the works > with their "extended" behaviors... </brief rant>. > > I feel better now. Trying to do an end run around the intermediary vendors and their particular concerns (and business interests in providing value add) is hardly going to encourage better future compliance to internet standards. Perhaps by considering their concerns and involving them in the process, a widely implemented solution can be achieved. > Anyway, I look forward to more conversation on all of this. I hope we > can find a good balancing point between the need to keep things > simple, implementable, and quickly deliverable on the one hand, and as > fully-featured as is useful/practical on the other. regards
- Re: [hybi] WS framing alternative Sylvain Hellegouarch
- Re: [hybi] hybi Digest, Vol 8, Issue 41 Jason Duell
- Re: [hybi] hybi Digest, Vol 8, Issue 41 Ted Goddard
- Re: [hybi] hybi Digest, Vol 8, Issue 41 Greg Wilkins
- Re: [hybi] hybi Digest, Vol 8, Issue 41 Jamie Lokier
- Re: [hybi] WS framing alternative Ian Hickson
- Re: [hybi] WS framing alternative Greg Wilkins
- Re: [hybi] WS framing alternative Roy T. Fielding
- Re: [hybi] WS framing alternative Greg Wilkins
- Re: [hybi] WS framing alternative Martin J. Dürst
- Re: [hybi] WS framing alternative Pieter Hintjens
- Re: [hybi] WS framing alternative Roy T. Fielding
- Re: [hybi] WS framing alternative Greg Wilkins
- Re: [hybi] WS framing alternative Greg Wilkins
- Re: [hybi] WS framing alternative Pieter Hintjens
- Re: [hybi] WS framing alternative Greg Wilkins
- Re: [hybi] WS framing alternative Pieter Hintjens
- Re: [hybi] WS framing alternative Greg Wilkins