Slashdot Log In
Researchers Transmit Optical Data at 16.4 Tbps 2550km
Posted by
CmdrTaco
on Thu Feb 28, 2008 08:41 AM
from the someone-compute-the-porntential dept.
from the someone-compute-the-porntential dept.
Stony Stevenson writes "The goal of 100 Gbps Ethernet transmission is closer to reality with the announcement Wednesday that Alcatel-Lucent researchers have recorded an optical transmission record along with three photonic integrated circuits. Carried out by researchers in Bell Labs in Villarceaux, France, the successful transmission of 16.4 Tbps of optical data over 2,550 km was assisted by Alcatel's Thales' III-V Lab and Kylia, an optical solution company. The researchers utilized 164 wavelength-division multiplexed channels modulated at 100-Gbps in the effort."
Related Stories
This discussion has been archived.
No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Full
Abbreviated
Hidden
Loading... please wait.
Translation please? (Score:5, Funny)
Re:Translation please? (Score:5, Funny)
Parent
Re: (Score:2, Informative)
Curse my geeky genes for making me calculate that when you asked.
Re:Translation please? (Score:5, Informative)
(total seconds per fortnight)
14 days per fortnight
24 hours per day
60 minutes per hour
60 seconds per minute
all over
(seconds per Library of Congress transferred)
20 terabytes per second (one LoC/second)
2.05 terabytes per second (16.4 terabits per second
Parent
Re:Translation please? (Score:4, Funny)
Parent
Re:Translation please? (Score:4, Funny)
Well... if you are Concast they will give you those numbers in terms of photos or mp3's or emails downloaded in a month.
Personally I like to know in terms of how many 8 track tapes I can download a month.
Parent
Re: (Score:3, Funny)
Re: (Score:2)
Re: (Score:2)
Re: (Score:3, Informative)
DVDR = 159238213.7 GB/747LCF
HDVD = 677609420 GB/747LCF
BDVD = 847011775 GB/747LCF
-nB
Re: (Score:3, Interesting)
Redoing for the 747-400ERF:
Re: (Score:2)
Re: (Score:2)
(((650 / (0.0014 *
650 cubic meters - rough volume of 747 [1]
8.54 GB - dual layer DVD capacity
1024 GB in 1 TB
1024 TB in 1 PB
So, a 747 can carry about 250 Petabytes of data in Dual Layer DVDs at a time. Then just divide that by the time it takes to fly it wherever you want it.
[1]: All volume values for the 747 were found at h [zap16.com]
So, this speed, on a scale of 1-10... (Score:5, Funny)
Re: (Score:2)
ObWalken (Score:4, Funny)
Don't get too excited. (Score:5, Funny)
Just check your TOS agreement. It's all right there.
Re:Don't get too excited. (Score:5, Funny)
*1 Gig upload/download monthly limits apply
Parent
On Neutrality (Score:2, Insightful)
Re: (Score:2)
Current cables? (Score:2)
Re: (Score:3, Informative)
maybe its just me (Score:5, Funny)
how very Star Trek of them.
Re:maybe its just me (Score:5, Funny)
I'm sorry Captain, but we canno' reach these speeds with time-division multiplexing. the phase coils canno' handle it!
Parent
16.4 Tbps of optical data? (Score:2, Insightful)
Re:16.4 Tbps of optical data? (Score:5, Informative)
Parent
Re: (Score:2, Informative)
I'd wadger they're using devices like a Diffraction Grating [wikipedia.org] or a Fabry-Perot Etalon [wikipedia.org]
Only a little more complicated than a prism :)
Re:16.4 Tbps of optical data? (Score:5, Informative)
Parent
Re: (Score:2)
Measuring data quantity by its speed over a distance in kilometers? What's next, measuring its speed by its acceleration over a volume in Liters?
Doesn't matter... (Score:5, Funny)
For download rate n, my demand for new porn will require me to download at a rate of n+1.
Sending "optical data" (Score:2)
Re:Sending "optical data" (Score:4, Funny)
Parent
!Ethernet (Score:2)
Re: (Score:3, Insightful)
Re: (Score:2)
Re: (Score:3, Informative)
Re: (Score:2)
The point is really that there's a huge jump from a $15 1Gb-e (or $500 10Gb-e), if that jump can be made at all, while there's no 100Gb-e at any price. And instead of rolling out 100Gb-e that works for LANs, the industry is evidently waiting until it's good for continent-spanning WANs.
Re: (Score:2)
Re:Make it Short and Fast and Snappy (Score:5, Interesting)
It doesn't really matters (yet, and considering Ethernet technology) if the BW of the fiber is a zillion Petabits/sec.
The problem is now at 1Gbps and 10Gbps in Ethernet technology, and is because the processor overloads with the amount of hardware interrupts. The processors that are general purpose have to waste too many clock cycles processing that much interrupts, the processors nowadays are superscalar [ http://en.wikipedia.org/wiki/Superscalar [wikipedia.org] ]and every time the processor have to change the context (to attend an interrupt) has to do lots of things like unloading the registers, saving the context, loading the registers of the new process, and has to drop something out of the pipeline [ http://en.wikipedia.org/wiki/Pipeline_(computing) [wikipedia.org] ] loosing performance.
Ethernet tech has a huge latency [ http://en.wikipedia.org/wiki/Latency_(engineering) [wikipedia.org] ] and a stack that makes processing not so easy (if you look at te code of a linux network device driver it handles pretty much everything including writing the mac address that is only copied when the driver initialize).
That is why there are some relative new things (NAPI in Linux) that try to make lessen the overload, there are new network devices that handle layer 2 and 3 (or at least parts of those, for example, is used to be handled the checksum algorithm) to avoid doing it in the processor. There are some white papers (one from intel, another from NetXen, I'm sorry I don't have the links now) that explain the problem and some approach to a possible solution.
Yes, I know, there is something I have not said, and is that the main switches or routers have to deal with that and have hardware specially designed to do heavy network packet processing, and that is the point, the network cards will have to do that (and are already starting to), neither is an easy job for hardware designers, nor for the market, is easier and cheaper to have a machine that you can change the behaviour only changing the firmware or changing settings from a program (routers have an operating system, and lots of those are a general purpose microprocessor with a linux kernel and a web server to configure it, for example home routers).
There is much to say yet in this field.
Parent
Re: (Score:3, Informative)
Re: (Score:3, Insightful)
New API (NAPI) takes a mixed approach, read: [ http://en.wikipedia.org/wiki/New_API [wikipedia.org] ], and for more information: [ http://www.linux-foundation.org/en/Net:NAPI [linux-foundation.org] ].
Re: (Score:2, Informative)
The first one is what server-people push (they claim they do not need more, that's why 40Gbit/s was put into Ethernet standard),
while network people want full 100 Gbit/s.
> But what about all the LAN vendors, which have a real market for 100Gbps
They don't.
There seems to be market either for 40Gbit/s in LAN/local connections or for 100Gbit/s for core/long haul. At least judging but what happened with high-speed ethernet standard.
Re: (Score:3, Insightful)
Stick a thousand machines on each end, and you'll understand why 100Gbps is needed.
Re: (Score:3, Interesting)
Re: (Score:2)
But the point is that I can't buy anything faster for even 10x or 100x, except multiple cards. And maybe some really exotic interconnect that's not ethernet, so apps have to be recoded to use it.
Re: (Score:2)
And the reason there isn't anything faster is that it's such an incredibly niche market, the number of sites that need greater than 1GB/s on a single link are very, very small. Heck the storage for
Re: (Score:2)
Infiniband isn't ethernet.
Re: (Score:2)
Re: (Score:2)
of course I forgot to pay my bill for a couple months, so they aren't happy with me...but it is still working, so whatever.
Re: (Score:2)