Slashdot Mirror


User: DazzaJ

DazzaJ's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Re:"Tricks?" on The Growing Field Guide To Spam Techniques · · Score: 5, Informative

    Hormel Foods has this to say on the subject

    "We do not object to use of this slang term to describe UCE (unsolicited commercial email), although we do object to the use of our product image in association with that term. Also, if the term is to be used, it should be used in all lower-case letters to distinguish it from our trademark SPAM, which should be used with all uppercase letters."

    so....

    "SPAM" is Pork and Ham
    "spam" is unsolicited email

    "SPAM SPAM SPAM SPAM
    SPAM SPAM SPAM SPAM
    Lovely SPAM, wonderful SPAM!"
    is a Monty Python song

  2. Re:SPOFs on Self-Repairing Computers · · Score: 1

    You should probably read up a bit on Nonstop servers (nonstop.compaq.com) before saying why they will not work!

    A Nonstop server is fault tolerant at the hardware and software level. It is a shared nothing parallel processing system (MPP) rather than the SMP systems you are used to. I won't describe it in detail as the HP website does a better job.

    To answer the question "is there an effective way to judge which processor is correct?", the answer is no. When an error is detected in either of the two lock stepped CPUs (or any hardware or software component for that matter) the component is immediately killed. This is called Fail-Fast. This stops the error corrupting other parts of the system. Due to its unique design the Nonstop server application will keep running despite the death of hardware and software components.

    For example, certain software processes run fully Nonstop e.g. the Transaction manager. The Nonstop process "state" is constantly mirrored to another processor. If the processor running the primary Nonstop process fails fast, the backup process takes over immediately in the alternate processor. This is typically sub second.

    There is far more to the architecture, but you get the idea.