aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-06-21 20:45:57 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-06-21 20:45:57 -0400
commit874653f2a0e5d7808e67a0e2861442a6ebf6461c (patch)
tree8acf5df4189e89b1ec2195893eae68964f65c55f
parent229a28cbf95e7c7003e64255b1e3cd07f3c416cb (diff)
blog for the day
-rw-r--r--doc/design/assistant/blog/day_287__niceness.mdwn13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/design/assistant/blog/day_287__niceness.mdwn b/doc/design/assistant/blog/day_287__niceness.mdwn
new file mode 100644
index 000000000..159dd948b
--- /dev/null
+++ b/doc/design/assistant/blog/day_287__niceness.mdwn
@@ -0,0 +1,13 @@
+Pushed out a release today. While I've somewhat ramped down activity this
+month with the Kickstarter period over and summer trips and events ongoing,
+looking over the changelog I still see a ton of improvements in the 20 days
+since the last release.
+
+Been doing some work to make the assistant daemon be more `nice`. I don't
+want to nice the whole program, because that could make the web interface
+unresponsive. What I am able to do, thanks to Linux violating POSIX, is
+nice certian expensive operations, including the startup scan and the daily
+sanity check. Also, I put in a call to `ionice` (when it's available)
+when `git annex assistant --autostart` is run, so the daemon's
+disk IO will be prioritized below other IO. Hope this keeps it out of your
+way while it does its job.