<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-1270287474555047904</atom:id><lastBuildDate>Mon, 16 Jan 2012 17:34:22 +0000</lastBuildDate><category>Illumos</category><category>SPARC T4</category><category>Fishworks</category><category>virtualization</category><category>Orace</category><category>Solaris 11 Express</category><category>2010.05</category><category>Oracle World</category><category>2010.03</category><category>Patch</category><category>dskinfo</category><category>M-series</category><category>SPARC</category><category>Solaris 11</category><category>OpenOffice</category><category>Nexenta</category><category>zones</category><category>FreeBSD</category><category>x86</category><category>Security</category><category>CIFS</category><category>ZFS Working Group</category><category>Oracle</category><category>DTrace</category><category>Indiana</category><category>s10u8</category><category>Solaris Next</category><category>s10u10</category><category>OpenIndiana</category><category>SPARC T5</category><category>KVM</category><category>OpenSolaris</category><category>LDOM</category><category>Sun</category><category>Fujitsu</category><category>Solaris</category><category>crossbow</category><category>Solaris 10</category><category>s10u9</category><category>Joyent</category><category>PSARC</category><category>digging</category><category>PKG</category><category>s10u7</category><category>ZFS</category><title>It's a UNIX system!</title><description>Solaris for the masses</description><link>http://sparcv9.blogspot.com/</link><managingEditor>noreply@blogger.com (Henkis)</managingEditor><generator>Blogger</generator><openSearch:totalResults>210</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/UnixSystem" /><feedburner:info uri="unixsystem" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-26152952053379196</guid><pubDate>Tue, 03 Jan 2012 15:11:00 +0000</pubDate><atom:updated>2012-01-04T07:05:55.697-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Solaris</category><category domain="http://www.blogger.com/atom/ns#">DTrace</category><title>The all-seeing eye of DTrace</title><description>I was recently involved with a problem related to backup software running on Solaris, as part of a general health check of the system I stumbled on something interesting that was not visible using conventional tools.&lt;br /&gt;&lt;br /&gt;This tuned out to be a good opportunity to put my DTrace skill to work together with a few finished scripts. Once again it struck what how amazing this tool is, you can really see everything that is going on in your system and as it turns out, you can even see problems that does not even exist. Since this was so much fun and a good example I will walk through the steps again: &lt;br /&gt;&lt;br /&gt;The thing that caught my eye was the output from errinfo of  the DTrace toolkit. There are a very high rate of system calls returning in error, namely close() with -9 "Bad file number", as seen with errinfo:&lt;br /&gt;&lt;PRE&gt;whoami        ioctl   22     13  Invalid argument                 &lt;br /&gt;init          ioctl   25    212  Inappropriate ioctl for device   &lt;br /&gt;awk           stat64    2    520  No such file or directory&lt;br /&gt;java          lwp_cond_wait   62   3492  timer expired                                 &lt;br /&gt;processx      close    9 102073391  Bad file number&lt;/PRE&gt; Syscall errors are in itself normal can be seen on any systems, but usually not several thousand per second.  As the error message indicates this happens when a close() is issued on a file handle (Integer) that does not represent an open file for that process, which at first look seems like a quite useless operation.&lt;br /&gt;&lt;br /&gt;We can also see that close() is by far the most used system  call here:&lt;br /&gt;&lt;PRE&gt;# dtrace -q -n 'BEGIN { close=0;total=0 } syscall::close:entry \&lt;br /&gt;{ close = close + 1 } syscall:::entry  { total = total + 1 } END \&lt;br /&gt;{ printf("%d close calls of %d total calls\n",close,total) }'&lt;br /&gt;&lt;br /&gt;309530 close calls of 426212 total calls&lt;/PRE&gt;Looking at which file descriptor the process is trying to close shows that there is an even distribution of close between 0 and 65536 and the only successful calls where to numbers lower than 1024 where numbers normally used unless a process has a very high amount of open files. &lt;pre&gt;# dtrace -n 'syscall::close:entry { this-&gt;fd = arg0 } syscall::close:return \&lt;br /&gt;/ errno!= 0 / { @failed = lquantize(this-&gt;fd,0,65536,16384) } syscall::close:return \&lt;br /&gt;/errno == 0/ { @good = lquantize(this-&gt;fd,0,65535,1024) }&lt;br /&gt;dtrace: description 'syscall::close:entry ' matched 3 probes&lt;br /&gt;           value  ------------- Distribution ------------- count    &lt;br /&gt;             &lt; 0 |                                         7        &lt;br /&gt;               0 |@@@@@@@@@@@@@                            414811   &lt;br /&gt;           16384 |@@@@@@@@@                                294912   &lt;br /&gt;           32768 |@@@@@@@@@                                294912   &lt;br /&gt;           49152 |@@@@@@@@@                                294912   &lt;br /&gt;        &gt;= 65536 |                                         0        &lt;br /&gt;&lt;br /&gt;           value  ------------- Distribution ------------- count    &lt;br /&gt;             &lt; 0 |                                         0        &lt;br /&gt;               0 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 12459&lt;br /&gt;            1024 |                                         0      &lt;/pre&gt;The processes responsible only lives only a short while, but by using dtruss i could trace system calls based on the process name:&lt;br /&gt;&lt;PRE&gt; 15889/1:  fork1()   = 0 0&lt;br /&gt; 15889/1:  lwp_sigmask(0x3, 0x0, 0x0)   = 0xFFFF 0&lt;br /&gt; 11385/1:  getpid(0x0, 0x1, 0x1CD0)   = 15889 0&lt;br /&gt; 11385/1:  lwp_self(0x0, 0x1, 0x40)   = 1 0&lt;br /&gt; 11385/1:  lwp_sigmask(0x3, 0x0, 0x0)   = 0xFFFF 0&lt;br /&gt; 11385/1:  fcntl(0xA, 0x9, 0x0)   = 0 0&lt;br /&gt; 11385/1:  schedctl(0xFFFFFFFF7F7361B8, 0xFFFFFFFF7F738D60, 0x11A340)&lt;br /&gt; = 2139062272 0&lt;br /&gt; 11385/1:  lwp_sigmask(0x3, 0x0, 0x0)   = 0xFFFF 0&lt;br /&gt; 11385/1:  sigaction(0x12, 0xFFFFFFFF7FFDEE20, 0x0)   = 0 0&lt;br /&gt; 11385/1:  sigaction(0x2, 0xFFFFFFFF7FFDEE20, 0x0)   = 0 0&lt;br /&gt; 11385/1:  sigaction(0xF, 0xFFFFFFFF7FFDEE20, 0x0)   = 0 0&lt;br /&gt; 11385/1:  getrlimit(0x5, 0xFFFFFFFF7FFDED90, 0x0)   = 0 0&lt;br /&gt; 11385/1:  close(0x3)   = 0 0&lt;br /&gt; 11385/1:  close(0x4)   = 0 0&lt;br /&gt; 11385/1:  close(0x5)   = 0 0&lt;br /&gt; 11385/1:  close(0x6)   = 0 0&lt;br /&gt;....&lt;br /&gt; 11397/1:  close(0xFFFF)   = -1 Err#9&lt;/PRE&gt;The process is issuing close on all numbers between 0x3 to 0xFFFF in a loop, as expected the first few are actually open and closed correctly but the other was majority is returning error -9.&lt;br /&gt;&lt;br /&gt;If we look in the beginning of the trace we can see a fork, followed a little later by getrlimit(0x5,...), if we look at what that arguments to getrlimit means:&lt;br /&gt;&lt;PRE&gt;# egrep "RLIMIT.*5" /usr/include/sys/resource.h&lt;br /&gt;#define RLIMIT_NOFILE   5               /* file descriptors */&lt;/PRE&gt; The process is checking the limit of file descriptors and then closes the whole possible range which seems a little unnecessary since almost none of them are open. But this was just after a fork, and a forked process inherits all the open files of it's parent, this might not be what you want so a close is in order. There are however no easy way of getting a list of all used file descriptors so what we see here is a brute-force approach of making sure none are open before continuing. This would probably not have been noticed if it weren't for the unusual high limit of file descriptors.&lt;PRE&gt;# plimit $(pgrep processx|head -1) | grep nofiles&lt;br /&gt;nofiles(descriptors) 65536  65536&lt;/PRE&gt;Perhaps a iteration with close on the contents of /proc/${PID}/fd would have been less resource consuming in this scenario.&lt;br /&gt;&lt;br /&gt;All of this was done in a production system without impact to applications which is crucial, you must be able to trust that it will never bring your system down. This is something DTrace can be trusted with where some platforms lacking it but tries to provide somewhat similar observability fails, read Brendans blog: &lt;A HREF="http://dtrace.org/blogs/brendan/2011/10/15/using-systemtap/"&gt;using systemtap&lt;/A&gt; or the older but entertaining &lt;A HREF="http://blogs.oracle.com/ahl/entry/dtrace_knockoffs"&gt;DTrace knockoffs&lt;/A&gt;. &lt;br /&gt;&lt;br /&gt;Download the DTracetoolkit &lt;A HREF="http://www.brendangregg.com/DTraceToolkit-0.99.tar.gz"&gt;here&lt;/A&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-26152952053379196?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/mSrzw1WPWco" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/mSrzw1WPWco/all-seeing-eye-of-dtrace.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>2</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2012/01/all-seeing-eye-of-dtrace.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-1450518029645307656</guid><pubDate>Tue, 03 Jan 2012 14:29:00 +0000</pubDate><atom:updated>2012-01-03T07:00:57.157-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ZFS</category><category domain="http://www.blogger.com/atom/ns#">Orace</category><category domain="http://www.blogger.com/atom/ns#">Fishworks</category><title>ZFSSA/S7000 major update</title><description>The first major software update of S7000/ZFSSA/Fishwork in over a year is now available. With the original version "2011.Q1" it seems a bit delayed, perhaps due to the departure several key persons behind the software post Oracle acquisition of Sun. New features in this release:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;ZFS RAIDZ read performance improvements&lt;/li&gt;&lt;li&gt;Significant fairness improvements during ZFS resilver operations&lt;/li&gt;&lt;li&gt;Significant zpool import speed improvements&lt;/li&gt;&lt;li&gt;Replication enhancements - including self-replication&lt;/li&gt;&lt;li&gt;Seval more including bug fixes.&lt;/li&gt;&lt;/ul&gt;There are alsoa few integration features for Oracle including RMAN and Infiniband if you happen to have a Exadata around.&lt;br /&gt;&lt;br /&gt;The improved RAIDZ performances is the hybrid raidz/mirror allocator in zpool version 29.&lt;br /&gt;&lt;br /&gt;The ZFSSA is a fantastic product with probably the best interface and analytics available. But the development seems to have stagnated a bit the last year, so have the blog post with useful information and performance comparison by the people behind it. And I still miss one feature badly; synchronous replication of datasets, continuous replication is not always good enough.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://wikis.oracle.com/display/FishWorks/ak-2011.04.24.1.0+Release+Notes"&gt;Release Notes&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-1450518029645307656?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/uP1LQ9hVLmE" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/uP1LQ9hVLmE/zfssas7000-major-update.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2012/01/zfssas7000-major-update.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-480797562823015696</guid><pubDate>Tue, 27 Dec 2011 19:20:00 +0000</pubDate><atom:updated>2011-12-27T17:46:04.112-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Orace</category><category domain="http://www.blogger.com/atom/ns#">Solaris 11</category><category domain="http://www.blogger.com/atom/ns#">Illumos</category><title>Solaris 11, illumos and the source</title><description>Over a year ago Oracle closed the source for OpenSolaris, leaving contributors outside of Oracle left in the cold. That was a huge problem for the adoption of Solaris which had finally begun to rise again. Recently Solaris 11 was released, but without the source, this was likewise a huge problem, but now also for enterprise customers  who are using and paying for Solaris. DTrace have lost part of it's value for Solaris 11 compared to the now dead OpenSolaris.&lt;br /&gt;&lt;br /&gt;A perhaps even large problem is that when Oracle closed Solaris, many, many of the core developers left Oracle.  Several of them now works outside of Oracle contributing to illumos, but these changes can not be ported back into Solaris 11 as long as Oracle keeps the source closed.&lt;br /&gt;&lt;br /&gt;Solaris 11 has features not available in illlumos, but I chose to use illumos instead of Solaris 11 since I have access to the source and I am not locked to one OS-distribution. Also the licensing for Solaris 11 does not allow me to use it for small deployments without buying a whole support contract. If I "upgrade" a zpool to use new features available only in Solaris 11 I will be unable to import the pool using the free ZFS implementation that in illumos based distributions such as OpenIndiana or Nexenta or other operating systems such as FreeBSD.&lt;br /&gt;&lt;br /&gt;I think this is a terrible move by Oracle, not only are the alienating new customers, they are also locking out great engineers who have implemented revolutionary features into Solaris. As Bryan Cantrill pointed out in his LISA '11 speech, Oracle has not made any official announcement about what they have done to OpenSolaris or what their future plans for the source are, this is very troubling and ignorant.&lt;br /&gt;&lt;br /&gt;Solaris 11 is a great OS but it being treated terribly by Oracle, Oracle seems to think that  the best way to make a profit out of Solaris is to keep it closed for everyone else, I don't agree.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-480797562823015696?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/-jaNoA42GDw" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/-jaNoA42GDw/solaris-11-illumos-and-source.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>7</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/12/solaris-11-illumos-and-source.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-8766614748991335358</guid><pubDate>Sun, 11 Dec 2011 01:22:00 +0000</pubDate><atom:updated>2011-12-16T14:13:05.727-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Orace</category><category domain="http://www.blogger.com/atom/ns#">Solaris</category><category domain="http://www.blogger.com/atom/ns#">Illumos</category><title>Solaris history and illumos</title><description>A great presentation by Bryan Cantrill from LISA11 is now available. Besides describing the illumos project it is also a good insight in the history of Solaris and what happened after Oracle acquired Sun. A must read for anyone interested in illumos or Solaris in general.&lt;br /&gt;&lt;br /&gt;&lt;div style="width:425px" id="__ss_10519146"&gt; &lt;strong style="display:block;margin:12px 0 4px"&gt;&lt;a href="http://www.slideshare.net/bcantrill/fork-yeah-the-rise-and-development-of-illumos" title="Fork Yeah! The Rise and Development of illumos" target="_blank"&gt;Fork Yeah! The Rise and Development of illumos&lt;/a&gt;&lt;/strong&gt; &lt;iframe src="http://www.slideshare.net/slideshow/embed_code/10519146" width="425" height="355" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"&gt;&lt;/iframe&gt; &lt;div style="padding:5px 0 12px"&gt; View more &lt;a href="http://www.slideshare.net/" target="_blank"&gt;presentations&lt;/a&gt; from &lt;a href="http://www.slideshare.net/bcantrill" target="_blank"&gt;bcantrill&lt;/a&gt; &lt;/div&gt; &lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Update: The video is now also available.&lt;br /&gt;&lt;iframe width="560" height="315" src="http://www.youtube.com/embed/-zRN7XLCRhc" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-8766614748991335358?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/NHt9daUJMg0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/NHt9daUJMg0/solaris-history-and-illumos.html</link><author>noreply@blogger.com (Henkis)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://img.youtube.com/vi/-zRN7XLCRhc/default.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/12/solaris-history-and-illumos.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-6955064127407268242</guid><pubDate>Sun, 04 Dec 2011 01:14:00 +0000</pubDate><atom:updated>2011-12-03T17:25:27.865-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SPARC T4</category><category domain="http://www.blogger.com/atom/ns#">Orace</category><category domain="http://www.blogger.com/atom/ns#">LDOM</category><category domain="http://www.blogger.com/atom/ns#">SPARC</category><title>LDOM supported by Oracle</title><description>Oracle VM for SPARC is finally supported by Oracle, you can now partition a system with with logical domains and license hardware available to the domain. This is something Oracle customers have been wanting for a while now and I must say I believed it would have been solved the day Oracle acquired Sun. Nevertheless it's now finally supported at the same time the first T4 systems are being delivered to customers, which must be considered good timing.&lt;br /&gt;&lt;br /&gt;&lt;A HREF="http://www.oracle.com/us/corporate/pricing/partitioning-070609.pdf"&gt;Server/Hardware Partitioning&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://www.c0t0d0s0.org/archives/7417-Important-change-regarding-OVMSPARC-and-Licensing.html"&gt;Important change regarding OVM/SPARC and Licensing&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-6955064127407268242?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/TighfL4zHvo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/TighfL4zHvo/ldom-supported-by-oracle.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/12/ldom-supported-by-oracle.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-1753728298837283280</guid><pubDate>Thu, 10 Nov 2011 22:21:00 +0000</pubDate><atom:updated>2011-11-25T16:48:36.612-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ZFS</category><category domain="http://www.blogger.com/atom/ns#">SPARC T4</category><category domain="http://www.blogger.com/atom/ns#">SPARC</category><category domain="http://www.blogger.com/atom/ns#">Security</category><category domain="http://www.blogger.com/atom/ns#">Oracle</category><category domain="http://www.blogger.com/atom/ns#">Solaris 11</category><title>First impressions of Solaris 11 11/11</title><description>I have had a few hours to try the final Solaris 11 release, overall I think it is far more stable and polished than the previous "Early Adaptors" release. Besides the fact that I am unable to use semi-old SPARC gear to test the release since only the latest generations of hardware are supported I have found few real problem so far. &lt;br /&gt;&lt;br /&gt;The new packaging system finally fixes what I believe have been the biggest problem for Solaris the last five years or so, it is now repository based and it is simple to install software and dependencies are automatically solved. No more hassle of downloading and installing multiple software packages from SunFreeware to resolve dependencies. This also makes packaging faster and safer, brining the whole system to a known level and always with a safe recover option since it is used in conjunction with ZFS clones.&lt;br /&gt;&lt;br /&gt;Zones are a fantastic tool for security/workload separation and virtualization so it's good to see that so many enhancements have been done in this area. The perhaps most noticeable is of corse that they now also use the new IPS system for packages and that makes a vanilla zones very lightweight without the hassle of a sparse zone. NFS service can now finally be provided from inside a zone. There is a tight integration with the new crossbow network virtualization making is possible to limit bandwidth to zones, use DHCP in a zone without having a separate NIC and build internal networks between zones inside a single Solaris 11 instance. &lt;br /&gt;&lt;br /&gt;Imagine the power and flexibility of an T4-4 with 256 CPU threads and 1TB of memory running 50 zones with several high bandwidth/low latency networks inside the machine with no latency or overhead caused by virtualization. &lt;br /&gt;&lt;br /&gt;Unfortunately the X86 version with the graphical desktop seems to be somewhat unstable compared to the Express release, I think it's related to the upgrade of the X server. I have been unable to use my laptop with to displays with the final release.&lt;br /&gt;&lt;br /&gt;Solaris 11 is however focused on usage in servers and it seems stable for that, I have only found one disturbing problem so far, sharing ZFS filesystems does not seem to work ( zfs set -o sharenfs=on), but you can share each individual filesystem with the share command. Sadly if you are evaluating this you will probably have to wait until next year when there is a full release of Solaris since no updates are provided without a service contract. If you work for Oracle this is something you might want to fix for everyone, or tell me what I'm doing wrong.&lt;br /&gt;&lt;br /&gt;Solaris 11 have many other new features such as per-user encryption of home directories with ZFS crypto, a new mirror/raidz hybrid bloc allocator for ZFS, numerous security enhancements among other thinks. I have only named a few of the changes I will probably keep posting Solaris 11 stuff as I find something interesting that is not directly highlighted it Oracle own what's new documents.&lt;br /&gt;&lt;br /&gt;Update: As pointed out in the comments sharing of NFS together with ZFS works a bit differently now. If you share an existing dataset you have to set the share property. However if you set the sharenfs property when creating the dataset it works as in previous versions of Solaris 11 Express, OpenSolaris etc. Move information available in the documentation &lt;A HREF="http://docs.oracle.com/cd/E23824_01/html/E24456/filesystem-6.html#filesystem-5"&gt;here&lt;/A&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-1753728298837283280?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/jZlfR9VUdaU" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/jZlfR9VUdaU/first-impressions-of-solaris-11-1111.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>4</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/11/first-impressions-of-solaris-11-1111.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-7949709292707467423</guid><pubDate>Wed, 09 Nov 2011 18:57:00 +0000</pubDate><atom:updated>2011-11-09T13:27:41.919-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Solaris 11</category><title>Solaris 11 released</title><description>Solaris 11 is available for download "SunOS Release 5.11 Version 11.0", based on build snv_175b.&lt;br /&gt;&lt;br /&gt;There are of course many changes since Solaris 10, most of them have been available in the latest build of OpenSolaris but there are some new that are unique to the final release of Solaris 11.&lt;br /&gt;&lt;br /&gt;Install images are available for download and works on all current SPARC machines which is the T and M-series. There are also images available for X86-based machines which also can be used in VirtualBox. Here is a quick reference for the brand new packaging system: &lt;A HREF="http://www.oracle.com/technetwork/server-storage/solaris11/documentation/ips-one-liners-032011-337775.pdf"&gt;IPS one liners&lt;/A&gt;.&lt;br /&gt;&lt;br /&gt;I will post more detailed follow-up after I've had time to test it for more than a few hours.&lt;br /&gt;&lt;br /&gt;&lt;A HREF="http://www.oracle.com/technetwork/server-storage/solaris11/documentation/solaris11-whatsnew-201111-392603.pdf"&gt;Oracle Solaris 11 11/11 – What’s new&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://www.oracle.com/technetwork/server-storage/solaris11/downloads/index.html?ssSourceSiteId=ocomen"&gt;Download Oracle Solaris 11&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://sparcv9.blogspot.com/2011/02/future-features-of-solaris-11.html"&gt;Future features of Solaris 11&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-7949709292707467423?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/PsZvn4BbT7o" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/PsZvn4BbT7o/solaris-11-released.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/11/solaris-11-released.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-7283522820256276866</guid><pubDate>Tue, 08 Nov 2011 12:14:00 +0000</pubDate><atom:updated>2011-11-08T04:46:53.588-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SPARC T4</category><category domain="http://www.blogger.com/atom/ns#">Orace</category><category domain="http://www.blogger.com/atom/ns#">Solaris 11</category><title>Solaris 11 release and webcast</title><description>Solaris 11 will be release 2011/11/09 (2011/11/11 was not optimal for some reason).&lt;br /&gt;&lt;br /&gt;Oracle will host a launch event in New York and you can register to attend to the live webcast.&lt;br /&gt;&lt;br /&gt;Even if I have abandoned Solaris 11 for OpenIndiana for storage related installations, Solaris 11 have it's obvious place on bigger iron in the datacenter or for any mission critical workload that needs enterprise support. I would gladly have continued to use Solaris 11 for storage but the change made by Oracle to ditch the community and move to closed source and stricter licensing prevents that.&lt;br /&gt;&lt;br /&gt;This will make fantastic features such as crossbow, IPS, Native CIFS and COMSTAR available for use in production environments. Many enhancements for zones have also been made, they can for example be NFS servers in Solaris 11. &lt;br /&gt;&lt;br /&gt;Also if you want to make the most use of the new SPARC T4, Solaris 11 is the best choice since not every change usable to the T4 have been ported back to Solaris 10 8/11.&lt;br /&gt;&lt;br /&gt;If you pay for support of Solaris 11, please demand that Oracle gives you access to the source, DTrace will loose it's value otherwise and I think Oracle needs to hear that.&lt;br /&gt;&lt;br /&gt;&lt;A HREF="http://www.oracle.com/goto/solaris11event"&gt;Oracle Solaris 11 Launch webcast&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-7283522820256276866?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/djeujmpOdSY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/djeujmpOdSY/solaris-11-release-and-webcast.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>2</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/11/solaris-11-release-and-webcast.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-459019968306085895</guid><pubDate>Wed, 02 Nov 2011 10:48:00 +0000</pubDate><atom:updated>2011-11-02T07:20:22.220-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ZFS Working Group</category><category domain="http://www.blogger.com/atom/ns#">ZFS</category><category domain="http://www.blogger.com/atom/ns#">Orace</category><category domain="http://www.blogger.com/atom/ns#">Solaris</category><category domain="http://www.blogger.com/atom/ns#">Illumos</category><title>ZFS is 10 years!</title><description>It's been 10 years (31 Oct) since the first ZFS prototype was run inside of Sun Microsystems, 4 years later it was integrated in OpenSolaris and available to everyone to test. I've been using ZFS since 2004 and I must say that while I have always been impressed by ZFS it took until 2010 before the last bits where in place to make it really usable in demanding environments without problems. It takes time for a complex and critical system to grow mature, that's why I think ZFS will be the best option for a few years to come even if other systems could provide the same functionality. Today ZFS is available in both commercial and free operating systems as well as the foundation of several commercial storage products such as the Sun ZFS storage appliance and NexentaStor.&lt;br /&gt;&lt;br /&gt;Some of the latest ZFS features are only available in the closed version of ZFS owned by Oracle and distributed with Solaris but the free version is also going forward. It 's being developed by the illumos community with companies such as Nexenta, Joeyent and Delphix. The illumos branch of ZFS is also stable and used by the companies developing it in their own commercial products.&lt;br /&gt;&lt;br /&gt;&lt;A HREF="http://blog.delphix.com/matt/2011/11/01/zfs-10-year-anniversary/"&gt;ZFS 10 year anniversary&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://blog.delphix.com/matt/files/2011/11/oss.pdf"&gt;ZFS: Live after Oracle&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://sparcv9.blogspot.com/2011/06/zfs-working-group.html"&gt;ZFS working group&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-459019968306085895?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/9vSb9WX_irE" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/9vSb9WX_irE/zfs-is-10-years.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/11/zfs-is-10-years.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-2268026185358647211</guid><pubDate>Thu, 20 Oct 2011 14:59:00 +0000</pubDate><atom:updated>2011-10-20T14:46:16.752-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ZFS</category><category domain="http://www.blogger.com/atom/ns#">zones</category><category domain="http://www.blogger.com/atom/ns#">Solaris</category><category domain="http://www.blogger.com/atom/ns#">Solaris 10</category><title>Fast upgrades, with zones</title><description>I've been working with a sub-optimal solution with zones for a few years. The zones are located on SAN and movable between hosts which is good, but they are also located on an a filesystem which is not ZFS and not even UFS. This have made upgrades and patching terribly hard and slow, especially with more than 20 zones per host. All local zones earlier had to be upgraded at the same time as a global zone and all they had to be down for the entire operation (sometimes over 8 hours).&lt;br /&gt;&lt;br /&gt;After a testing upgrade-on-attach for a while and combining it with Turbocharged SVr4 packages I now have a solution which brings the downtime to under one hour for an entire upgrade including local zones.&lt;br /&gt;&lt;br /&gt;Everything would have been even easier if we had all root filesystems on ZFS.  Since migrating several terabytes of data at the same time as the upgrade was not an option this was a good solution:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Detach all local zones&lt;/li&gt;&lt;li&gt;Add Live upgrade and Turbocharge patches&lt;br /&gt;(119254-70,121428-13,121430-40,124630-28 or later, included in S10u8)&lt;/li&gt;&lt;li&gt;lucreate to a ZFS rpool&lt;br /&gt;&lt;/li&gt;&lt;li&gt;luupgrade to S10U10 and add additional patches&lt;br /&gt;&lt;/li&gt;&lt;li&gt;luactivate and reboot&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;reboot&gt;$(zoneadm attach -U) all zones in parallel&lt;/reboot&gt;&lt;/li&gt;&lt;/ul&gt;This solution is dependent on good I/O and perhaps even a separate disk/LUN for every zone root plus sufficient CPU resources on the system.&lt;br /&gt;&lt;br /&gt;There you go, Solaris 10 8/11 is ready for the SPARC T4!&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blogs.oracle.com/patch/entry/turbo_packaging_patches_now_available"&gt;Patches for "Turbo-Charging SVR4 Package Install" are now available&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-2268026185358647211?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/q6Yei44QY-Y" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/q6Yei44QY-Y/fast-upgrades-with-zones.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>3</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/10/fast-upgrades-with-zones.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-4123870441084314445</guid><pubDate>Tue, 18 Oct 2011 08:01:00 +0000</pubDate><atom:updated>2011-10-18T01:22:50.704-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ZFS</category><category domain="http://www.blogger.com/atom/ns#">Solaris</category><title>Data corruption</title><description>Today I had an interesting experience on how bad things are on platforms that lacks ZFS. For an upgrade I was dumb enough to store a ISO image on a non-ZFS filesystem for a while. Later when performing upgrade tests I begun to get all sorts of strange errors from live upgrade.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The image had been corrupted on the disks or somewhere between the plates and the memory, before I verified it with md5 it was not found by any layer of the storage system.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I would normally never store anything important on a filesystem which is unable to protect data, and this time I was lucky since I found the corruption after a day instead of after a few months.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;If feels good to know that even my data at home is protected by ZFS.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-4123870441084314445?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/7vNjJnwhh98" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/7vNjJnwhh98/data-corruption.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>2</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/10/data-corruption.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-5700811967737537601</guid><pubDate>Wed, 12 Oct 2011 15:58:00 +0000</pubDate><atom:updated>2011-10-13T01:19:21.370-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SPARC T4</category><category domain="http://www.blogger.com/atom/ns#">SPARC</category><category domain="http://www.blogger.com/atom/ns#">SPARC T5</category><category domain="http://www.blogger.com/atom/ns#">Oracle World</category><title>SPARC presentations from OOW</title><description>&lt;div&gt;The presentations from OOW are now online, two are very interesting from a SPARC perspective. One of them is a somewhat deeper technical review of the new SPARC T4. The second states that the next generation M-systems are currently being tested together with the 28nm 16-core T5 that testing should start this October and they have marked that processor as being delivered "early".&lt;br /&gt;&lt;br /&gt;Since there should be few differences between a T4 and T5 besides the 28nm shrink, double the cores and possibly a frequency bump it seems like it could be possible squeeze the time to market for that design. (With few differences I mean that the core itself is ready)&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;a href="https://oracleus.wingateweb.com/published/oracleus2011/sessions/15360/15360_Cho133116.pdf"&gt;Next Generation SPARC Processor, An In-Depth Technical Review&lt;/a&gt;&lt;br /&gt;&lt;a href="https://oracleus.wingateweb.com/published/oracleus2011/sessions/15326/S15326_2650100.pdf"&gt;SPARC Strategy&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-5700811967737537601?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/F6xMFUBt0bU" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/F6xMFUBt0bU/sparc-presentations-from-oow.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/10/sparc-presentations-from-oow.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-8127152744997588579</guid><pubDate>Thu, 06 Oct 2011 19:22:00 +0000</pubDate><atom:updated>2011-10-06T12:57:01.814-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SPARC T4</category><category domain="http://www.blogger.com/atom/ns#">SPARC</category><category domain="http://www.blogger.com/atom/ns#">Oracle</category><category domain="http://www.blogger.com/atom/ns#">Solaris</category><title>A new dawn for SPARC</title><description>I think latest news and release surrounding SPARC changes the economy quite a bit. You will now get Virtualization with LDOM and Zones, Solaris and management with OpCenter included in your support contract. &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;This comes as the same time as the SPARC T4 is released with is suitable for a wide range of workloads contrary to the previous generations on T-series. The new T4 systems are also much cheeper compared to M-series with the same amount of compute power.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The included encryption also seems to be the fastest currently available in a common processor, so you can get the benefit of encrypting your filesystem/database/network with a very small performance penalty.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Compared to a few month ago the list of good news is quite impressive:&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;SPARC T4 with 5x the single thread performance of SPARC T3&lt;/li&gt;&lt;li&gt;2-3x times faster encryption compared to T3 (which already was fast)&lt;/li&gt;&lt;li&gt;Live migration of LDOMs&lt;/li&gt;&lt;li&gt;OpCenter included in support contact&lt;/li&gt;&lt;li&gt;Live migration between T2,T3 and T4 in the near future&lt;/li&gt;&lt;li&gt;T4 supports 256GB memory per socket (1TB for the 5U T4-4)&lt;/li&gt;&lt;li&gt;A engineered system is available, the SPARC SuperCluster&lt;/li&gt;&lt;li&gt;Solaris 11 will be released shortly&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div&gt;Compared to other virtualization technologies Solaris Zones has no overhead and VM for SPARC (LDOM) have no overhead for CPU or memory. Some presentations at OOW claimed that zones had 4x less latency than KVM and 15x lower overhead compared to VMWare.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The next generation of T-processor is also being developed and should arrive next year. They will double the number of cores to 16 per CPU. A possible T5-4 would have 64 cores and 512 threads in one 5U enclosure.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I know there is a lot of talk about supporting the whole stack, but you will have one single vendor to blame for problems with the server, virtualization and management. Perhaps more importantly it will not cost more than the hardware itself and the support contract.&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-8127152744997588579?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/_wmYKXrqU-8" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/_wmYKXrqU-8/new-dawn-for-sparc.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/10/new-dawn-for-sparc.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-337240378119794820</guid><pubDate>Thu, 06 Oct 2011 18:47:00 +0000</pubDate><atom:updated>2011-10-06T12:21:50.817-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SPARC</category><category domain="http://www.blogger.com/atom/ns#">Oracle World</category><category domain="http://www.blogger.com/atom/ns#">Solaris</category><title>More news from OOW 2011</title><description>Another quick update of things I've found out so far, I will write more when I find some spare time:&lt;div&gt;&lt;ul&gt;&lt;li&gt;There will be a Solaris 11 release event the 9th of November&lt;/li&gt;&lt;li&gt;The final Solaris 11 release should be based on build snv_175&lt;/li&gt;&lt;li&gt;The next version of OpCenter (12C) will be able to manage existing zones (brown field)&lt;/li&gt;&lt;li&gt;The next update of Solaris 10 (in 2012) will be the last Solaris 10 update&lt;/li&gt;&lt;li&gt;Solaris developers claimed that part of the reason for not supporting older sun4u machines was due to the way cache was handled which was not optimal.&lt;/li&gt;&lt;li&gt;While Solaris 10 supports the SPARC T4 you will get optimal performance using Solaris 11 since some changes could not be backported.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://oracle.com/goto/solaris11event"&gt;Solaris 11 Launch Event Webcast&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-337240378119794820?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/4Cpx829H3DY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/4Cpx829H3DY/more-news-from-oow-2011.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/10/more-news-from-oow-2011.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-4883673056742684586</guid><pubDate>Wed, 05 Oct 2011 16:49:00 +0000</pubDate><atom:updated>2011-10-05T09:54:12.957-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SPARC T4</category><category domain="http://www.blogger.com/atom/ns#">Oracle</category><category domain="http://www.blogger.com/atom/ns#">Oracle World</category><category domain="http://www.blogger.com/atom/ns#">Solaris 11</category><title>First days of OOW</title><description>A quick summary of he most interesting news from the first days of Oracle Open World that are related to Solaris/SPARC.&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Apple-style-span" style="-webkit-tap-highlight-color: rgba(26, 26, 26, 0.296875); -webkit-composition-fill-color: rgba(175, 192, 227, 0.230469); -webkit-composition-frame-color: rgba(77, 128, 180, 0.230469); "&gt;Solaris 11 is slightly ahead of schedule, it was supposed to be released by the end of the year.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Apple-style-span" style="-webkit-tap-highlight-color: rgba(26, 26, 26, 0.296875); -webkit-composition-fill-color: rgba(175, 192, 227, 0.230469); -webkit-composition-frame-color: rgba(77, 128, 180, 0.230469); "&gt;OpCenter is now included in your support contract for no additional cost, including virtualization!&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Apple-style-span" style="-webkit-tap-highlight-color: rgba(26, 26, 26, 0.296875); -webkit-composition-fill-color: rgba(175, 192, 227, 0.230469); -webkit-composition-frame-color: rgba(77, 128, 180, 0.230469); "&gt;A new Oracle VM for SPARC will be release (3.0) that supports live migration between processors with diffent clock frequency and even between T2 and T3.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Apple-style-span" style="-webkit-tap-highlight-color: rgba(26, 26, 26, 0.296875); -webkit-composition-fill-color: rgba(175, 192, 227, 0.230469); -webkit-composition-frame-color: rgba(77, 128, 180, 0.230469); "&gt;Future releases of Oracle VM for SPARC will try to remove limitations, for example enable live migration while using dedicated PCI hardware in guest domans.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Apple-style-span" style="-webkit-tap-highlight-color: rgba(26, 26, 26, 0.296875); -webkit-composition-fill-color: rgba(175, 192, 227, 0.230469); -webkit-composition-frame-color: rgba(77, 128, 180, 0.230469); "&gt;Some work on Solaris 12 have already been started&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Apple-style-span" style="-webkit-tap-highlight-color: rgba(26, 26, 26, 0.296875); -webkit-composition-fill-color: rgba(175, 192, 227, 0.230469); -webkit-composition-frame-color: rgba(77, 128, 180, 0.230469); "&gt;Solaris 11 will have more focus on virtualization/cloud&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Apple-style-span" style="-webkit-tap-highlight-color: rgba(26, 26, 26, 0.296875); -webkit-composition-fill-color: rgba(175, 192, 227, 0.230469); -webkit-composition-frame-color: rgba(77, 128, 180, 0.230469); "&gt;SPARC super cluster will support exadata instances (one per T4-4)&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Now i'm of to a new session, a deep technical review of the SPARC T4.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-4883673056742684586?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/aV2p3eCmPXQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/aV2p3eCmPXQ/first-days-of-oow.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/10/first-days-of-oow.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-3871031869108850037</guid><pubDate>Fri, 30 Sep 2011 19:03:00 +0000</pubDate><atom:updated>2011-09-30T12:15:51.298-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Orace</category><category domain="http://www.blogger.com/atom/ns#">SPARC</category><category domain="http://www.blogger.com/atom/ns#">Oracle World</category><category domain="http://www.blogger.com/atom/ns#">Solaris</category><category domain="http://www.blogger.com/atom/ns#">Illumos</category><title>OpenWorld and Solaris reunion</title><description>I'm going to San Francisco and Oracle OpenWorld now. In the coming week will dig into the details of Solaris 11 and the new SPARC T4 processor among other things. Mark Hurd will probably deliver an updated roadmap for Solaris and SPARC, perhaps we will even get some kind of confirmation on the release date of Solaris 11.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Joyent will also host a Solaris family reunion event on tuesday:&lt;/div&gt;&lt;br /&gt;&lt;I&gt;"There’s been a lot of news in the past few months about the progeny of Solaris: Illumos, SmartOS, OpenIndiana, and the forthcoming Oracle Solaris 11. Since many of our old friends/colleagues will be in town for Oracle Open World, we of the Illumos / SmartOS / OI community thought it would be a nice opportunity to get together, hoist a few beers, talk about old times, and maybe share our visions of the future."&lt;/I&gt;&lt;br /&gt;&lt;br /&gt;&lt;A HREF="http://smartos.org/2011/09/24/solaris-family-reunion/"&gt;Solaris family reunion&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://www.oracle.com/openworld/index.html"&gt;Oracle OpenWorld&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-3871031869108850037?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/er5bGcu-AFE" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/er5bGcu-AFE/openworld-and-solaris-reunion.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>1</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/09/openworld-and-solaris-reunion.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-4580264503434577807</guid><pubDate>Tue, 27 Sep 2011 23:18:00 +0000</pubDate><atom:updated>2011-09-27T17:10:09.324-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SPARC T4</category><category domain="http://www.blogger.com/atom/ns#">SPARC</category><category domain="http://www.blogger.com/atom/ns#">Solaris 11</category><category domain="http://www.blogger.com/atom/ns#">Solaris 10</category><title>The SPARC T4</title><description>&lt;div&gt;Besides the new core and cache layout the SPARC T4 is very similar to the SPARC T3 in I/O and memory design. It also supports 16 DDR3 DIMMs with two controllers, built on 40nm technology, uses 6 * 9.6GB/s coherency links, Dual PCIe Gen2 interface  and dual on-chip 10GbE interfaces.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The new S3 core is whats sets the SPARC T4 apart from previous T-processors. It has several features that greatly improves the performance compared to the T2/T3:&lt;/div&gt;&lt;ul&gt;&lt;li&gt;Out-oforder execution&lt;/li&gt;&lt;li&gt;Dual instruction issue&lt;/li&gt;&lt;li&gt;Data/instruction prefetch&lt;/li&gt;&lt;li&gt;Deeper pipeline&lt;/li&gt;&lt;li&gt;MMU Page size up to 2GB&lt;/li&gt;&lt;li&gt;Level 3 cache&lt;/li&gt;&lt;/ul&gt;"All of these characteristics in the SPARC T4 have yielded improvements in single-thread performance by 5X while retaining networking and throughput performance equal to that of previous multicore processors from Sun/Oracle."&lt;div&gt;&lt;br /&gt;The crypto graphic units (SPU, previously MAU) have also been moved into the pipeline so there is no longer any need to managed crypto units be individually. They provide high performance crypto acceleration for the supported algorithms:&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;"The SPU is designed to achieve wire-speed encryption and decryption on the processor’s 10 GbE ports. "&lt;/div&gt;&lt;div&gt;"These accelerators support 16 industry standard security ciphers and enable high speed encryption at rates 3 to 5 times that of competing processors."&lt;br /&gt;&lt;br /&gt;The T4 has the ability to execute critical threads exclusively on a core. This is done by issuing a system call but it can also be handled from the command line by raising the thread priority to above 60. This means that existing applications can take advantage of this feature without rewrite. Applications that depend on a single high performance thread this thread can be declared as critical while other threads can take advantage of the highly threaded design of the T4 allowing great throughput while still providing the needed single-thread performance.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;(I think what they should have been more specific in the first sentence by writing Oracle Solaris 10 and 11)&lt;br /&gt;"Oracle 10 now and 11 (initial release) will have the ability to permit either a user or programmer to allow the Oracle Solaris Scheduler to recognize a 'critical thread' by means of raising its priority to 60 or above through the use of either the Command Line Interface or system calls to a function. If this is done, that thread will run by itself on a single core, garnering all resources of that core for itself. The one condition that would prevent this single thread from executing on a single core is when there are more runnable threads than available CPUs. This limit was put into place to prevent resource starvation to other threads. There will be further enhancements to Critical Thread Optimization done for Oracle Solaris 11 initial release)."&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;For many organization the high single thread performance of the T4 will enable the T-series to be used as a general platform for SPARC virtualization. Previously you could mix zones or dynamic domains on the M-series with LDOM on the T-series but there was not good solution for general workloads due to the weaker performance of the T2/T3 cores. Solaris zones are still useful tool for virtualization that has it advantages but the built-in virtualization in the T-series can provide better separation and live migration between hosts (which in turn can contain zones).&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Besides the new processor the SPARC T4 systems comes pretty much the same chassis as the T3, they do however support the double amount of memory using 16GB DIMMs.&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;a href="http://www.oracle.com/technetwork/server-storage/sun-sparc-enterprise/documentation/o11-090-sparc-t4-arch-496245.pdf"&gt;Oracle's SPARC T4-1, SPARC T4-2, SPARC T4-4, and SPARC T4-1B Server Architecture&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-4580264503434577807?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/-qvUZLn48XY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/-qvUZLn48XY/sparc-t4.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/09/sparc-t4.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-2953875546349504385</guid><pubDate>Tue, 27 Sep 2011 14:53:00 +0000</pubDate><atom:updated>2011-09-27T08:12:03.251-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SPARC T4</category><category domain="http://www.blogger.com/atom/ns#">Orace</category><category domain="http://www.blogger.com/atom/ns#">SPARC</category><category domain="http://www.blogger.com/atom/ns#">Solaris 11</category><category domain="http://www.blogger.com/atom/ns#">Solaris 10</category><title>Oracle announces SPARC T4 servers</title><description>Oracle have now announced the new line of servers based on the T4 processor. They come in three configuration ranging from 1 CPU/8cores with up to 256GB memory to 4 processors and up to 1TB of memory. There is also a blade version which has one processor and up to 256GB memory. The T4-1 and T4-2 processors are running at 2.85GHz and processors in the T4-4 are running at 3.0GHz.&lt;br /&gt;&lt;br /&gt;Oracle claims a 5 times increase in single thread performance compared to previous T-processors while keeping the same high thread count and cryptographic acceleration. All the new systems support Oracle VM for SPARC, previously known as Logical domains (LDOMs). LDOMs will finally be an option for general workloads, and the supported version 2.1 also support live migration. &lt;br /&gt;&lt;br /&gt;Supported Solaris releases are Solaris 10 8/11, Solaris 11 or Solaris 10 9/10,10/09 with 10 8/11 Patch Bundle.&lt;br /&gt;&lt;br /&gt;&lt;A HREF="http://www.oracle.com/us/products/servers-storage/servers/sparc-enterprise/t-series/overview/index.html"&gt;SPARC T-Series&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://www.oracle.com/technetwork/server-storage/sun-sparc-enterprise/documentation/o11-090-sparc-t4-arch-496245.pdf?ssSourceSiteId=ocomen"&gt;Oracle's SPARC T4-1, SPARC T4-2, SPARC T4-4, and SPARC T4-1B Server Architecture&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://www.oracle.com/us/corporate/features/sparc-t4-announcement-494846.html"&gt;SPARC T4 announcement&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-2953875546349504385?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/WKGcR0dYeEM" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/WKGcR0dYeEM/oracle-announces-sparc-t4-servers.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/09/oracle-announces-sparc-t4-servers.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-6484841095825752339</guid><pubDate>Wed, 21 Sep 2011 15:11:00 +0000</pubDate><atom:updated>2011-09-21T08:20:16.672-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SPARC T4</category><category domain="http://www.blogger.com/atom/ns#">SPARC</category><category domain="http://www.blogger.com/atom/ns#">s10u10</category><category domain="http://www.blogger.com/atom/ns#">Solaris 10</category><title>T4 focus in new S10 8/11 KUP</title><description>As expected Oracle is focusing on the yet to be released SPARC T4 processor in maintenance patches for Solaris 10 8/11. The recently released kernel patch has several changes specific for the new platform. All we need now is the hardware itself.&lt;br /&gt;&lt;br /&gt;From patch 147440-02:&lt;br /&gt;&lt;PRE&gt;6994535: watchdog timeouts seen on small subset of T3/T4 systems&lt;br /&gt;7014100: Solaris cpu-mondo queue filling up on T3/T4 systems&lt;br /&gt;7040407: T4 should not advertise cspare hwcap&lt;br /&gt;7045829: libc_psr memmove needs to avoid use of block init store for T4&lt;br /&gt;7045836: memcpy on T4 could run substantially faster&lt;br /&gt;7047568: perf counter changes for T4 1.2&lt;br /&gt;7079983: T4 memcpy triggers compiler CR 7076485&lt;/PRE&gt;&lt;br /&gt;&lt;A HREF="http://wesunsolve.net/patch/id/147440-02"&gt;Patch details 147440-02 - SunOS 5.10: Solaris kernel patch&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-6484841095825752339?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/PzXheqjfs-s" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/PzXheqjfs-s/t4-focus-in-new-s10-811-kup.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>1</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/09/t4-focus-in-new-s10-811-kup.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-1222096154331271682</guid><pubDate>Fri, 16 Sep 2011 12:30:00 +0000</pubDate><atom:updated>2011-09-18T10:20:56.293-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ZFS</category><category domain="http://www.blogger.com/atom/ns#">SPARC</category><category domain="http://www.blogger.com/atom/ns#">x86</category><category domain="http://www.blogger.com/atom/ns#">s10u10</category><category domain="http://www.blogger.com/atom/ns#">Solaris 10</category><title>Solaris 10 8/11 released</title><description>Solaris 10 8/11 (update 10) has now been released and is available for download.&lt;br /&gt;&lt;br /&gt;A short summary of some of the changes since last update besides support for the SPARC T4:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Support for Two-Terabyte Memory Systems&lt;/li&gt;You can install Oracle Solaris on systems with more than 2 TB of memory.&lt;li&gt;ZFS Enhancements such as ZFS diff, ZIL synchronicity, RADIZ/mirror hybrid allocator and read-only import.&lt;/li&gt;&lt;li&gt;diskinfo Utility&lt;/li&gt;The diskinfo command-line utility enables system administrators to see the relationship between logical disk names (cXtYdZ) and bays in a JBOD or blade chassis.&lt;li&gt;Shared Memory Enhancements&lt;/li&gt;Changes in creating, locking, unlocking, and destroying Intimate Shared Memory (ISM) and Dynamic Intimate Shared Memory (DISM) have resulted in significant performance improvement in the startup and shutdown of the Oracle database.&lt;li&gt;SPARC: Support for Fast Reboot&lt;/li&gt;The integration of the Fast Reboot feature of Oracle Solaris on the SPARC platform enables the -f option to be used with the reboot command to accelerate the boot process by skipping certain POST tests.&lt;li&gt;libmtmalloc Improvements&lt;/li&gt;libmtmalloc has undergone a performance improvement that specially targets 64-bit applications with a large number of threads. &lt;li&gt;LDAP Name Service &lt;/li&gt;This section summarizes enhancements that have been made to the LDAP name service in this release. LDAP name service stand-alone support – This enhancement enables the LDAP name service tools ldapclient, ldapaddent, and ldaplist to populate and test an LDAP directory without having to configure the name service switch to use LDAP.&lt;li&gt;Samba Upgrade to Version 3.5.8&lt;br /&gt;Samba, which provides file and print services to SMB/CIFS (Server Message Block/Common Internet File System) clients, has been upgraded to version 3.5.8.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Update: This release could provide better ZFS performance besides the new features, around 7-20% for reads and 10-15% for writes. The tests where done with a few simple dd(1) instances but interesting anyway, read more &lt;A HREF="http://blogs.oracle.com/solaris/entry/oracle_solaris_10_8_11"&gt;here&lt;/A&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://download.oracle.com/docs/cd/E23823_01/html/821-2730/gijtg.html#scrolltoc"&gt;What's New in the Oracle Solaris 10 8/11 Release&lt;/a&gt;&lt;br /&gt;&lt;A HREF="http://www.oracle.com/technetwork/server-storage/solaris/downloads/index.html?ssSourceSiteId=ocomen"&gt;Oracle Solaris Downloads&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://sparcv9.blogspot.com/2011/01/solaris-10-update-10-zfs-refresh.html"&gt;Solaris 10 update 10 ZFS refresh&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://sparcv9.blogspot.com/2010/11/solaris-10-update-10-update.html"&gt;Solaris 10 update 10 update&lt;/A&gt;&lt;br /&gt;&lt;A HREF="http://sparcv9.blogspot.com/2010/08/solaris-10-update-10.html"&gt;Solaris 10 update 10&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-1222096154331271682?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/02dBHeCtjWc" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/02dBHeCtjWc/solaris-10-811-released.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>1</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/09/solaris-10-811-released.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-1866720604598445272</guid><pubDate>Thu, 15 Sep 2011 10:39:00 +0000</pubDate><atom:updated>2011-09-16T07:35:02.901-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Orace</category><category domain="http://www.blogger.com/atom/ns#">SPARC</category><category domain="http://www.blogger.com/atom/ns#">x86</category><category domain="http://www.blogger.com/atom/ns#">Solaris 11</category><title>Solaris 11 EA</title><description>A much updated pre-release of Solaris 11 is now available on OTN, it is supposed to contain all the final functionality of Solaris 11. Text installer for SPARC/X64 is available. live-CD for X64 as well as repository images.&lt;br /&gt;&lt;br /&gt;This release should work all the same (64-bit) X86 systems as Solaris 11 Express, but on for SPARC you must have a T or M-series class machine, support for older UltraSPARC based system has been removed.&lt;br /&gt;&lt;br /&gt;Thanks to Craig S. Bell for pointing this out in previous comments, I did not expect any new release before Oracle World.&lt;br /&gt;&lt;br /&gt;Update: The build of this release is  snv_171, the Solaris 11 Express release was based on snv_151a.&lt;br /&gt;&lt;br /&gt;&lt;A HREF="http://www.oracle.com/technetwork/server-storage/solaris11/downloads/index-454418.html"&gt;Solaris 11 Early Adopter Program&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-1866720604598445272?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/BCIMCXeHKfY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/BCIMCXeHKfY/solaris-11-ea.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>1</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/09/solaris-11-ea.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-8911715510551563534</guid><pubDate>Wed, 14 Sep 2011 13:16:00 +0000</pubDate><atom:updated>2011-09-14T06:47:19.533-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ZFS</category><category domain="http://www.blogger.com/atom/ns#">Illumos</category><category domain="http://www.blogger.com/atom/ns#">OpenIndiana</category><title>OpenIndiana 151a released</title><description>The free successor to the OpenSolaris distribution have released OpenIndiana 151a, exactly one year after their first release. The new release is based on illumos and has the new &lt;A HREF="http://dtrace.org/blogs/bmc/2011/08/15/kvm-on-illumos/"&gt;KVM&lt;/A&gt;, several ZFS enhancements and support for new hardware.&lt;br /&gt;&lt;br /&gt;It's sill considered a development release, I have however found it quite stable for my private storage node which has been running build of 151a for well over a month. A stable released based on 151a is expected later this year.&lt;br /&gt;&lt;br /&gt;&lt;A HREF="http://www.openindiana.org"&gt;openindiana.org&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-8911715510551563534?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/8eB58LmsRJs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/8eB58LmsRJs/openindiana-151a-released.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/09/openindiana-151a-released.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-5199014468532583500</guid><pubDate>Mon, 12 Sep 2011 14:24:00 +0000</pubDate><atom:updated>2011-09-16T09:40:11.528-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SPARC T4</category><category domain="http://www.blogger.com/atom/ns#">s10u10</category><category domain="http://www.blogger.com/atom/ns#">Solaris 10</category><title>Solaris 10 8/11 KUP</title><description>The first sustaining kernel patch for Solaris 10 8/11 (update 10) is now available: &lt;A HREF="147440-01"&gt;147440-01&lt;/A&gt;. But Solaris 8/11 is yet to be released, they could be waiting until Oracle world for the release or they are having trouble with the release. The patch does not contain many changes but another interesting patch that requires the update 10 kernel patch was also just released:&lt;br /&gt;&lt;br /&gt;&lt;A HREF="http://wesunsolve.net/patch/id/147159-01"&gt;147159-01&lt;/A&gt;: T4 crypto performance patch&lt;br /&gt;&lt;I&gt;&lt;PRE&gt;7030953: AES CBC mode code path spends 50% time in non-encryption operations&lt;br /&gt;7032670: AES-128-ECB 16KB encryption on T4 can be significantly better&lt;br /&gt;7032698: AES-128-CFB128 16KB encryption (via ucrypto API) on T4 can be significantly better&lt;br /&gt;7033814: assertion failure in OpenSSL speed RSA-4096 test via pkcs11 engine on T4&lt;br /&gt;7036405: heavy mutex contention in libumem results in negative scaling of multi-threaded RSA test&lt;br /&gt;7045416: PROFILE TRIGGER VALUE DROP-DOWN DOESN'T POPULATE FOR FIELDS BASED ON TABLES&lt;br /&gt;7048794: 64-bit libsoftcrypto not enabled for T4&lt;br /&gt;7069494: AGILE00205948:CAN'T DELETE STEP IN WORKFLOW EASILY&lt;/I&gt;&lt;/PRE&gt;This is is the second proof that Solaris 10 will indeed support the new SPARC T4 processor.&lt;br /&gt;&lt;br /&gt;Update: The final release of Solaris 10 8/11 have the the first sustaining kernel patch already installed (147440-01/147441-01).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-5199014468532583500?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/OQbro_95RxQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/OQbro_95RxQ/solaris-10-811-kup.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>3</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/09/solaris-10-811-kup.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-3895082805700017196</guid><pubDate>Mon, 29 Aug 2011 18:42:00 +0000</pubDate><atom:updated>2011-08-29T11:55:28.023-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SPARC T4</category><category domain="http://www.blogger.com/atom/ns#">Orace</category><category domain="http://www.blogger.com/atom/ns#">Oracle World</category><title>IDG SPARC T4 article</title><description>A interesting article about the upcoming SPARC T4 is available from IDG but only with an subscription. The article is also available in text form on a Danish Oracle blog&lt;/A&gt;.
&lt;br /&gt;
&lt;br /&gt;Excerpts from the article:
&lt;br /&gt;&lt;I&gt;"The new T4 processor, running at 3GHz or more, has features that will also allow T4-based systems to take on some workloads that today are going to Intel Xeon processors, which today perform faster on single-thread workloads than do the T3- series of SPARC processors."
&lt;br /&gt;
&lt;br /&gt;"At the Hot Chips 2011 conference, an IEEE technical conference held at Stanford University from August 17-19, 2011, Oracle systems engineers described the top features of the new T4 processors, including a 16-stage integer instruction pipeline and enhanced cryptographic performance. Among the business benefits associated with the new design will be: double the amount of per-thread throughput performance, compared to T3 – and a range of 2 to 7 times more single-thread performance for business workloads than T3 processors. Given the binary-compatibility of T3 and T4, this means that the same Oracle Solaris applications that have been running on T3 will see considerable speedup on T4, without recompilation."&lt;/I&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;A HREF="http://blogs.oracle.com/hwpartner/entry/nyt_om_næste_generations_sparc"&gt;Nyt om næste generation SPARC T-series
&lt;br /&gt;&lt;/A&gt;(Only a short introduction in Danish, article in English)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-3895082805700017196?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/pybJGFcyPXw" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/pybJGFcyPXw/idg-sparc-t4-article.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>0</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/08/idg-sparc-t4-article.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1270287474555047904.post-8609327631956012150</guid><pubDate>Wed, 24 Aug 2011 16:47:00 +0000</pubDate><atom:updated>2011-08-24T09:57:37.068-07:00</atom:updated><title>Oracle OpenWorld 2011</title><description>I will try to attend Oracle OpenWorld 2011, it will my first time and I think this year will have a lot of information regarding the SPARC T4 and Solaris 11. It has been almost a year since we saw the last bits of the Solaris 11 development so I expect there have been substantial changes. Maybe the Solaris 10 Update 10 release will be kept unannounced until the conference, it's already been several weeks since the KUP was released on MOS.
&lt;br /&gt;
&lt;br /&gt;Expect regular updates if i manage to attend the event.
&lt;br /&gt;
&lt;br /&gt;&lt;A HREF="http://sparcv9.blogspot.com/2011/04/solaris-10-updates-in-2012.html"&gt;Solaris 10 update in 2012&lt;/A&gt;
&lt;br /&gt;&lt;A HREF="http://sparcv9.blogspot.com/2011/06/solaris-release-dates-reminder.html"&gt;Solaris release dates reminder&lt;/A&gt;
&lt;br /&gt;&lt;A HREF="http://sparcv9.blogspot.com/2011/07/sparc-t4-information-and-beta-program.html"&gt;SPARC T4 information and beta program&lt;/A&gt;
&lt;br /&gt;&lt;A HREF="http://www.oracle.com/openworld/index.html"&gt;Oracle OpenWorld 2011&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270287474555047904-8609327631956012150?l=sparcv9.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/UnixSystem/~4/M7z2YnaNxGA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/UnixSystem/~3/M7z2YnaNxGA/oracle-openworld-2011.html</link><author>noreply@blogger.com (Henkis)</author><thr:total>1</thr:total><feedburner:origLink>http://sparcv9.blogspot.com/2011/08/oracle-openworld-2011.html</feedburner:origLink></item></channel></rss>

