Re: [rtcweb] Prioritization

Harald Alvestrand <harald@alvestrand.no> Fri, 25 April 2014 15:02 UTC

Return-Path: <harald@alvestrand.no>
X-Original-To: rtcweb@ietfa.amsl.com
Delivered-To: rtcweb@ietfa.amsl.com
Received: from localhost (ietfa.amsl.com [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id C7BED1A04CD for <rtcweb@ietfa.amsl.com>; Fri, 25 Apr 2014 08:02:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.172
X-Spam-Level:
X-Spam-Status: No, score=-2.172 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RP_MATCHES_RCVD=-0.272] autolearn=ham
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id clNO9iML7qfi for <rtcweb@ietfa.amsl.com>; Fri, 25 Apr 2014 08:02:34 -0700 (PDT)
Received: from mork.alvestrand.no (mork.alvestrand.no [IPv6:2001:700:1:2::117]) by ietfa.amsl.com (Postfix) with ESMTP id AC7DE1A01DA for <rtcweb@ietf.org>; Fri, 25 Apr 2014 08:02:34 -0700 (PDT)
Received: from localhost (localhost [127.0.0.1]) by mork.alvestrand.no (Postfix) with ESMTP id 66AC57C54D1 for <rtcweb@ietf.org>; Fri, 25 Apr 2014 17:02:26 +0200 (CEST)
X-Virus-Scanned: Debian amavisd-new at alvestrand.no
Received: from mork.alvestrand.no ([127.0.0.1]) by localhost (mork.alvestrand.no [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H94k1nq3Wb1N for <rtcweb@ietf.org>; Fri, 25 Apr 2014 17:02:25 +0200 (CEST)
Received: from hta-hippo.lul.corp.google.com (unknown [IPv6:2620:0:1043:1:7646:a0ff:fe90:e2bb]) by mork.alvestrand.no (Postfix) with ESMTPSA id C373D7C54CB for <rtcweb@ietf.org>; Fri, 25 Apr 2014 17:02:25 +0200 (CEST)
Message-ID: <535A78FF.20700@alvestrand.no>
Date: Fri, 25 Apr 2014 17:02:23 +0200
From: Harald Alvestrand <harald@alvestrand.no>
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0
MIME-Version: 1.0
To: rtcweb@ietf.org
References: <20140425084726.8812.24604.idtracker@ietfa.amsl.com> <535A21E3.7070008@alvestrand.no> <535A5ACC.9070700@viagenie.ca> <535A6151.1060501@alvestrand.no> <535A68E1.9090901@viagenie.ca>
In-Reply-To: <535A68E1.9090901@viagenie.ca>
Content-Type: text/plain; charset="ISO-8859-1"; format="flowed"
Content-Transfer-Encoding: 8bit
Archived-At: http://mailarchive.ietf.org/arch/msg/rtcweb/jhzl59zPWyFNEVoH3NNt90C3Ewg
Subject: Re: [rtcweb] Prioritization
X-BeenThere: rtcweb@ietf.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Real-Time Communication in WEB-browsers working group list <rtcweb.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/rtcweb>, <mailto:rtcweb-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/rtcweb/>
List-Post: <mailto:rtcweb@ietf.org>
List-Help: <mailto:rtcweb-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/rtcweb>, <mailto:rtcweb-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 25 Apr 2014 15:02:37 -0000

On 04/25/2014 03:53 PM, Simon Perreault wrote:
> Le 2014-04-25 09:21, Harald Alvestrand a écrit :
>>> Suggestion: leave it up to implementations to interpret priority levels
>>> however they want. Reword the current text so that it becomes an
>>> *example* of what an implementation might do.
>> The problem with doing that is that it leads to completely inconsistent
>> behaviour.
> Understood. But is that something we should care about? I mean, if it
> does not lead to application developers doing "if (chrome) ... else if
> (firefox) ..." then behaviour inconsistency is of no consequence. I
> can't imagine a situation where that would happen if we leave it open.

I can imagine that happening. Consider a scenario where complete 
starvation is considered a Really Bad Thing.

if (firefox) {
    // higher priority channels will completely starve out lower 
priority ones. Don't.
   priority = normal
} else if (chrome) {
    // lower priority channels will get some packets through. That's OK.
    priority = high
} else {
    // I have no idea what will happen, let's play it safe.
    priority = normal
}


>
> Simon