Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
corba or sockets?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 51 - 75 of 99 - Collapse all  -  Translate all to Translated (View all originals) < Older  Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Christopher Browne  
View profile  
 More options Oct 31 2000, 8:29 pm
Newsgroups: comp.lang.lisp
From: cbbro...@news.hex.net (Christopher Browne)
Date: Wed, 01 Nov 2000 01:29:10 GMT
Local: Tues, Oct 31 2000 8:29 pm
Subject: Re: corba or sockets?
In our last episode (31 Oct 2000 18:50:58 +0000),
the artist formerly known as Erik Naggum said:

>* Lieven Marchand
>| If you want to see protocol design gone berserk, try ASN.1.
> ASN.1 is not a protocol design.  It's a data description language.
> The full name is Abstract Syntax Notation #1.  It does no more than
> define structures that are named and identified by mutual
> agreement.  To use ASN.1, you have to choose some encoding rules,
> and there are unfortunately too many of them, but the Basic and
> Distinguished Encoding Rules are actually OK.  (C programmers hate
> them, because they make life so much harder in an untyped language
> like theirs, but if you know what kinds of objects you get, as in
> dynamic types, you can easily deal with these things.)

Ah...  And therein lies where I've been "a little suspicious" of CORBA
IDL; the thing that it _should_ be closest to is a "protocol
definition language," but the lack of indication of how methods should
relate is "makes my spider-sense tingle."

For instance, the anticipated use of the following should be clear:
interface file_reader {
  fileref open (in filename fn);
  okcode read (in fileref f, in quantity q, out filebuf fb);
  void fileref close (in fileref f);

};

One would do use this like:

(let ((fr (file_reader::open "/home/cbbrowne/whatever"))
      (ok_code t)
  (if fr
      (progn
        (while ok_code
          (setf ok_code (file_reader::read fr 240 filebuffer)))
        (file_reader::close fr)))))

The thing is, it's an _obvious_ thing that there should be some form
of state machine indicating the manner in which the methods should be
called; OBVIOUSLY we start with an "open," follow that with some
"read" calls, and then end off with a "close."

That relationship, which should, for many protocols, be expressed as a
state machine, doesn't enter in at all.

>| They haven't solved any of the real problems but they added heaps of
>| complexity in the process.

>  I can't agree with your assessment.  Would you like to explain what
>  you consider the real problems they have not solved and what the
>  heaps of complexity added have been?

Here's one commentary that gripes over it...
<http://www.alvestrand.no/x400/debate/asn1.html>

The really flameworthy bit:

Carl M. Ellison <c...@tis.com>:

     "ASN.1 might be an interesting exercise for people who believe
     LISP is the only real language or who really like to play with
     abstract syntax or who like to write specs while ignoring
     implementations (ie., write standards). It's *really* easy to
     write structure declarations in ASN.1 -- as long as you don't try
     to implement from them.

     However, as one who wants computer programs to be written
     efficiently and legibly (with small, easy to handle names,
     allowing complete statements to be expressed in a small space)
     and to have these programs communicate between machines with
     different byte ordering -- and almost nothing else -- I find
     ASN.1 is the *wrong* tool."

So apparently according to Ellison, Lisp must be intended for computer
programs that are to be written inefficiently, illegibly, with long,
ridiculous-to-process names, blah, blah, blah...

>| Unfortunately, it's caught on in some part of the IETF world, so I'm
>| considering writing some tools in CL to make it livable.

>  I'm surprised that you haven't, already.  ASN.1 is about typed data.
>  It does not live well in a "typed variable" approach to programming.

Some Lisp-relevant links...
<http://asn1.elibel.tm.fr/fr/outils/emacs/manuel-utilisation.htm>
<http://www.switch.ch/misc/leinen/snmp/lisp/>

