Andrew Cooke | Contents | Latest | RSS | 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

Choochoo Training Diary

Last 100 entries

Surprise Paradox; [Books] Good Author List; [Computing] Efficient queries with grouping in Postgres; [Computing] Automatic Wake (Linux); [Computing] AWS CDK Aspects in Go; [Bike] Adidas Gravel Shoes; [Computing, Horror] Biological Chips; [Books] Weird Lit Recs; [Covid] Extended SIR Models; [Art] York-based Printmaker; [Physics] Quantum Transitions are not Instantaneous; [Computing] AI and Drum Machines; [Computing] Probabilities, Stopping Times, Martingales; bpftrace Intro Article; [Computing] Starlab Systems - Linux Laptops; [Computing] Extended Berkeley Packet Filter; [Green] Mainspring Linear Generator; Better Approach; Rummikub Solver; Chilean Poetry; Felicitations - Empowerment Grant; [Bike] Fixing Spyre Brakes (That Need Constant Adjustment); [Computing, Music] Raspberry Pi Media (Audio) Streamer; [Computing] Amazing Hack To Embed DSL In Python; [Bike] Ruta Del Condor (El Alfalfal); [Bike] Estimating Power On Climbs; [Computing] Applying Azure B2C Authentication To Function Apps; [Bike] Gearing On The Back Of An Envelope; [Computing] Okular and Postscript in OpenSuse; There's a fix!; [Computing] Fail2Ban on OpenSuse Leap 15.3 (NFTables); [Cycling, Computing] Power Calculation and Brakes; [Hardware, Computing] Amazing Pockit Computer; Bullying; How I Am - 3 Years Post Accident, 8+ Years With MS; [USA Politics] In America's Uncivil War Republicans Are The Aggressors; [Programming] Selenium and Python; Better Walking Data; [Bike] How Fast Before Walking More Efficient Than Cycling?; [COVID] Coronavirus And Cycling; [Programming] Docker on OpenSuse; Cadence v Speed; [Bike] Gearing For Real Cyclists; [Programming] React plotting - visx; [Programming] React Leaflet; AliExpress Independent Sellers; Applebaum - Twilight of Democracy; [Politics] Back + US Elections; [Programming,Exercise] Simple Timer Script; [News] 2019: The year revolt went global; [Politics] The world's most-surveilled cities; [Bike] Hope Freehub; [Restaurant] Mama Chau's (Chinese, Providencia); [Politics] Brexit Podcast; [Diary] Pneumonia; [Politics] Britain's Reichstag Fire moment; install cairo; [Programming] GCC Sanitizer Flags; [GPU, Programming] Per-Thread Program Counters; My Bike Accident - Looking Back One Year; [Python] Geographic heights are incredibly easy!; [Cooking] Cookie Recipe; Efficient, Simple, Directed Maximisation of Noisy Function; And for argparse; Bash Completion in Python; [Computing] Configuring Github Jekyll Locally; [Maths, Link] The Napkin Project; You can Masquerade in Firewalld; [Bike] Servicing Budget (Spring) Forks; [Crypto] CIA Internet Comms Failure; [Python] Cute Rate Limiting API; [Causality] Judea Pearl Lecture; [Security, Computing] Chinese Hardware Hack Of Supermicro Boards; SQLAlchemy Joined Table Inheritance and Delete Cascade; [Translation] The Club; [Computing] Super Potato Bruh; [Computing] Extending Jupyter; Further HRM Details; [Computing, Bike] Activities in ch2; [Books, Link] Modern Japanese Lit; What ended up there; [Link, Book] Logic Book; Update - Garmin Express / Connect; Garmin Forerunner 35 v 230; [Link, Politics, Internet] Government Trolls; [Link, Politics] Why identity politics benefits the right more than the left; SSH Forwarding; A Specification For Repeating Events; A Fight for the Soul of Science; [Science, Book, Link] Lost In Math; OpenSuse Leap 15 Network Fixes; Update; [Book] Galileo's Middle Finger; [Bike] Chinese Carbon Rims; [Bike] Servicing Shimano XT Front Hub HB-M8010; [Bike] Aliexpress Cycling Tops; [Computing] Change to ssh handling of multiple identities?; [Bike] Endura Hummvee Lite II; [Computing] Marble Based Logic; [Link, Politics] Sanity Check For Nuclear Launch; [Link, Science] Entropy and Life

© 2006-2017 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