Damon Payne: Hand waving software architect

103db signal to noise ratio at < .03% total harmonic distortion
Solution Architect, software developer, geek
Damon Payne at Blogged
2009 Microsoft MVP - Client App Dev
2007 Microsoft MVP - Solution Architecture
 Monday, May 12, 2008

As I talk to other developers at Launch Events, user groups, and online, I am met with confusion when I talk about my concurrency experiments.  I get the feeling that this is looked at as some sort of Ivory Tower academic exercise, or even worse some ridiculous nonsense concocted to try to look intelligent.  Concurrency is important, and everyone should be thinking about it.

At the risk of sounding like a broken record, I’ll deliver my spiel again in a different way.

The silicon industry has presented us with terrible Bait ‘n Switch.  For more than 12 years (in my case anyway) I had the option to buy more megahertz and gigahertz at least once per year, oftentimes more.  Office is slow?  No worries, it’ll perform great as computers are upgraded.  Bioshock brings your system to its knees?  Just get a new processor and a new GPU and you’ll be rockin’ 60fps with Big Daddy.  Due to some lame excuse commonly called “The Laws of Physics” we’re not getting faster and faster CPUs anymore.  Moore’s law is not dead yet: we’re getting more transistors all right.  The problem is that these transistors are on two or more cores instead of one core, and a quad core 2.5ghz processor is not remotely the same animal as a 10ghz processor.  I do half expect  the silicon industry to pull a Cheap Stereo marketing trick any day now.  Go to best buy and look through the home theater in a box section.  You’ll see claims of “525 watt system!!” and so forth.  These are not 525 watts per channel systems (that would be a lot) but 525 watts total, for 7 channels, which is not the same level of performance.  When I next buy a CPU, I expect some branding telling me “This is a 20 GIGAHERTZ POWREHOUSE”.   Lacking a 10 GHz processor (longing sigh), however, the multi-core CPU is the consolation prize offered to us by the silicon industry.

Despite being stuck in the 2-3ghz limbo, software is still increasing in complexity.  People want responsive applications.  It is my opinion that we are currently preparing to exit a time of “Free Concurrency Improvement”.   I wish I had a more compelling name for this sweet plateau, so let me explain.  Modern operating systems happen to be very good  at task scheduling.  If I run Visual Studio 2008, SQL Server 2005 Studio, Outlook, MSN messanger, and Zune player at the same time, my machine may not be very responsive.  Moving from a single-core 2.4ghz processor to dual core 2.4ghz processor will make my machine more responsive.  Running JUST the Zune player, for example, is probably not any faster than it used to be.  Our Free Improvement here is that the Unit of Concurrency is the Windows  Process, and Windows is good at putting Process A on one core and Process B on the other core where they can both get more horsepower.

We are approaching a time, however, where 2.4ghz will not run a “mostly single threaded” application in an acceptable fashion even if the application gets a 2.4ghz core all to itself.  We need to stop thinking about concurrency as something that will keep Winamp from skipping when I open Visual Studio and start thinking about the next level of concurrency : running my ONE application as fast as possible by doing chunks of work concurrently on many cores.   This requires developers to re-think application design.  I did no threading in my computer science degree. The next generation of Computer Science graduates needs to be comfortable with concurrency before leaving college. 

10 gigahertz processors sure would be nice though.  10 gigahertz Quad Core.  Core 10 Quad, there, I branded it for you.  Intel, AMD, anyone listening?