The latter bit includes some ASN.1-processing code...
--
(concatenate 'string "cbbrowne" "@" "ntlug.org")
<http://www.ntlug.org/~cbbrowne/lisp.html>
C is almost a real language. (see assembler) Even the name sounds like
it's  gone through an  optimizing compiler.  Get rid  of all  of those
stupid brackets and we'll talk. (see LISP)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christopher Browne  
View profile  
 More options Oct 31 2000, 8:29 pm
Newsgroups: comp.lang.lisp
From: cbbro...@news.hex.net (Christopher Browne)
Date: Wed, 01 Nov 2000 01:29:15 GMT
Local: Tues, Oct 31 2000 8:29 pm
Subject: Re: corba or sockets?
In our last episode (31 Oct 2000 18:36:55 +0000),
the artist formerly known as Erik Naggum said:

>* Wade Humeniuk <humen...@cadvision.com>
>| They are fine protocols, but only as transport and network layer
>| protocols.

> What does this mean?  It makes absolutely no sense at it stands.

The point is that they're not directly "application" layer protocols.

A good comparison seems to me to be that they generally represent the
"assembly language" of the networking world.

TCP/IP does indicate that it includes "application" layers that
provide _some_ of the higher level stuff; you have made some
desparaging remarks about recent RFCs that would go along with the
notion of separating "application layers" from the remainder of it...

--
(concatenate 'string "cbbrowne" "@" "acm.org")
<http://www.ntlug.org/~cbbrowne/>
Who wants to remember  that escape-x-alt-control-left shift-b puts you
into super-edit-debug-compile mode?  (Discussion in comp.os.linux.misc
on the intuitiveness of commands, especially Emacs.)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Oct 31 2000, 9:33 pm
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.net>
Date: 01 Nov 2000 01:51:50 +0000
Local: Tues, Oct 31 2000 8:51 pm
Subject: Re: corba or sockets?
* Marius Vollmer <m...@zagadka.ping.de>
| I don't know how 56kbps or ISDN etc really work, but I guess they are
| more about very high modulation schemes, good channel estimations and
| equalizations, error correcting codes and data compression than they
| are about clever protocols.

  I didn't say "clever".  I answered a question on which protocols I
  thought were good and worth a study.  The issues you raise are taken
  care of at different layers of the protocol.  The interesting aspect
  for protocol designers is the _signalling_system_.  That's why I
  explicitly spelled out the names of SS#7 and DSS#1.

  Rather than list the results of your guesswork, how about their
  foundation?

| And the old copper wires aren't probably the problem, anyway.  They
| should not be much worse than your ordinary 10Base-T twisted pair
| ethernet wire.  The problems are probably more with the filters
| along the way that have been optimized for base-band speech signals.

  This is completely false and just more random guesswork.  Quit it
  and talk to people who know this stuff.  It's been _years_ since I
  worked with this stuff, but any competent telecom engineer will be
  able to tell you about the electrical qualities of those copper
  wires and why that is _completely_ irrelevant to ISDN signalling.

| I'm very impressed by these techniques as well, but I don't think
| you can learn from them how to design a better CORBA.  They are just
| worlds apart.

  I'd like to know why you don't think so, apart from being "worlds
  apart", which is just too funny when referring to the telecom world.

  Incidentally, most of the interesting things appeared to be "worlds
  apart" at one time or another.  I believe good high-level language
  programmers need to understand machine architectures more than good
  low-level language programmers do, for the _reason_ that they are
  worlds apart.  If you don't understand what's going on on the wire,
  the likelihood that you will not understand how to make a high-level
  protocol work _with_ the intermediate layers is very high.

#:Erik
--
  Does anyone remember where I parked Air Force One?
                                   -- George W. Bush


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Oct 31 2000, 9:33 pm
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.net>
Date: 01 Nov 2000 02:32:55 +0000
Local: Tues, Oct 31 2000 9:32 pm
Subject: Re: corba or sockets?
* Jon S Anthony <j...@synquiry.com>
| Again, if you're interested in getting into the protocol business,
| that's a different story.

  This seems to be your key argument, that there is a primary business
  and lots of ancillary concerns for which it is better to use the
  results of somebody else's primary business than dabble in it.  I do
  not agree with this for several reasons.  First, if you discover
  that you need better control over some ancillary concern, you may
  have to make it the primary business of some person or group in your
  company.  Second, if you find that you cannot afford to do it on
  your own, but need something different from the available offerings,
  you may cause somebody else to spawn a similar new primary business,
  such as a consortium.  Third, you may discover that as you go abaout
  your business, you gravitate towards certain concerns that are very
  different from what you set out to do, and your primary business may
  change to a previously ancillary concern, not the least because the
  only way to improve your previous primary business to do something
  else entirely.  All of these have happened to me, and I claim that
  if you're making any effort to be good at what you do, you will not
  be able to tell beforehand what you will do best in.

| Designing is only a fraction of the effort.

  I see that it is somehow important to you to exaggerate the costs of
  "rolling your own", but I'd like to know why.  It may be necessary
  to defend the choice of using CORBA, but I have _already_ stated in
  plain text and simple terms that if you can't do it better yourself,
  by all means, stick with what somebody else did even if that is not
  particularly good, so I hoped that we would have that condition
  behind us, but you keep carping on this cost of not doing it better.
  I fail to see the relevance in context.

  I'm effectively arguing that out-doing CORBA is not that hard, but
  having said

    CORBA is already badly designed, so if you are new to sockets and
    protocol design (which you will get yourself into), the likelihood
    that you, too, will design your protocol badly is so high that it
    is probably better to go with CORBA.

  the rather obvious (to me, anyway) ramification is that you should
  be good enough at what you do to out-do CORBA.

| You then need to implement it across several platforms and make it
| available for use in an effectively open ended set of languages (at
| the least C++ and Java).  Given what we are doing, I would guess it
| would have taken well over a person year or more of resources.  And
| for what?  To get something just as good?  Probably not even as good
| if you factor in such things as the IDL compilers, exceptions, and
| the like.

  I started out overhauling a system that spent 6 seconds from end
  system to end system at best, with more than 120 seconds worst case.
  It was the third generation of a system I built in 1989 that then
  guaranteed 2 seconds from end system to end system.  It was simply
  so incompetently done that it had to be rewritten.  I got it down to
  the old standards in the summer of 1998.  To move beyond that into
  the 500 ms guaranteed end system to end system transmission times,
  including more and more clients on the randomly performing Internet
  instead of dedicated lines with known characteristics, much higher
  bandwidth and even higher transmission needs, I had months and
  months of hard work cut out for me.

  This stuff is not for sale to random clients as a packaged product,
  and it won't be, either.  It is not in my employer's interest to
  sell the server side of my protocol, because that has become one of
  the main reasons we're ahead of the pack.  The protocol is intended
  to be open to the public and a tremendous amount of work has been
  put into ensuring that a client can be written in a short time, like
  a week for a reasonably competent programmer regardless of language,
  while the server has taken almost 18 months.

| Now, an order of magnitude better (depending on how that gain is
| distribted), that would be a different story, but the effort would
| go up dramatically and you are then basically in the distributed
| object protocol _business_ (or at least you _should_ be).

  I think you have a fairly naive view of the separation between the
  primary business and the ancillary concerns of an endeavor.  Our
  _primary_ business is delivering financial news to investors and
  brokers.  The protocol design became _my_ primary business when I
  found that we were destined to waste a lot of time if we stuck with
  off-the-shelf products, and I'm paid exceedingly well to develop,
  maintain, and promulgate this protocol.  This came to be because I
  have managers who saw the value of my work and listened to my
  concerns and honored my request to be free to work on this for as
  long as I wanted.  Now I can honestly say that whatever I take home
  from this project is miniscule compared to what it brings in.  This
  was not something that could have been realized if anyone had had
  the naive "primary business" view of what we intended to be good at.
  Nowhere in our business plans would you find mention of what I do
  for this company, because it isn't what we tell people about, and we
  don't make any money from my work, we make the money _with_ my work.

#:Erik
--
  Does anyone remember where I parked Air Force One?
                                   -- George W. Bush


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob Warnock  
View profile  
 More options Oct 31 2000, 11:03 pm
Newsgroups: comp.lang.lisp
From: r...@rigden.engr.sgi.com (Rob Warnock)
Date: 1 Nov 2000 04:03:16 GMT
Local: Tues, Oct 31 2000 11:03 pm
Subject: Re: corba or sockets?
Erik Naggum  <e...@naggum.net> wrote:
+---------------
| * Wade Humeniuk <humen...@cadvision.com>
| | The whole conceptual framework of protocols I think is best
| | described by the OSI reference model.
...
|   Please note that the full name is the _ISO_ Reference Model for Open
|   Systems Interconnection.  It's their model.  It is _not_ a model
|   that explains or can describe all Open Systems Interconnection.
|
|   See The Elements of Networking Style: And Other Essays &
|   Animadversions on the Art of Intercomputer Networking by
|   M. A. Padlipsky for a full coverage of this.  ISBN 0-595-08879-1.
+---------------

Damn! You beat me to it!! ;-}  ;-}

