<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: Lessfs-1.5.10 has been released</title>
	<atom:link href="http://www.lessfs.com/wordpress/?feed=rss2&#038;p=702" rel="self" type="application/rss+xml" />
	<link>http://www.lessfs.com/wordpress/?p=702</link>
	<description>Open source data de-duplication &#38; data tiering for less</description>
	<lastBuildDate>Wed, 18 Mar 2015 13:40:57 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0.7</generator>
	<item>
		<title>By: Charles</title>
		<link>http://www.lessfs.com/wordpress/?p=702&#038;cpage=1#comment-3883</link>
		<dc:creator><![CDATA[Charles]]></dc:creator>
		<pubDate>Fri, 20 Apr 2012 18:39:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.lessfs.com/wordpress/?p=702#comment-3883</guid>
		<description><![CDATA[oh nearly forgot, I am writting data like this:

dd if=/dev/frandom of=./test.107.out bs=1M count=5000

basically over and over to fill up the area. It holds around 60MB/s]]></description>
		<content:encoded><![CDATA[<p>oh nearly forgot, I am writting data like this:</p>
<p>dd if=/dev/frandom of=./test.107.out bs=1M count=5000</p>
<p>basically over and over to fill up the area. It holds around 60MB/s</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles</title>
		<link>http://www.lessfs.com/wordpress/?p=702&#038;cpage=1#comment-3882</link>
		<dc:creator><![CDATA[Charles]]></dc:creator>
		<pubDate>Fri, 20 Apr 2012 18:37:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.lessfs.com/wordpress/?p=702#comment-3882</guid>
		<description><![CDATA[thx for getting back.
I made like this:
./configure --with-snappy --with-berkeleydb CFLAGS=&#039;-ggdb2&#039;

I have set lessfs.cfg:
TUNEFORSIZE=MEDIUM
MAX_THREADS=8

I have set DB_CONFIG:
set_cachesize 1 0 8

similar performance tho.

Hamster actually performed slower at 20MB/s]]></description>
		<content:encoded><![CDATA[<p>thx for getting back.<br />
I made like this:<br />
./configure &#8211;with-snappy &#8211;with-berkeleydb CFLAGS=&#8217;-ggdb2&#8242;</p>
<p>I have set lessfs.cfg:<br />
TUNEFORSIZE=MEDIUM<br />
MAX_THREADS=8</p>
<p>I have set DB_CONFIG:<br />
set_cachesize 1 0 8</p>
<p>similar performance tho.</p>
<p>Hamster actually performed slower at 20MB/s</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maru</title>
		<link>http://www.lessfs.com/wordpress/?p=702&#038;cpage=1#comment-3856</link>
		<dc:creator><![CDATA[maru]]></dc:creator>
		<pubDate>Fri, 20 Apr 2012 12:13:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.lessfs.com/wordpress/?p=702#comment-3856</guid>
		<description><![CDATA[One more thing that I noticed in you configuration file.
TUNEFORSIZE=HUGE

Since you have plenty of memory database this may work against you.
Can you try :
TUNEFORSIZE=MEDIUM or even SMALL?]]></description>
		<content:encoded><![CDATA[<p>One more thing that I noticed in you configuration file.<br />
TUNEFORSIZE=HUGE</p>
<p>Since you have plenty of memory database this may work against you.<br />
Can you try :<br />
TUNEFORSIZE=MEDIUM or even SMALL?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maru</title>
		<link>http://www.lessfs.com/wordpress/?p=702&#038;cpage=1#comment-3855</link>
		<dc:creator><![CDATA[maru]]></dc:creator>
		<pubDate>Fri, 20 Apr 2012 11:57:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.lessfs.com/wordpress/?p=702#comment-3855</guid>
		<description><![CDATA[Hi Charles,

Your hardware should allow better speeds then what you are reporting.
Although the 3 SATA will obviously not allow speeds up to 700MB/sec. I use 6 drives (Hitachi Ultrastar and an LSI controller with cache enabled) to get this speed.
You will not be able to do more then 240MB/sec in this case.

Since you have 6 CPU cores I would set MAX_THREADS higher so that it at least matches the number of CPU&#039;s in the system.
Higher will not harm, lower does.
MAX_THREADS=8

What type of IO load are you generating?
Are you getting 60MB/sec when copying lots of small files or when you do something like dd if=/data/random.img of=/lessfs/ramdom.img bs=1M?

You should tune DB_CONFIG and set the cachesize as large as you can spare:
set_cachesize   1       0    8
This will allocate 8 chunks of 1 GB.

In lessfs.cfg 
CACHESIZE=512M is usually enough.
You can play a bit with this value to see what works best.

You did not compile with CFLAGS set to -ggdb2 instead of -O2?]]></description>
		<content:encoded><![CDATA[<p>Hi Charles,</p>
<p>Your hardware should allow better speeds then what you are reporting.<br />
Although the 3 SATA will obviously not allow speeds up to 700MB/sec. I use 6 drives (Hitachi Ultrastar and an LSI controller with cache enabled) to get this speed.<br />
You will not be able to do more then 240MB/sec in this case.</p>
<p>Since you have 6 CPU cores I would set MAX_THREADS higher so that it at least matches the number of CPU&#8217;s in the system.<br />
Higher will not harm, lower does.<br />
MAX_THREADS=8</p>
<p>What type of IO load are you generating?<br />
Are you getting 60MB/sec when copying lots of small files or when you do something like dd if=/data/random.img of=/lessfs/ramdom.img bs=1M?</p>
<p>You should tune DB_CONFIG and set the cachesize as large as you can spare:<br />
set_cachesize   1       0    8<br />
This will allocate 8 chunks of 1 GB.</p>
<p>In lessfs.cfg<br />
CACHESIZE=512M is usually enough.<br />
You can play a bit with this value to see what works best.</p>
<p>You did not compile with CFLAGS set to -ggdb2 instead of -O2?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles</title>
		<link>http://www.lessfs.com/wordpress/?p=702&#038;cpage=1#comment-3854</link>
		<dc:creator><![CDATA[Charles]]></dc:creator>
		<pubDate>Fri, 20 Apr 2012 11:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.lessfs.com/wordpress/?p=702#comment-3854</guid>
		<description><![CDATA[This is interesting, I will give it a go, write performance is very important to me.

I&#039;m wondering what hardware spec is required for high-end performance.

using Berkeley DB with file_io backend I get about 60MB/s sustained write (from a random number data source which produces data at 170MB/s)

Is 60MB/s reasonable for my setup?

I have 3 x 2TB sata drives - software raid 5 (sustained write 240MB/s) - for the data
I have an SSD card (sustained write 500MB/s) - for the BDB
I have 16GB RAM and CPU 6 cores at 2.8MHz
I have 1.5TB of data in the lessfs mount.

As an observation lessfs doesn&#039;t seem to use much RAM, I was wondering how to increase throughput by utilising RAM. I have tried to alter the DB_CONFIG settings to have a 4GB cache, but it does not seem to make a difference.

I wondered if the write speed of the data area (240MB/s) was the bottleneck, so I created the data directory on another SSD (500MB/s), no improvement.

Is it CPU bound? 

Is it because it is a fuse file system?

Does anyone have any clues as to what the bottleneck in lessfs with BDB is?
What hardware/setup would I need to get 100MB/s?]]></description>
		<content:encoded><![CDATA[<p>This is interesting, I will give it a go, write performance is very important to me.</p>
<p>I&#8217;m wondering what hardware spec is required for high-end performance.</p>
<p>using Berkeley DB with file_io backend I get about 60MB/s sustained write (from a random number data source which produces data at 170MB/s)</p>
<p>Is 60MB/s reasonable for my setup?</p>
<p>I have 3 x 2TB sata drives &#8211; software raid 5 (sustained write 240MB/s) &#8211; for the data<br />
I have an SSD card (sustained write 500MB/s) &#8211; for the BDB<br />
I have 16GB RAM and CPU 6 cores at 2.8MHz<br />
I have 1.5TB of data in the lessfs mount.</p>
<p>As an observation lessfs doesn&#8217;t seem to use much RAM, I was wondering how to increase throughput by utilising RAM. I have tried to alter the DB_CONFIG settings to have a 4GB cache, but it does not seem to make a difference.</p>
<p>I wondered if the write speed of the data area (240MB/s) was the bottleneck, so I created the data directory on another SSD (500MB/s), no improvement.</p>
<p>Is it CPU bound? </p>
<p>Is it because it is a fuse file system?</p>
<p>Does anyone have any clues as to what the bottleneck in lessfs with BDB is?<br />
What hardware/setup would I need to get 100MB/s?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
