| Andrew Cooke | Contents | Latest | RSS | Twitter | Previous | Next

C[omp]ute

Welcome to my blog, which was once a mailing list of the same name and is still generated by mail. Please reply via the "comment" links.

Always interested in offers/projects/new ideas. Eclectic experience in fields like: numerical computing; Python web; Java enterprise; functional languages; GPGPU; SQL databases; etc. Based in Santiago, Chile; telecommute worldwide. CV; email.

Personal Projects

Lepl parser for Python.

Colorless Green.

Photography around Santiago.

SVG experiment.

Professional Portfolio

Calibration of seismometers.

Data access via web services.

Cache rewrite.

Extending OpenSSH.

Last 100 entries

Re: Python's sad, unimaginative Enum; Re: Some explanation; Some explanation; Printing binary trees sideways; Atoms in python; About "Python's sad, unimaginative Enum"; Frustration Understood; Some good feedback here; this is fucking useless; I agree with you #nt; What would be imaginative?; Re: Enum; Enum; Python's sad, unimaginative Enum; Possible Fix; Work, Exhaustion, Vacation; VirtualBox with Centos 6.3 to 6.4, client; Matasano - Programming Lessons Learned; PDF to HTML; Alternate Substitution; Why RSA Works; Trigger; Dreaming of Death; Example: Tracing; Using Coroutines In Protocol Simulations; Python 3.3 Only; Pure Python SHA1 and MD4 Implementations; Ubuntu on VirtualBox; Starting TOR as a service on OpenSuse 12.3; 1001 Albums; Using fail2ban on OpenSuse 12.3; PPPoE on OpenSuse 12.3; Good Article on Unified Physics; It's Police (Carabineros); Linux Software for Listening to and Exploring Music; Android is Pretty Bad; Lucky Number; 3D Printing for Casting; Cover Art for MPDroid; Who'd a thought the French were so bigoted?; PS Input Signal; Small Problem with Roksan K2 Amp; Roksan K2 Amp + ATC SCM7 Speakers; Do What Makes Sense; Re: Arguing About Tests, Still; Arguing About Tests, Still; Images; Good Article on NY Drummers; Related Bug Report; Getting Python 3.3 and Virtualenv Working in OpenSuse 12.3; How I Am; Awesome video about digital audio; The Difference Between Dimensional and Normalized Databases; The rise of the new Chinese bogeyman; Updated Syntax; Very First Steps to C-ORM; The Ideal User Interface For Music Exploration; Can The Republicans Be Saved?; Rate Limiting Calls to EchoNest; Mods to Cache; Comparing UYKFG and UYKFD/E/F; Someone Else is Concerned; EchoNest-based Playlist Generator for MPD; Example Voting Results; A Heavyweight Python Cache; Identifying Artists with EchoNest; Notes on Pregalex / Pregabalina / Lyrica; The Neil Cowley Trio; Drake - Make for Data; A Reliable Python Web Service; Useful Python Date/Time Library?; Need to Sleep, But this is Good; Command Line Set Difference; Little Details...; Linux Command Line Tricks; AutoTools Tutorial; Hangman Tactics; A Tor Proxy Embedded In A Web Page; Tree (Nested Dicts) in Python; Sleeping at Parties; I Know Someone Who Hurts Other People; Light and Tea; Description of the LCS35 Time Capsule Crypto-Puzzle; Re: I can relate to that ...; I can relate to that ...; Re: It's 2012 Why Does My IDE Suck?; My Own Alternative Medicine; Nice explanation of SVM; Why and How Writing Crypto is Hard; Re: It's 2012 Why Does My IDE Suck?; Incremental Regular Expressions; BBC Map Confused at Pole; Social Media: Ground Zero in the Culture War; My Visit to the Psycho Doc; Learning Modern 3D Graphics Programming; Hope you got some crackers to go with the cheese; Re: But how easy would it be ...; But how easy would it be ...; Powerline Freq Fingerprinting of Audio; The Folly of Scientism; Cheese - Because You're Going to Die Anyway

© 2006-2013 Andrew Cooke (site) / post authors (content).

Re: [Cute] URI names - nice argument

From: "andrew cooke" <andrew@...>

Date: Fri, 9 Dec 2005 09:12:24 -0300 (CLST)

And here's the reason why voi:// is used...

--------------

On 2005 Dec 8 , at 21.42, Doug Tody wrote:

> A given URI may resolve into multiple URLs pointing to multiple
> instances.

That's the difference!  I had completely forgotten about the one-to-
many resolution.

I'm working this through out loud here, Doug, for my benefit rather
than yours, as I imagine you've been through this already, and
because it might be useful (to me if noone else) to have the whole
argument in one place.

The underlying reason is that the resources in question are biggish.
This breaks the assumptions of the best practice/architecture
analysis in two independent ways:

1. The resources are replicated, and large enough that the client's
location on the network matters.

2. The size means that HTTP is probably not the best transport
mechanism, but instead GridFTP, or BitTorrent, or something else.

In both cases, the client can't be expected to make a good decision
about which source to use (because that will depend on details of the
national and intercontinental network, which will moreover change in
time), nor which protocol to use (which will also depend on network
environment and time).  A local resolver can be expected to know
these things, either by discovery or configuration.

The assumption that's broken is the single, almost hidden, assumption
that the transport issue is solved -- `use HTTP'.  Even if that were
sorted out, and everyone decided that GridFTP (say) was the single
best transport, the analysis also assumes that there is a single
source -- a single DNS host -- for the resource; the replication in
(1) means that we're not assuming that.  That can also be got around,
by having a DNS name be handled by multiple geographically dispersed
IP addresses (Google is well known to do this), but this is
technically complicated and therefore fragile, and also centralised.

Even if they acknowledge the first HTTP point, the response to this
second point on the part of the TAG (the W3C Technical Architecture
Group, authors of the Web Architecture document) would be to point at
the replication implicit in (1).  One of the good features of HTTP is
that it is stateless, which means that it is very friendly to caches
and proxies, so you _can_ have a simple single source, and just rely
on caches to speed things up -- don't try to outsmart the network!
But the sizes undermine that argument, too: few places have the
resources to cache lots of multi-GB files, and if regional or
national centres were set up which could handle that, it would
require configuration cleverness to use them.  Thus the replication
is essentially a type of preemptive caching.

On the other hand: I suppose there is still one case for using HTTP
with a (nominally) single source, along with a smart local proxy,
which spots when you're requesting a resource/source it knows about,
and satisfies those requests using (transparently) a separate network
of replicas and protocols.  That way, the client gets all the
simplicity, predictability and API advantages of using HTTP naively
(because that would work fine over a local network).  The proxy is
effectively acting as a resolver, but the client is interacting with
it using an extremely simple and possibly built-in protocol/API, and
so doesn't have to care.  Is there milage in that?

...but I think I'm going on at too much length now, so I'll shut up!

All the best,

Norman

_______________________________________________
compute mailing list
compute@...
https://acooke.dyndns.org/mailman/listinfo/compute

Comment on this post