Padlipsky's book is classic ammunition for refuting ignorant/naive
ISORMOSI advocates (or as he says, ISORM, pronouonced "eye sore...M").

+---------------
| | TCP and IPv4 only live within the context of the data link and
| | physical layer protocols that carry them.
|
|   This is false.
+---------------

Indeed. As Padlipsky says:

        If you know what you're doing, three levels is
        enough; if you don't, even seventeen won't help.

Granted, the ARPANET (now IETF) Reference Model *did* eventually grow
in practice from three to four levels, since it was recognized that it
was useful to have a common "Protocols/Services" layer separate from
Applications. So now the Internet protocol architecture's four levels
are (per "Figure 1" of RFC 791):

        Applications
        Protocols/Services
        Internetwork Protocol (incl. ICMP)
        Local Network

ISO needlessly complicated thing by breaking up Applications into
Applications & Presentation (as if presentation could even be separated
from the application context -- hah!), breaking Protocols into Session
and Transport, and breaking Local Net into Data Link & Physical. But the
802.3 & FDDI Standards Committees didn't stop *there* -- they further
subdivided the Physical into MAC, PHY, and PMD (stealing some of Data
Link for the MAC layer), and now we have even *more* sub-layers, such
as "AUI" and "MII".

+---------------
| | All the issues of reliability, delivery and such need to be looked
| | at as protocol stacks.
|
|   If you use the ISORMOSI on the Internet, you will end up with very,
|   very weird attitudes towards a very fine technology...
+---------------

As Dave Clark's classic paper "Modularity & Efficiency" addresses.
Or as Padlipsky puts it:

        Layering makes a good servant but a bad master.

+---------------
| | For those that want to learn about protocols break open the OSI spec
| | on the reference model.
|
|   I would recommend against ISORMOSI until you understand whence it
|   came, that is: the history of protocol design preceding it, both
|   within the CCITT/ITU and the ISO camps and without either.
+---------------

Well, as I heard the story, there were seven strong personalities who
each wanted their own sub-committee, so -- guess what? -- they ended up
with seven layers! (Surprise, surprise.)

+---------------
|   TCP and IP do not live quietly down in the basement, but actually
|   extend their services and _presence_ all the way up to the
|   "application layer" (and you _really_ want this, by the way), there
|   is no way you can avoid knowing about "the underworld" relative to
|   your actual interests.
+---------------

In the very early days, some of you may recall, the protocol implementations
*did* live in user mode, but that later became unfashionable for "security"
and (mistaken) "efficiency" reasons. However, this is now getting a revival
with today's higher-speed network links. See, for example:

        <URL:http://www.cl.cam.ac.uk/~iap10/gige.ps>
        "Arsenic: A User-Accessible Gigabit Ethernet Interface"
        Ian Pratt (University of Cambridge Computer Laboratory).

"Arsenic" is a way of moving the IP/UDP/TCP functions back up into
user-mode, *without* sacrificing inter-user security, so that applications
can access the data directly, where the network interface dropped it,
with no copying.

We do something very similar with our MPI-over-"O/S Bypass"-over-STP-
over-GSN. User programs on one system can exchange MPI messages with
user programs on other systems at a very high rate *without* doing
system calls or causing any interrupts!! Yes, applications (safely,
in a protected way) talking *directly* to the hardware!! To paraphrase
Dogbert, "I wave my paw, Bah! You layer demons, be gone!"

MPI-over-Myrinet or -Giganet does something similar as well.

[Yes, some people (such as SGI) implemented (and shipped) "zero-copy DMA"
protocol stacks before, but they usually depended on the network MTU being
a multiple of the host operating system's page size... which is becoming a
problem on systems which have shifted to larger page sizes for efficiency.]

We're going to *have* to embrace this, guys! 10-gigabit/sec Ethernet is right
around the corner (hardware demos are already being shown), and we're going
to *need* some clever "layer breaking" to provide full 10GbE performance.

+---------------
|   The belief in cleanly separated layers is almost a religion.  It has
|   no basis in reality or experience, but there is nothing that can
|   make someone who believes in it stop believing in it.
+---------------

Again, people like Dave Clark & Mike Padlipsky & even Van Jacobsen (his
papers on the "Witless" interface, as well as TCP "header prediction")
blew this religion away years ago, but its adherents never got the message.
(They never do seem to. *sigh*)

-Rob

-----
Rob Warnock, 31-2-510           r...@sgi.com
Network Engineering             http://reality.sgi.com/rpw3/
Silicon Graphics, Inc.          Phone: 650-933-1673
1600 Amphitheatre Pkwy.         PP-ASEL-IA
Mountain View, CA  94043


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Wade Humeniuk  
View profile  
 More options Oct 31 2000, 11:27 pm
Newsgroups: comp.lang.lisp
From: Wade Humeniuk <humen...@cadvision.com>
Date: Tue, 31 Oct 2000 21:28:01 -0700
Local: Tues, Oct 31 2000 11:28 pm
Subject: Re: corba or sockets?

Erik Naggum wrote:

>   About half of what I have done over the years has had to do with
>   ensuring that lots of computers very far apart agree to what the
>   world looks like at exactly the same time.  "One large memory space"
>   sort of covers it, since the idea is that through intelligent
>   protocols and very careful programming, lots of computers actually
>   get the same values without having to ask anyone _else_ for them.
>   There are several interesting products that offer some of this
>   functionality for databases, messages servers, etc, these days.

The only one I ever read about is Amoeba.  A research distributed OS.
Any others?

>   The belief in cleanly separated layers is almost a religion.  It has
>   no basis in reality or experience, but there is nothing that can
>   make someone who believes in it stop believing in it.  There's
>   always an answer for why it's a good idea despite all the hairy
>   stuff they have to deal with.  Just like the whole ISORMOSI thing.
>   And almost like the belief in structured programming and object
>   orientation where the only time anyone can be trusted to use them
>   well is when they know when _not_ to use them.

