Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Virtualization doesn't make sense (Score 1) 361

Right now your looking at it from a completely x86 view. Look at it from teh point of view from a hardware based system that's been doing it for years. A lot of these problems have been solved already.

Let's say you have a lot of servers at big corp. Each runs a specialized application, and each application is required to be isolated from the rest. A good VM system like zVM can help you a ton. You get a hardware platform that has tons of mature disaster recovery solutions, and a hypervisor that can dynamically allocate resorces between different VMs to the point where you don't even see it.

I mention zVM a lot because I know a lot of folks that are involved with large scale rollouts of it, in production, with great results.

The downside is that you need people who know what they're doing, and the hardware is expensive as hell.

Comment Re:Well, duh! (Score 1) 361

Everything has some overhead, sure. However, when you have hardware level virtualization (where the logic is in the firmware like the IBM mainframe systems), and not in some software hypervisor, the overhead is very minimal. On mainframes they where running LPARs with native performance over 20 years ago.

Comment Re:What about MySQL? (Score 1) 906

if submitting 20 small queries instead of 1 join is faster, that app must really suck. Doing network fetches isn't free, most simple joins are fine if your tables are indexed correctly (assuming your DB doesn't suck). I do joins on tables with > 100 million rows in oracle and they are very fast.

Comment Re:Java 8 Preview (Score 1) 906

I use the IBM JVMs under AIX in a high volume production environment. It works pretty good except the headless AWT is broken. Otherwise, it does pretty well.

Comment Re:Should have used PHP. (Score 1) 324

I'd agree that a lot of J2EE applications and containers are complete shit (i'm a java developer and I like it, dammit). If you want to write good and scalable java code, a lot of times it's better to go with a lightweight system. an example is the Pojo message beans you can use with spring, or using embedded Jetty instead of a big slow ass websphere to serve up web services. Leaks in java apps crack me up because it's usually somebody who doesn't understand the feature they're using.

Slashdot Top Deals

Remember, UNIX spelled backwards is XINU. -- Mt.

Working...