Re: Alt-Svc-Used indicator granularity (ext#34)

> I can potentially see why it might be interesting to learn about the
> difference between shifting load and upgrades of various sorts.  But
> if that is all that you need, then we probably want to limit the
> information to just that.

Reviving this thread.  As we get into implementation details, Alt-Svc-Used
isn't terribly useful as-is.
In particular, the changing protocol+port use-case is so different from the
changing host use-case
in terms of when they get used that it becomes problematic for the load
balancing case to not
be able to distinguish these.

For the simplest possible, what about having Alt-Svc-Used have three values
rather than two?

   - 0 = Alt-Svc was not used
   - 1 = Alt-Svc was used to change port and protocol (ie, service port !=
   origin port and service proto != default origin scheme's proto)
   - 2 = Alt-Svc was used to change host (ie, service host != origin
   authority host)

I'd be interested to hear if anyone else is looking at implementing Alt-Svc
on
the server side and what other considerations they have encountered.

         Erik




On Fri, Aug 22, 2014 at 6:38 PM, Erik Nygren <erik@nygren.org> wrote:

> For discussion of https://github.com/httpwg/http-extensions/issues/34
>
> -----------------
>
>  The current Alt-Svc-Used indicator is a boolean ("0"/"1"), due to the
> desire to preserve privacy.
> Based on some explorations of how this would be implemented on the server
> side, we realized that this doesn't provide enough information to
> distinguish between the different use-cases for Alt-Svc. In particular, a
> server would have no way to know if just the protocol was changed, or if
> both the protocol and host were changed. If we start using multiple Alt-Svc
> sources (such as DNS) this also becomes relevant.
>
> An option short of including (proto,host,port) in Alt-Svc-Used would be to
> include a better indicator of how the Alt-Svc was used. This could be
> either a bitmask or a string of tokens. For example, with a bitmask:
>
>    - 1 = Alt-Svc was used to change protocol (ie, service proto !=
>    default origin scheme's proto)
>    - 2 = Alt-Svc was used to change port (ie, service port != origin port)
>    - 4 = Alt-Svc was used to change host (ie, service host != origin host)
>    - 8 = Alt-Svc was obtained via Alt-Svc header
>    - 16 = Alt-Svc was obtained via ALTSVC frame
>    - 32 = Alt-Svc was obtained via DNS record (reserved, not yet defined)
>
> With a token approach, short character strings could replace the bitmask.
> In either case this would result in a value like:
>
> Alt-Svc-Used: 20
> Alt-Svc-Used: h,f
>
> For load-balancing, this would make it possible to infer the
> (proto,host,port) that may have been used in cases where it differs by
> use-case but is consistent within a use-case.
>
> This would also significantly help with debuggability on the server side.
>
> (that Issue also mentions some editorial issues that we should resolve
> after answering this.)
>
>

Received on Sunday, 26 October 2014 15:45:08 UTC