ISORMOSI (first time I've seen this acronym!) for me still has a place.
The example I use is that when I design some software the written design
in a way has to lie.  I have to omit details to have clarity, so I can
discuss it with other software developers (and have some aesthetic
appeal).  I will usually try to design a protocol which follows a
layered model, because I have to apply some technique to get where I am
going.  If I find problems with the layering I can try to resolve them
when I get there, but I have to start somewhere (with the _faith_ that I
will get there).  This is one of the weird parts I find about life is
that I seem to need flawed (religious? dogmatic?) views of the world to
approach the truth. I guess its called learning.  Is there a way out of
that morass?

Just some more words, a description of something can never be the thing.

As for the triumph of TCP/IP over ISORMOSI.  I think it was things like:

Unix
FTP being simpler than FTAM
SNMP being simpler than CMIP
HTTP
the Session and Presentation Layers in OSI
TCP/IP was mostly American
random blind chance
and should I say "Simpler is Better"

that killed ISORMOSI (may it rest in layers).

BTW, isn't ISORMOSI still kicking in Europe?

Wade


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Espen Vestre  
View profile  
 More options Nov 1 2000, 4:01 am
Newsgroups: comp.lang.lisp
From: Espen Vestre <espen@*do-not-spam-me*.vestre.net>
Date: 01 Nov 2000 10:01:09 +0100
Local: Wed, Nov 1 2000 4:01 am
Subject: Re: corba or sockets?

Wade Humeniuk <humen...@cadvision.com> writes:
> BTW, isn't ISORMOSI still kicking in Europe?

Well, if you count death cramps (sp?) as 'kicking'...
--
  (espen)

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Raymond Wiker  
View profile  
 More options Nov 1 2000, 4:11 am
Newsgroups: comp.lang.lisp
From: Raymond Wiker <Raymond.Wi...@fast.no>
Date: 01 Nov 2000 10:12:27 +0100
Local: Wed, Nov 1 2000 4:12 am
Subject: Re: corba or sockets?

Espen Vestre <espen@*do-not-spam-me*.vestre.net> writes:
> Wade Humeniuk <humen...@cadvision.com> writes:

> > BTW, isn't ISORMOSI still kicking in Europe?

> Well, if you count death cramps (sp?) as 'kicking'...

        Maybe he meant "getting a kicking"...

--
Raymond Wiker
Raymond.Wi...@fast.no


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tim Bradshaw  
View profile  
 More options Nov 1 2000, 5:06 am
Newsgroups: comp.lang.lisp
From: Tim Bradshaw <t...@tfeb.org>
Date: 01 Nov 2000 10:06:38 +0000
Local: Wed, Nov 1 2000 5:06 am
Subject: Re: corba or sockets?

Wade Humeniuk <humen...@cadvision.com> writes:

> The major problem with the Telecom protocols I have found has been their
> defintions of their protocol data units which place a premimum on
> reducing the number of bits in network traffic.  This makes the PDUs
> hard to parse.  A great example of this, if you can get the spec is
> IS-634, the control protocol between Cellular Base Stations and
> Management systems.  Whoever dreamed that up has never programmed a
> computer before.  Also the telecom protocols (at least the cellular
> ones) are tending to define the protocol state machines in SDL which
> allows protocol designers to leave gaps of what happens when error
> conditions occur.

It seems to me that telecom protocols, especially wireless ones, may
well have been designed by people who were acutely aware that
bandwidth is scarce and expensive, and compute cycles and memory,
even in a mobile phone, are cheap and plentiful.

--tim


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jason Trenouth  
View profile  
 More options Nov 1 2000, 5:28 am
Newsgroups: comp.lang.lisp
From: Jason Trenouth <ja...@harlequin.com>
Date: Wed, 01 Nov 2000 10:15:12 +0000
Local: Wed, Nov 1 2000 5:15 am
Subject: Re: corba or sockets?
On Wed, 01 Nov 2000 01:28:58 GMT, cbbro...@news.hex.net (Christopher Browne)
wrote:

Indeed. Some folks are so gloomy and pessimistic by nature that they assume
co-location optimization means you lose when running remotely instead of
thinking that you win when running locally. :-j

__Jason


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Philip Lijnzaad  
View profile  
 More options Nov 1 2000, 5:30 am
Newsgroups: comp.lang.lisp
From: Philip Lijnzaad <lijnz...@ebi.ac.uk>
Date: 01 Nov 2000 10:30:13 +0000
Local: Wed, Nov 1 2000 5:30 am
Subject: Re: corba or sockets?

Erik>   you might decide not to "know" where your objects are.  This could
Erik>   lead to all _kinds_ of interesting performance pessimizations, just
Erik>   one of which is CORBA.

Are you suggesting that there is a performance bottleneck in that you have to
know where (host,port or so) they are in order to use CORBA objects? This is,
of course, not true. If this thing is a concern, you would typically look up,
by name (or other) the 'where' of the real objects using some service
(Naming/Trading or so). Moreover, the resolving of a CORBA object reference
can result in a LocationForward by its server. This all happens transparently
to clients, since I believe even CORBA 1.0.

Lastly, a CORBA object reference can actually contain multiple locations
(and/or, incidentally, multiple protocols), offering fault tolerance options
(the standard for this is I believe being finalized; I haven't followed it).  

Some of the critcism that I see raised against CORBA derive from the fact
that people don't appreciate the kinds of things that CORBA solves. When you
look closely at it, no other technology (cgi, RMI, SOAP, DCOM) comes close to
offering its functionality. Just to be explicit about this:

 - language independence
 - platform/vendor independence
 - location independence
 - network protocol independence
 - separation of 'distributed objects' from their implementations
 - security model
 - location forwarding
 - on-demand launching of servers
 - fault-tolerance capabilities
 - async messaging
 - footprint
 - performance

and there's prolly a few things I overlooked.

                                                                      Philip
--
Time passed, which, basically, is its job. -- Terry Pratchett (in: Equal Rites)
--------------------------------------------------------------------------- --
Philip Lijnzaad, lijnz...@ebi.ac.uk \ European Bioinformatics Institute,rm A2-24
+44 (0)1223 49 4639                 / Wellcome Trust Genome Campus, Hinxton
+44 (0)1223 49 4468 (fax)           \ Cambridgeshire CB10 1SD,  GREAT BRITAIN
PGP fingerprint: E1 03 BF 80 94 61 B6 FC  50 3D 1F 64 40 75 FB 53


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christopher Browne  
View profile  
 More options Nov 1 2000, 9:50 am
Newsgroups: comp.lang.lisp
From: cbbro...@salesman.brownes.org (Christopher Browne)
Date: Wed, 01 Nov 2000 14:47:44 GMT
Local: Wed, Nov 1 2000 9:47 am
Subject: Re: corba or sockets?
Centuries ago, Nostradamus foresaw a time when Philip Lijnzaad would say:

>Erik>   you might decide not to "know" where your objects are.  This could
>Erik>   lead to all _kinds_ of interesting performance pessimizations, just
>Erik>   one of which is CORBA.

>Are you suggesting that there is a performance bottleneck in that you have to
>know where (host,port or so) they are in order to use CORBA objects? This is,
>of course, not true. If this thing is a concern, you would typically look up,
>by name (or other) the 'where' of the real objects using some service
>(Naming/Trading or so). Moreover, the resolving of a CORBA object reference
>can result in a LocationForward by its server. This all happens transparently
>to clients, since I believe even CORBA 1.0.

>Lastly, a CORBA object reference can actually contain multiple locations
>(and/or, incidentally, multiple protocols), offering fault tolerance options
>(the standard for this is I believe being finalized; I haven't followed it).  

"May contain" and "standard still being finalized" and "not nearly
ubiquitously-implemented" adds up to vapourware...

>Some of the critcism that I see raised against CORBA derive from the fact
>that people don't appreciate the kinds of things that CORBA solves. When you
>look closely at it, no other technology (cgi, RMI, SOAP, DCOM) comes close to
>offering its functionality. Just to be explicit about this:

> - language independence
> - platform/vendor independence
> - location independence
> - network protocol independence
> - separation of 'distributed objects' from their implementations

All of which are well and good, and probably pretty widely implemented.

> - security model

... Where the last book I looked at on the topic basically did a
"marketing overview" 250 pages long that was certainly not suggestive of
it being reasonable to use it...

> - location forwarding
> - on-demand launching of servers

... Which isn't part of the standard, which means that everyone sets up
a different registry for the launchers...

> - fault-tolerance capabilities

... Probably inherent to any competent implementation of a
distributed system...

> - async messaging

... AMI isn't yet ubiquitous; I'm not sure it is actually implemented
yet ...

> - footprint
> - performance

Pretty much any system of any kind has a "footprint" and has some
performance characteristics.

>and there's prolly a few things I overlooked.

But many of these are only characteristics of a few specific CORBA
implementations; some may not yet be true of _any_ implementation, and
still others fall outside what CORBA speaks to, so it's not fair to call
all of them actual characteristics "of CORBA."
--
aa...@freenet.carleton.ca - <http://www.hex.net/~cbbrowne/corba.html>
History of Epistemology in One Lesson
"First Hume said "We can't really know anything", but nobody believed
him, including Hume. Then Popper said "Hume was right, but here's what
you can do instead...". Bartley then debugged Popper's code."
-- Mark Miller

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Nov 1 2000, 10:05 am
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.net>
Date: 01 Nov 2000 13:47:01 +0000
Local: Wed, Nov 1 2000 8:47 am
Subject: Re: corba or sockets?
* Erik Naggum
| ... you might decide not to "know" where your objects are.  This
| could lead to all _kinds_ of interesting performance pessimizations,
| just one of which is CORBA.

  I thought this was an obvious tongue-in-cheek comment.

* Philip Lijnzaad <lijnz...@ebi.ac.uk>
| Are you suggesting that there is a performance bottleneck in that
| you have to know where (host,port or so) they are in order to use
| CORBA objects?

  No, I am "suggesting" that if you make a decision not to know the
  location of your objects, you open up for a number of ways to waste
  time and resources, relative to knowing where they are, obviously.
  You are most probably not arguing that there is _no_ performance
  cost in using COBRA compared to a direct in-memory object reference,
  so I am a little uncertain what you are actually thinking of and
  responding to.

| Some of the critcism that I see raised against CORBA derive from the
| fact that people don't appreciate the kinds of things that CORBA
| solves.

  That could also be true, but in my case, I do not care for the kinds
  of things COBRA does to accomplish what it does solve.  I don't have
  anything against what CORBA tries to solve, which is all very smart
  and very good and all that.

| When you look closely at it, no other technology (cgi, RMI, SOAP,
| DCOM) comes close to offering its functionality.

  This looks like marketing to me, with fairly automatic responses,
  and I have to reopen my ears to continue to read what you're saying.

| Just to be explicit about this:
|
|  - language independence
|  - platform/vendor independence
|  - location independence
|  - network protocol independence
|  - separation of 'distributed objects' from their implementations
|  - security model
|  - location forwarding
|  - on-demand launching of servers
|  - fault-tolerance capabilities
|  - async messaging
|  - footprint
|  - performance
|
| and there's prolly a few things I overlooked.

  Thanks for the list of features.  Do you see a list of misfeatures
  or at least problems that would impel someone _not_ to use CORBA if
  they wanted some of these features?

#:Erik
--
  Does anyone remember where I parked Air Force One?
                                   -- George W. Bush


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Nov 1 2000, 10:05 am
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.net>
Date: 01 Nov 2000 14:47:36 +0000
Local: Wed, Nov 1 2000 9:47 am
Subject: Re: corba or sockets?
* Wade Humeniuk <humen...@cadvision.com>
| ISORMOSI (first time I've seen this acronym!) for me still has a
| place.

  I have used it to describe a protocol tha was very messy and that
  definition was the basis for a clean reimplementation, so I won't
  knock the model too hard, but it doesn't work for the Internet, and
  one must be acutely aware of when to break that model.  Sometimes
  you need a lift in that 7-story high-rise.

| I will usually try to design a protocol which follows a layered
| model, because I have to apply some technique to get where I am
| going.

  Protocol layering is as hard as doing class inheritance right.  The
  interesting thing is that you can start with the lowest layer and
  have a slot called "payload" that a subclass would interpret with
  sub-slots, or you could start with the highest layer and add slots
  in subclasses as you move down the stack.  As long as the needs of a
  class are dictated from the outside, this is pretty easy.  It gets
  real difficult to find the One True Layering when you move your own
  functionality around as you experience changing needs.

| This is one of the weird parts I find about life is that I seem to
| need flawed (religious? dogmatic?) views of the world to approach
| the truth.  I guess its called learning.  Is there a way out of that
| morass?

  Apart from dying?  I don't think so.  :)

| As for the triumph of TCP/IP over ISORMOSI.  I think it was things like:
|
| Unix
| FTP being simpler than FTAM
| SNMP being simpler than CMIP
| HTTP
| the Session and Presentation Layers in OSI
| TCP/IP was mostly American
| random blind chance
| and should I say "Simpler is Better"
|
| that killed ISORMOSI (may it rest in layers).
|
| BTW, isn't ISORMOSI still kicking in Europe?

  Nah, even the OSI Profiles (like GOSIP) have moved to TCP/IP, but
  there are still some large commercial X.400 software vendors and
  service providers.  Some believe that EDI needs X.400 to work.

  I used to study X.400.  I made a guess that I would spend 10 years
  writing a fully compliant mail system based on X.400.  Then I wrote
  a fully compliant SMTP-based mail system in three weeks, added MIME
  stuff experimentally (while I was still contributing to that work)
  and figured that if you had to spend more than a man-year on a mail
  system, you'd need to make it a highly successful mass product, and
  that was very unlikely to happen to anything as long as decent and
  simple mail systems were available essentially for free.  I don't
  think I was too far from how people with real money, resources, and
  vested interests were thinking.  Today, we have the Evil Behemoth
  doing about 10% of what X.400 offered, and they still don't comply
  with the necessary RFCs, so chances are they can't even _read_ the
  X.400 specification.

  The WWW idea hit the world with unprecedented force.  It's a crying
  shame that HTTP and HTML had such staggeringly idiotic designs, and
  still do.  If I were Tim Berners-Lee, I'd blame someone else for it,
  so I guess he couldn't find anyone who would accept that.  But I
  digress.

#:Erik
--
  Does anyone remember where I parked Air Force One?
                                   -- George W. Bush


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Philip Lijnzaad  
View profile  
 More options Nov 1 2000, 10:46 am
Newsgroups: comp.lang.lisp
From: Philip Lijnzaad <lijnz...@ebi.ac.uk>
Date: 01 Nov 2000 15:46:38 +0000
Local: Wed, Nov 1 2000 10:46 am
Subject: Re: corba or sockets?

Erik> * Erik Naggum
Erik> | ... you might decide not to "know" where your objects are.  This
Erik> | could lead to all _kinds_ of interesting performance pessimizations,
Erik> | just one of which is CORBA.

Erik>   I thought this was an obvious tongue-in-cheek comment.

not to me, I'm afraid. It looked like you '"suggested"' that one of the
problems with CORBA is performance if/when you don't exactly know where your
objects are.

Erik> |  - language independence
Erik> |  - platform/vendor independence
Erik> |  - location independence
Erik> |  - network protocol independence
Erik> |  - separation of 'distributed objects' from their implementations
Erik> |  - security model
Erik> |  - location forwarding
Erik> |  - on-demand launching of servers
Erik> |  - fault-tolerance capabilities
Erik> |  - async messaging
Erik> |  - footprint
Erik> |  - performance
Erik> |
Erik> | and there's prolly a few things I overlooked.

Erik>   Thanks for the list of features.  Do you see a list of misfeatures
Erik>   or at least problems that would impel someone _not_ to use CORBA if
Erik>   they wanted some of these features?

Good question. There are two main problems: (perceived) complexity and
learning curve of the thing (relative to cgi and rmi and SOAP), and more
importantly: lack of widely available (different) implementations of all the
useful extra standards such as security, messenging, etc.  Lesser problems
are the overhead (use sockets if you need real high-speed), and I think
CORBA is prolly not yet mature enough in the transaction monitor area.  So,
for high speed transaction processing, CORBA may not be the right
techonology.

Lastly, the standardization process is a bit long-winded, but that
doesn't say much about the technology.

                                                                      Philip
--
Time passed, which, basically, is its job. -- Terry Pratchett (in: Equal Rites)
--------------------------------------------------------------------------- --
Philip Lijnzaad, lijnz...@ebi.ac.uk \ European Bioinformatics Institute,rm A2-24
+44 (0)1223 49 4639                 / Wellcome Trust Genome Campus, Hinxton
+44 (0)1223 49 4468 (fax)           \ Cambridgeshire CB10 1SD,  GREAT BRITAIN
PGP fingerprint: E1 03 BF 80 94 61 B6 FC  50 3D 1F 64 40 75 FB 53


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John M. Adams  
View profile  
 More options Nov 1 2000, 11:00 am
Newsgroups: comp.lang.lisp
From: jmad...@stsci.edu (John M. Adams)
Date: 01 Nov 2000 10:37:46 -0500
Local: Wed, Nov 1 2000 10:37 am
Subject: Re: corba or sockets?

Fernando Rodríguez <spam...@must.die> writes:
> Hi!

>    I have to comunicate a lisp process with a c++ app and I was
> considering corba or using sockets. Both are rather new to me, so wich one
> would you recommend and why? O:-)

If the communication required is pretty simple, use sockets for two
reasons.

1) Corba has a large learning curve, complicates builds, is harder to
debug in complex scenarios, and makes you alot more vulnerable to
vendor bugs.  It can make sense if you are using it as a framework for
many interoperable applications which need to interact in diverse
ways.

2) If you don't understand sockets, you are going to have a hard time
reasoning about the operational behavior of your system.  Doing at
least a prototype using plain sockets will give you a sound basis for
understanding the salient qualities of a particular corba
implementation.

--
John M. Adams


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Philip Lijnzaad  
View profile  
 More options Nov 1 2000, 11:01 am
Newsgroups: comp.lang.lisp
From: Philip Lijnzaad <lijnz...@ebi.ac.uk>
Date: 01 Nov 2000 16:01:14 +0000
Local: Wed, Nov 1 2000 11:01 am
Subject: Re: corba or sockets?

>> Some of the critcism that I see raised against CORBA derive from the fact
>> that people don't appreciate the kinds of things that CORBA solves. When you
>> look closely at it, no other technology (cgi, RMI, SOAP, DCOM) comes close to
>> offering its functionality. Just to be explicit about this:

>> - language independence
>> - platform/vendor independence
>> - location independence
>> - network protocol independence
>> - separation of 'distributed objects' from their implementations

Christopher> All of which are well and good, and probably pretty widely
Christopher> implemented.

uh  ... not really. Network protocol independence doesn't seem to be so, but
then again it doesn't seem to matter. The vendor independence is usually but
not always OK.

>> - security model

Christopher> ... Where the last book I looked at on the topic basically did a
Christopher> "marketing overview" 250 pages long that was certainly not
Christopher> suggestive of it being reasonable to use it...

No, I know, and it's a big pity really.

>> - on-demand launching of servers

Christopher> ... Which isn't part of the standard, which means that everyone
Christopher> sets up a different registry for the launchers...

you're right; on-demand launching should have been listed under the location
forwarding: you can have auto-launching thanks to this feature, but the
solutions are (probably necessarily) implementation-specific.

>> - fault-tolerance capabilities

Christopher> ... Probably inherent to any competent implementation of a
Christopher> distributed system...

cgi? SOAP? DCOM ? rmi? They can be made fault-tolerant by hand; the point is
that (OK, OK, once the fault tolerance thing is finilized and implemented ...),
this thing will be available out of the box.

>> - async messaging

Christopher> ... AMI isn't yet ubiquitous; I'm not sure it is actually
Christopher> implemented yet ...

I thought Iona has, or has annnounced it; not sure.

>> - footprint
>> - performance

Christopher> Pretty much any system of any kind has a "footprint" and has some
Christopher> performance characteristics.

:-) Again, this is meant relative to other technologies. ORBExpress claims an
ORB runtime of 150kByte. I think this compares favourably with the avarage
XML parser package or httpd process. Same thing for speed: XML or text/plain
is just slower to parse than a binary datastream of which you know the layout.