Monday, May 12, 2008 7:56:27 AM (Central Standard Time, UTC-06:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Thursday, May 08, 2008

 

With a basic understanding of what XUnit is doing, we need to determine where we’re going to try to split things up across multiple cores.  Take a look at the sequence diagram fom the last article (here); we have a choice to make.  It’s better to make outer loops Parallel vs. inner loops.  The design decision this helps us make  is that the unit of concurrency is the Class. This means if I make 100 Tests inside a single class, it will run sequentially just as though we had no fancy concurrency code.  In the rest of this article we’ll look at the modifications needed to use Payneallel.ForEach with the unit tests.

XUnit GUI

We start our modifications in the XUnit GUI, which is refreshingly straightforward.  The first thing to do is make it easy to choose concurrent execution.  The XUnit GUI now looks like this, following the sequential execution of the control group:

The “Run concurrently” checkbox is my addition.  When you click the Run button:

        void OnClick_Run(object sender, EventArgs e)

        {

            _totalCount = 0;

            _testCount = GetTestCount();

            ResetUI(_testCount);                                

            buttonGo.Enabled = false;

            if (_concurrentChk.Checked)

            {

                ThreadStart ts = new ThreadStart(RunAsync);

                Thread t = new Thread(ts);

                t.Name = "xUnitAsyncThread";

                t.Start();

                textResults.AppendText("Running Async...\r\n");

            }

            else

            {

                wrapper.RunAssembly(TestCallback);

            }

Our xUnit ExecutorWrapper is “wrapper”.    In order to keep from screwing around with the GUI thread, we run XUnit on a new thread, which will in turn create many other threads using Payneallel.  By default, Payneallel will block the calling thread until all operations are done, however we cannot both block the GUI thread AND allow it to update itself as test results are available.  The RunAsync method is simple:

        void RunAsync()

        {

            wrapper.BeginRunAssembly(TestCallback);

        }

 

ExecutorWrapper

My next modification is to the ExecutorWrapper class.  I tried to make my changes to XUnit additive only, adding functionality by adding methods rather than modifying things that already work for sequential execution.    

        public void BeginRunAssembly(Action<XmlNode> callback)

        {

            XmlNodeCallbackWrapper wrapper = new XmlNodeCallbackWrapper(callback);           

            CreateObject("XUnit.Sdk.Executor+RunAssemblyParallel", executor, wrapper);

        }

I see no reason not to keep running the test in a separate AppDomain.  We have added another inner class to Executor, the RunAssemblyParallel class. 

Executor

Through experimentation I found that this would be the appropriate place to introduce parallel execution, at the Class level as I said previously.  This class is almost a copy of the RunAssembly class included with XUnit:

        public class RunAssemblyParallel : MarshalByRefObject

        {

            /// <summary/>

            public RunAssemblyParallel(Executor executor, object _handler)

            {

                DoParallel(executor, _handler);

            }

 

            protected void DoParallel(Executor executor, object _handler)

            {

                ICallbackEventHandler handler = _handler as ICallbackEventHandler;

                AssemblyResult results = new AssemblyResult(new Uri(executor.assembly.CodeBase).LocalPath);

 

                Action<Type> doOne = delegate(Type type)

                {

                    ITestClassCommand testClassCommand = TestClassCommandFactory.Make(type);

 

                    if (testClassCommand != null)

                    {

                        ClassResult classResult = TestClassCommandRunner.Execute(testClassCommand,

                                                                                 null,

                                                                                 result => OnTestResult(result, handler));

                        results.Add(classResult);

                    }

                };

 

                Type[] exportedTypes = executor.assembly.GetExportedTypes();

                int count = exportedTypes.Length;

 

                //Parallel Test execution

                Stopwatch sw = new Stopwatch();

                sw.Start();

                Payneallel.ForEach<Type>(exportedTypes, doOne, true);

                sw.Stop();

                Console.WriteLine("Time elapsed: " + sw.Elapsed);

                results.ExecutionTime = sw.Elapsed.TotalSeconds;

                OnTestResult(results, handler);

            }

        }

 }

Like the TPL, Payneallel likes an Action<T> to execute.  In the vanilla XUnit version of this code, there is no StopWatch and there is a regular foreach() block instead of Payneallel.ForEach.  The stopwatch is important because I can no longer trust XUnit to time the execution!  For a long time I ran and re-ran my tests and the Parallel code was always slower than the sequential version.  Then I had a “pwop” moment and found the following line of code:

                ExecutionTime += child.ExecutionTime;

Whoops!  We can’t just add the execution time of the children (from TimedCommand) when some of the commands are running at the same time. 

Results

With the Timing issue solved, I was successfully executing unit tests concurrently and saving a lot of time doing so.  Here is the same set of unit tests ran using my new Concurrent xUnit hack.

I’ll take 27 seconds over 51 seconds any day, and I have not done any optimization work yet, nor constructed a test case where the tests are nearly 4x faster on a four processor machine, but I expect to be able to get there.  As I mentioned before, the Class is the unit of concurrency with this experiment, so the amount of time saved will depend heavily on how the test cases are structured.  A more ideal method would be to first get a list of all of the individual methods marked with [Fact] and use the parallel semantics on that list instead. 

I have a side project that is woefully under unit tested, code that I inherited.  I write unit tests for the code I touch as I refactor it.  The unit tests will involve a lot of database access, calculations, and Presenter mocking.  I can’t disclose what this codebase is just yet, but I am in the process of testing TestDrivenàXUnitàNCover.  I depend heavily on NCover and I really can’t imagine manually trying to determine what I’ve got test coverage on anymore.  If this test is successful, I will eventually be able to report on how this concurrent unit testing works on 100,000 lines of code 99% covered by thousands of unit tests.   This should be a sufficient test case to prove this idea is sound.

As the years go by and we still don’t have 5ghz machines, designing frameworks with concurrency in mind will become increasingly important.



Thursday, May 08, 2008 7:13:40 PM (Central Standard Time, UTC-06:00)  #    Disclaimer  |  Comments [2]  |  Trackback

Concurrent Unit Testing with xUnit – The answers come in dreams

Coil: the answers come in dreams

Well, not precisely in dreams, but in blog posts.  No sooner had I written (http://www.damonpayne.com/2008/04/17/ConcurrentUnitTesting.aspx) about how the over-design of NUnit was going to make it hard for me to implement concurrent unit testing than I see Scott Hanselman feature xUnit on his Daily Source Code (http://www.hanselman.com/blog/TheWeeklySourceCode24ExtensibilityEditionPlugInsProvidersAttributesAddInsAndModulesInNET.aspx ).  The words that caught my eye: the source is extremely tidy.  Scott probably meant that the organization of the solution was tidy but I grabbed it from CodePlex and started investigating.  The design is tidy too, could this be a better platform on which to complete my research?

I am generally liking xUnit.net so far, and I strongly expect I’ll be ditching NUnit in favor of this across the board assuming the integration with TestDriven and NCover work as I’d expect.  It’s nice to just say “using xUnit” instead of “using NUnit.Framework”, and I like that I don’t have to place a [TextFixture] attribute on the class.  But, these are small concerns saving a few keystrokes.  What we’re really concerned about is the original goal I wrote about:

On a sizable project, with a meaningful suite of unit tests, a developer practicing proper due diligence during the development lifecycle will spend a tremendous amount of time running Unit Tests.  This is an unfortunate disincentive for the developer to run said tests.

In general, the “Command” strucuture of a unit test foreshadows parallel-ability  Properly designed unit tests should be easy to run in parallel: a unit test should Stand Alone, meaning each test case does not depend on state set up elsewhere.  xUnit does two more things that help us out here.  The first is by removing the notions of “TestFixtureSetup/Teardown” they’ve made it much harder to shoot yourself in the foot at the Class level by relying on state, though for my example this is merely food for future thought as we’ll see later.  The second is that it would appear they use a Randomizer to make sure the [Fact] methods in a Class do not run in any dependable order. 

I set up a suite of 17 unit tests, implemented in 7 classes.  The tests do incredibly useful things like divide int.MaxValue by things and SpinWait().  Using xUnit is simple:

using XUnit;

 

namespace DamonPayne.xUnit.Tests

{

    public class FooTester : TestBase

    {

        [Fact]

        public void Fact1()

        {

            Console.WriteLine("FooTester::Fact1");

            System.Threading.Thread.SpinWait(int.MaxValue / 2);

            Assert.False(false);

        }

The last thing to do before jumping into code is to establish a baseline.   My 17 tests take 51.78 seconds to run in the xUnit GUI in all their spin-waiting glory.

Payneallel Revisited

While doing the research for this article, I found a few minor issues with my Payneallel.ForEach code I used with the Tree Concurrency articles (http://www.damonpayne.com/2008/04/03/ManagingConcurrencyWithTrees0.aspx ).  The first issue dealt with the code I used to wait for all concurrent iterations to be done before returning to the calling thread.  If the number of tasks was less than the number of processors on the machine, the “never touched” worker threads would never Finish().  The second dealt with an interesting thread-timing issue related to when a Worker declared itself “Busy”.  Concurrency is fun!  At any rate, here is the revised Payneallel code I used within xUnit:

using System;

using System.Collections.Generic;

using System.Threading;

 

namespace XUnit.Sdk

{

    /// <summary>

    /// Contains static methods and internal helper classes for executing concurrent operations

    /// </summary>

    public static class Payneallel

    {

        /// <summary>

        /// Concurrently perform the body action on each item in source

        /// </summary>

        /// <typeparam name="TSource"></typeparam>

        /// <param name="source"></param>

        /// <param name="body"></param>

        public static void ForEach<TSource>(IEnumerable<TSource> source, Action<TSource> body)

        {

            ForEach<TSource>(source, body, true);

        }

 

        /// <summary>

        ///

        /// </summary>

        /// <typeparam name="TSource"></typeparam>

        /// <param name="source"></param>

        /// <param name="body"></param>

        /// <param name="waitAll"></param>

        public static void ForEach<TSource>(IEnumerable<TSource> source, Action<TSource> body, bool waitAll)

        {

            WorkerPool<TSource> pool = new WorkerPool<TSource>();

 

            foreach (TSource src in source)

            {

                Worker<TSource> worker = pool.GetWorker();

                //Console.WriteLine("Using worker " + worker.Name);

                worker.Arg = src;

                worker.Work = body;

                worker.Go();

            }

 

            if (waitAll)

            {

                pool.WaitAll();

            }

        }

    }

   

 

    /// <summary>

    ///

    /// </summary>

    /// <typeparam name="T"></typeparam>

    class WorkerPool<T>

    {

 

        public WorkerPool()

        {

            _workers = new List<Worker<T>>(Environment.ProcessorCount);

 

            for (int i = 0; i < Environment.ProcessorCount; ++i)

            {

                Worker<T> worker = new Worker<T>("Payneallel " + i);

                _workers.Add(worker);

                worker.Done = new Action<T>(WorkerDone);

                worker.Go();

            }

 

            _workerDoneEvent = new ManualResetEvent(false);

        }

 

 

        private ManualResetEvent _workerDoneEvent;

        private static List<Worker<T>> _workers;

        private object _syncRoot = new object();

 

        /// <summary>

        ///

        /// </summary>

        public void WorkerDone<T>(T arg)

        {

            lock (_syncRoot)

            {

                _workerDoneEvent.Set();

            }

        }

 

 

 

        public Worker<T> GetWorker()

        {

            Worker<T> worker = GetFreeWorker();

 

            while (null == worker)

            {

                _workerDoneEvent.WaitOne(5, true);

                worker = GetFreeWorker();

            }

 

            _workerDoneEvent.Reset();

 

            return worker;

        }

 

 

 

        private Worker<T> GetFreeWorker()

        {

            foreach (Worker<T> w in _workers)

            {

                if (!w.Busy)

                {

                    //Console.WriteLine("returning worker from pool");

                    return w;

                }

            }

 

            return null;

        }

 

 

 

        public void WaitAll()

        {

            while (true)

            {

                foreach (Worker<T> w in _workers)

                {

                    string name = w.Name;

                    if (w.Busy)//Don't block if the thread is not working

                    {

                        w.Finish();

                    }

                    else

                    {

                        w.Active = false;

                    }

                }

 

                return;

            }

        }

 

    }

 

    /// <summary>

    ///

    /// </summary>

    /// <typeparam name="T"></typeparam>

    class Worker<T>

    {

        /// <summary>

        /// Set up initial state

        /// </summary>

        /// <param name="name"></param>

        public Worker(string name)

        {

            Name = name;

            Work = null;

            _active = true;

            Busy = false;

            _syncRoot = new object();

            _acceptingWorkEvent = new ManualResetEvent(true);

            _gotWorkEvent = new ManualResetEvent(false);

 

            ThreadStart ts = new ThreadStart(DoWork);

            Thread t = new Thread(ts);

            t.Name = Name;

            t.Start();

        }

 

 

 

        /// <summary>

        /// set _active to false so the thread will exit

        /// </summary>

        ~Worker()

        {

            _active = false;

        }

 

        private ManualResetEvent _acceptingWorkEvent;

        private ManualResetEvent _gotWorkEvent;

 

 

        /// <summary>

        /// The name of the worker, used to Name the thread for easier debugging

        /// </summary>

        public string Name { get; set; }

 

 

 

        /// <summary>

        /// The worker is currently doing something

        /// </summary>

        public bool Busy { get; set; }

 

        private bool _active;

 

        private object _syncRoot;

 

 

        public bool Active

        {

            get

            {

                return _active;

            }

            set

            {

                _active = value;

            }

        }

 

        /// <summary>

        ///

        /// </summary>

        public Action<T> Work { get; set; }

 

 

       

 

        /// <summary>

        /// The Argument to pass to Work

        /// </summary>

        public T Arg

        {

            get

            {

                return _arg;

            }

            set

            {

                Busy = true;

                _arg = value;

            }

        }

 

        private T _arg;

 

 

        /// <summary>

        /// Call back to the Pool to signify we're done

        /// </summary>

        public Action<T> Done { get; set; }

 

 

        /// <summary>

        /// Block until done

        /// </summary>

        public void Finish()

        {

            _acceptingWorkEvent.WaitOne();

            _active = false;

        }

 

 

 

        /// <summary>

        /// Reset the wait flag so the thread running DoWork will start up again

        /// </summary>

        public void Go()

        {

            _gotWorkEvent.Set();

        }

 

 

        public void DoWork()

        {

            while (_active)

            {

                _gotWorkEvent.WaitOne();//Wait for someone to call Go on us

 

                if (null != Work && null != Arg) //make sure they set the callback action and the argument to the action

                {

                    lock (_syncRoot)

                    {

                        Busy = true;

                        _acceptingWorkEvent.Reset();//Not accepting work now..

                    }

 

                    Work(Arg);//Do the action

                    Work = null;

                    Arg = default(T);

 

                    lock (_syncRoot)

                    {

                        Busy = false;

                        _acceptingWorkEvent.Set();//We are accepting work

                        _gotWorkEvent.Reset();//Don't have work

                        Done(Arg);//Call back to the pool in case someone is waiting on a free worker

                    }

 

                }

 

            }

 

        }

 

    }

}

 

Now, let’s take a brief look at how xUnit works, starting with the xUnit GUI and working down.

 

Click on the sequence diagram to see it full size.  I have paraphrased a bit, and the authors of xUnit might recognize some methods they don’t recall writing.  There are some interesting things here, starting with ExecutorWrapper.CreateObject:

        object CreateObject(string typeName, params object[] args)

        {

            try

            {

                return appDomain.CreateInstanceAndUnwrap(xUnitAssemblyName.FullName, typeName, false, 0, null, args, null, null, null);

            }

            catch (TargetInvocationException ex)

            {

                RethrowWithNoStackTraceLoss(ex.InnerException);

                return null;

            }

        }

So we’re going to be executing the tests inside a new AppDomain.  This was confusing at first.  The code for RunAssembly.DoSequential should make it fairly easy to understand the rest of the execution pipeline:

            protected void DoSequential(Executor executor, object _handler)

            {

                ICallbackEventHandler handler = _handler as ICallbackEventHandler;

                AssemblyResult results = new AssemblyResult(new Uri(executor.assembly.CodeBase).LocalPath);

 

                Type[] exportedTypes = executor.assembly.GetExportedTypes();

                int count = exportedTypes.Length;

                foreach (Type type in exportedTypes)

                {

                    ITestClassCommand testClassCommand = TestClassCommandFactory.Make(type);

 

                    if (testClassCommand != null)

                    {

                        ClassResult classResult = TestClassCommandRunner.Execute(testClassCommand,

                                                                                 null,

                                                                                 result => OnTestResult(result, handler));

                        results.Add(classResult);

                    }

                }

 

                OnTestResult(results, handler);

            }

 

 

        }

For each class with Tests inside the assembly, pass the Type off to TestClassCommandRunner and Execute on down the chain.  When the results are available, we call OnTestResult, which is the callback we passed all the way from the XUnit GUI.  This allows the UI to update itself as the tests are run.

Now we have an understanding of what xUnit is doing.  In the next article, we’ll look at using multiple threads to reduce that test execution time.



Thursday, May 08, 2008 7:08:05 PM (Central Standard Time, UTC-06:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Wednesday, May 07, 2008

Looks like I'm going to TechEd!



Wednesday, May 07, 2008 12:09:00 PM (Central Standard Time, UTC-06:00)  #    Disclaimer  |  Comments [2]  |  Trackback
 Thursday, May 01, 2008

All my concurrent dreams are coming true, concurrently!

First I had some early success getting concurrent unit testing working, details are forthcoming.  I did just have a new son so I'm behind on publishing the latest research.  Next, Scott Hanselman answers my call for concurrent builds here:

http://feeds.feedburner.com/~r/ScottHanselman/~3/277248176/FasterBuildsWithMSBuildUsingParallelBuildsAndMulticoreCPUs.aspx

There is an old Channel 9 video where the MSBuild team talks about concurrent builds.  http://channel9.msdn.com/Showpost.aspx?postid=219308  You will note that they decided on a Tree Based Scheme to manage the dependencies between build targets.  I guess I'm not so Crazy After All, am I?  My problem with the MSBuild concurrency is that it wasn't working in Visual Studio and I felt it should be enabled inside Visual Studio by default, since developers spend a lot of time building solutions using CTRL+SHIFT+B.  Scott has answered this concern here:

http://www.hanselman.com/blog/HackParallelMSBuildsFromWithinTheVisualStudioIDE.aspx

It's a hack as he points out, but we're getting there.  Ideally this would be made available in a Service Pack to VS2008, but I suspect we'll be waiting until the next version unfortunately.



Thursday, May 01, 2008 1:53:30 PM (Central Standard Time, UTC-06:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Sunday, April 27, 2008

Ethan Connor Payne.  Born at 4:47PM CST on April 25th.  7lbs. 60z, 21" long.  We just brought him home.  Mom and baby are doing great.



Sunday, April 27, 2008 1:13:14 PM (Central Standard Time, UTC-06:00)  #    Disclaimer  |  Comments [5]  |  Trackback
 Thursday, April 24, 2008

My wife is 1 week overdue now, so they are inducing her into labor around 7am tomorrow morning.  I will therefore be mostly off the grid for a brief while, though I'll post pictures when everything seems OK.

I have several semi-complete articles, so I should be posting quite a bit in May.



Thursday, April 24, 2008 10:16:29 AM (Central Standard Time, UTC-06:00)  #    Disclaimer  |  Comments [1]  |  Trackback
 Thursday, April 17, 2008

In the past I've occasionally announced something "coming soon" that never saw the light of day, and because of this I've greatly reduced the number of times that I mention any ideas that are still in the vaporware stage.  This time though I just wanted to get it out there.

I mentioned here that Unit Testing was a big chance to save developers time using concurrency.  I actually downloaded the NUnit source immediately after posting that and started looking at what it would take to get NUnit to run tests concurrently.  It's my current opinion, though I reserve the right to change my position later, that NUnit is an over engineered mess.  It uses some interesting combinations of patterns that ultimately makes an amazingly deep and hard to follow pipeline for test execution and result reporting.  The path for running a test suite goes something like this:

  1. Click "Run tests" button
  2. GUITestRunner
  3. ... passes to ThreadedTestRunnger (so the UI remains responsive)
  4. ... passes to ProxyTestRunner
  5. ... crosses a remoting boundary for some reason
  6. ... RemoteTestRunner
  7. ... passes to SimpleTestRunner
  8. Foreach unit test, execute, collect results...
  9. ... pass the results back across the remoting boundary to display in the GUI

I'm sure I'm missing at least one step in there.  The first trial of making SimpleTestRunner execute the tests in Parallel failed because there seems to be some bizarre hook in the test result capturing scheme that didn't like being threaded.  I will either track down this issue, create my own XTestRunner implementation, or blow an evening making my own unit test scheme that can run in parallel.  If I can then get TestDriven and NCover to hook into that, life would be good indeed.



Thursday, April 17, 2008 8:45:53 AM (Central Standard Time, UTC-06:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Wednesday, April 16, 2008

I couldn't leave this one alone:

http://www.scienceblog.com/cms/world039s-oldest-living-tree-discovered-sweden-15937.html

The first thing I thought of when I saw this, sadly, was not "wow, what an awesome discovery!" but "Wait, isn't the world only 6,000 years old?".  As much as it would be a tragedy to harm these trees, I think we ought to take a core sample and count the rings on the trees.  What would surely follow is the sound of one thousand "thuds" as the creationists trip over themselves to refute the fact that the age of trees can be determined by counting rings.  Or, as my friend put it "The devil planted that tree to confuse us and test our faith."

Johnny Appleseed was the antichrist.



Wednesday, April 16, 2008 1:38:38 PM (Central Standard Time, UTC-06:00)  #    Disclaimer  |  Comments [0]  |  Trackback

I had the most frustrating dasBlog issue over the past couple of days:

I suddenly found myself unable to post anything on my blog.  This coincidentally happened at the exact same time my hosting provider had me try a web.config change to alleviate some session/viewstate issues I was having.  I would try to make a post, get no errors, and be returned to the front page and see that my post was missing.  Referral logs were strangely missing, and the dasBlog event log was also strangely empty.  The only thing I could get a vague error message from was trying to post a comment.

Apparently, my "Anonymous Asp.Net user" had suddenly hit its disk-space quota.  I don't know if this quota was created recently or not.  It seems odd indeed that dasBlog would cruise along and never report an error when it's out of disk space.  I wonder if this is something dasBlog is doing or something that's happening because of the hosting environment?



Wednesday, April 16, 2008 11:39:55 AM (Central Standard Time, UTC-06:00)  #    Disclaimer  |  Comments [0]  |  Trackback