>> and there's prolly a few things I overlooked.

Christopher> But many of these are only characteristics of a few specific
Christopher> CORBA implementations; some may not yet be true of _any_
Christopher> implementation, and still others fall outside what CORBA speaks
Christopher> to, so it's not fair to call all of them actual characteristics
Christopher> "of CORBA."

yes, I agree, I'm sorry if I appeared to be claiming that.
                                                                      Philip

--
Time passed, which, basically, is its job. -- Terry Pratchett (in: Equal Rites)
--------------------------------------------------------------------------- --
Philip Lijnzaad, lijnz...@ebi.ac.uk \ European Bioinformatics Institute,rm A2-24
+44 (0)1223 49 4639                 / Wellcome Trust Genome Campus, Hinxton
+44 (0)1223 49 4468 (fax)           \ Cambridgeshire CB10 1SD,  GREAT BRITAIN
PGP fingerprint: E1 03 BF 80 94 61 B6 FC  50 3D 1F 64 40 75 FB 53


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lieven Marchand  
View profile  
 More options Nov 1 2000, 12:08 pm
Newsgroups: comp.lang.lisp
From: Lieven Marchand <m...@bewoner.dma.be>
Date: 31 Oct 2000 22:13:18 +0100
Local: Tues, Oct 31 2000 4:13 pm
Subject: Re: corba or sockets?

Yes, I'm aware of it. It only does the low end BER
encoding/decoding. I was thinking of a real ASN.1 compiler, going from
PDU to functions to encode and decode. There are some fairly thorny
issues there.

--
Lieven Marchand <m...@bewoner.dma.be>
Lambda calculus - Call us a mad club


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Nov 1 2000, 12:26 pm
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.net>
Date: 01 Nov 2000 17:25:36 +0000
Local: Wed, Nov 1 2000 12:25 pm
Subject: Re: corba or sockets?
* Philip Lijnzaad <lijnz...@ebi.ac.uk>
| XML or text/plain is just slower to parse than a binary datastream
| of which you know the layout.

  This claim is not at all supported by the evidence.   Parsing a
  binary data stream that claims to be general and not just a dump of
  bytes from memory, is just as expensive to parse as text/plain and
  can quickly become _slower_ if you do it wrong and need a lot of
  overhead to overcome the inherent problems of binary representation.
  The arguments for binary datastreams are space and bandwidth, _not_
  time to process.

#:Erik
--
  Does anyone remember where I parked Air Force One?
                                   -- George W. Bush


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Eric Marsden  
View profile  
 More options Nov 1 2000, 12:45 pm
Newsgroups: comp.lang.lisp
From: Eric Marsden <emars...@mail.dotcom.fr>
Date: 01 Nov 2000 18:35:05 +0100
Local: Wed, Nov 1 2000 12:35 pm
Subject: Re: corba or sockets?

>>>>> "cb" == Christopher Browne <cbbro...@salesman.brownes.org> writes:
>>>>> "pl" == Philip Lijnzaad <lijnz...@ebi.ac.uk> writes:

  pl> Lastly, a CORBA object reference can actually contain multiple
  pl> locations (and/or, incidentally, multiple protocols), offering
  pl> fault tolerance options (the standard for this is I believe
  pl> being finalized; I haven't followed it).

  cb> "May contain" and "standard still being finalized" and "not
  cb> nearly ubiquitously-implemented" adds up to vapourware...

the CORBA fault tolerance specification was published in January.

   <URL:http://cgi.omg.org/cgi-bin/doc?ptc/00-04-04>

  cb> ... AMI isn't yet ubiquitous; I'm not sure it is actually
  cb> implemented yet ...

AMI is implemented by TAO and Orbix2000 for C++, at least.

--
Eric Marsden                          <URL:http://www.laas.fr/~emarsden/>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Wade Humeniuk  
View profile  
 More options Nov 1 2000, 2:51 pm
Newsgroups: comp.lang.lisp
From: Wade Humeniuk <humen...@cadvision.com>
Date: Wed, 01 Nov 2000 12:51:35 -0700
Local: Wed, Nov 1 2000 2:51 pm
Subject: Re: corba or sockets?

Tim Bradshaw wrote:

> It seems to me that telecom protocols, especially wireless ones, may
> well have been designed by people who were acutely aware that
> bandwidth is scarce and expensive, and compute cycles and memory,
> even in a mobile phone, are cheap and plentiful.

> --tim

Yes they are, but that argument is suspiciously like the one made when
hardware resources like memory and disk space were scarce.  It has taken
me a long time to get over the size of Lisp executables because of that
conditioning.  Save space, save cycles and optimize, optimize,
optimize.  I am going to predict that communications bandwidth will
become less and less of an issue as time goes by and eventually we will
get tired of "transmitting the sum of all of man's computer data every
few seconds".  Maybe its not such a good thing to get into bad habits
now.  

My feeling that the real key to reducing network traffic is to make the
protocols "higher level" and thus say more with less.

I was at a seminar about ten years ago put on by a member of Sun
Microsystems's Corba team.  He discussed bandwidth considerations but
brushed them off as "orthogonal problems" (the same for network
management, et. al)

As to the question of Corba or Sockets, go with what attracts you, once
you have implemented the solution you will actually know how to actually
do it. :) :)

Wade


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tim Bradshaw  
View profile  
 More options Nov 1 2000, 6:36 pm
Newsgroups: comp.lang.lisp
From: Tim Bradshaw <t...@cley.com>
Date: 01 Nov 2000 22:42:33 +0000
Local: Wed, Nov 1 2000 5:42 pm
Subject: Re: corba or sockets?

* Wade Humeniuk wrote:
> Yes they are, but that argument is suspiciously like the one made when
> hardware resources like memory and disk space were scarce.  It has taken
> me a long time to get over the size of Lisp executables because of that
> conditioning.  Save space, save cycles and optimize, optimize,
> optimize.  I am going to predict that communications bandwidth will
> become less and less of an issue as time goes by and eventually we will
> get tired of "transmitting the sum of all of man's computer data every
> few seconds".  Maybe its not such a good thing to get into bad habits
> now.  

It may be `suspiciously like it' but I don't think it's the same.  At
least where I live (in the UK) it's reasonably apparent that a huge
amount of telecoms is going to end up going over wireless links[1].
There is just a finite amount of radio bandwidth, and nothing is ever
going to increase it.  You can effectively increase it by reducing
cell sizes but that's not a cure-all since base-stations are expensive
and a nuisance.

And bandwidth is *expensive* -- the European telcos are in the process
of spending over $100 billion on licenses for more bandwidth alone,
with the total expenditure on licenses and hardware estimated at more
than $300 billion over the next few years.  That's really a lot of
money.

And it's also not really the case that memory is cheap for instance,
although the PDP11 mindset I referred to elsewhere would lead you to
believe it is.  It's cheap *if you don't want to access it*: if you do
want to access it you soon discover that you have a small amount of
memory you can actually get at quickly, and a much larger amount which
is depressingly far away from the CPU.  If you have a decent machine,
it may be able to deliver stuff in the quantities the CPU needs, but
the latency is still severe.  And this situation will not ever get
better.  And lo and behold there are seriously hairy algorithms to
deal with this problem, implemented mostly in hardware.

Similar things go for network bandwidth -- wire-based bandwidth may be
plentiful, but latencies are long and getting longer (light travels
0.3 m in one cycle for a 1GHz chip).

--tim

Footnotes:
[1]   I'm not a particularly advanced user, and I already hardly use
      my landline since mobiles are cheaper and more convenient for
      me.  Indeed I'm typing this over a mobile link from my hotel
      room: although mobile data connections are definitely not
      serious yet, it's sufficiently cheaper than hotel phone bills
      that I do it anyway.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Boris Schaefer  
View profile  
 More options Nov 1 2000, 8:19 pm
Newsgroups: comp.lang.lisp
From: Boris Schaefer <bo...@uncommon-sense.net>
Date: 02 Nov 2000 02:33:03 +0100
Local: Wed, Nov 1 2000 8:33 pm
Subject: Re: corba or sockets?

Tim Bradshaw <t...@tfeb.org> writes:

| I think this is yet another one of those cases where most software
| people (clearly not Erik) are living in the world of the PDP11.
| Hardware people spend all their time dealing with these issues --
| just look at the design of a modern processor, which is dealing
| exactly this kind of thing.

Well, for some time now, I have put off studying some processor
designs.  Since I did never before study a processor design, I would
be glad, if you could recommend a processor that's modern and that
someone with no (at least not very much) previous experience in this
area can understand.  I'd also be glad for some literature
recommendations in this area.

Thanks in advance,
Boris

--
bo...@uncommon-sense.net - <http://www.uncommon-sense.net/>

Many aligators will be slain,
but the swamp will remain.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Nov 1 2000, 9:18 pm
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.net>
Date: 02 Nov 2000 02:18:15 +0000
Local: Wed, Nov 1 2000 9:18 pm
Subject: Re: corba or sockets?
* Boris Schaefer <bo...@uncommon-sense.net>
| Well, for some time now, I have put off studying some processor
| designs.  Since I did never before study a processor design, I would
| be glad, if you could recommend a processor that's modern and that
| someone with no (at least not very much) previous experience in this
| area can understand.  I'd also be glad for some literature
| recommendations in this area.

  Just about nothing beats David A. Patterson and John L Hennessy's
  seminal works "Computer Architecture (a quantitative approach)" and
  "Computer Organization and Design (the hardware/software interface)".

  Read them before you pick up, say, the processor reference manuals
  for the Intel Pentium III.  (Despite the braindamaged instruction
  set and register model, the internals are amazingly brilliant.)

#:Erik
--
  Does anyone remember where I parked Air Force One?
                                   -- George W. Bush


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bruce Hoult  
View profile  
 More options Nov 1 2000, 9:56 pm
Newsgroups: comp.lang.lisp
From: Bruce Hoult <br...@hoult.org>
Date: Thu, 02 Nov 2000 15:56:43 +1300
Local: Wed, Nov 1 2000 9:56 pm
Subject: Re: corba or sockets?
In article <87d7gf17lc....@qiwi.uncommon-sense.net>, Boris Schaefer

<bo...@uncommon-sense.net> wrote:
> Tim Bradshaw <t...@tfeb.org> writes:

> | I think this is yet another one of those cases where most software
> | people (clearly not Erik) are living in the world of the PDP11.
> | Hardware people spend all their time dealing with these issues --
> | just look at the design of a modern processor, which is dealing
> | exactly this kind of thing.

> Well, for some time now, I have put off studying some processor
> designs.  Since I did never before study a processor design, I would
> be glad, if you could recommend a processor that's modern and that
> someone with no (at least not very much) previous experience in this
> area can understand.  I'd also be glad for some literature
> recommendations in this area.

That's easy, study any modern RISC design, such as PowerPC or ARM or
Alpha or MIPS (I'd stay away from SPARC).

For books, it's really easy to decide on a recommendation:

  Computer Organization and Design:
  the hardware/software interface

  <http://www.amazon.com/exec/obidos/ASIN/1558604286>

It covers everything you need to know, all fucussed around the MIPS ISA.  
It looks at gates and hardware design, instruction sets,
assembly-language programming.  It presents a series of
increasingly-sophisticated possible implementations of the MIPS
architecture, with the first ones being simple enough that you could
actually go and build them yourself using TTL chips (or just model them).

You can't beat it and these guys *know* what they're talking about.

Hennessy, btw, just got a big promotion at Stanford...

-- Bruce


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 51 - 75 of 99 < Older  Newer >
« Back to Discussions « Newer topic     Older topic »