<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>fileserver best practices Archives - the Sysadmin Channel</title>
	<atom:link href="https://thesysadminchannel.com/tag/fileserver-best-practices/feed/" rel="self" type="application/rss+xml" />
	<link>https://thesysadminchannel.com/tag/fileserver-best-practices/</link>
	<description>Documenting My Life as a System Administrator</description>
	<lastBuildDate>Tue, 12 Jun 2018 04:50:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
<site xmlns="com-wordpress:feed-additions:1">144174110</site>	<item>
		<title>Data Deduplication On Windows Server 2016 &#8211; Why It&#8217;s a Must For File Servers</title>
		<link>https://thesysadminchannel.com/data-deduplication-on-windows-server-2016/</link>
					<comments>https://thesysadminchannel.com/data-deduplication-on-windows-server-2016/#respond</comments>
		
		<dc:creator><![CDATA[Paul Contreras]]></dc:creator>
		<pubDate>Tue, 12 Jun 2018 04:50:01 +0000</pubDate>
				<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[benefits of data deduplication]]></category>
		<category><![CDATA[data dedup windows server]]></category>
		<category><![CDATA[Data Deduplication On Windows Server 2016]]></category>
		<category><![CDATA[deduplication for server]]></category>
		<category><![CDATA[fileserver best practices]]></category>
		<category><![CDATA[how to setup data deduplication]]></category>
		<category><![CDATA[remove redundant data]]></category>
		<category><![CDATA[server 2016 enable data deduplication]]></category>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=624</guid>

					<description><![CDATA[<p>Data Deduplication On Windows Server 2016 Data deduplication was first introduced with Windows Server 2012 and improved upon in Windows Server 2016. To give you a high level overview of what Data Deduplication actually does, it goes through files in&#8230; <a href="https://thesysadminchannel.com/data-deduplication-on-windows-server-2016/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://thesysadminchannel.com/data-deduplication-on-windows-server-2016/">Data Deduplication On Windows Server 2016 &#8211; Why It&#8217;s a Must For File Servers</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Data Deduplication On Windows Server 2016</h2>
<p>Data deduplication was first introduced with Windows Server 2012 and improved upon in Windows Server 2016.  To give you a high level overview of what Data Deduplication actually does, it goes through files in your fileserver and removes any redundant data to save on storage space. Since it uses a post-processing model, meaning it runs background jobs to optimize the files after the files have been created, data deduplication on Windows Server 2016 as well as Windows Server 2012 is completely transparent and very easy to work with.</p>
<h2>How Data Deduplication Works on Windows Server</h2>
<p>The data deduplication process works by removing any redundant data and ensuring that only a unique instance of any data is actually kept. All subsequent iterations of the data are then replaced with a pointer to the original, that pointer is known as a reparse point.  Data deduplication can operate at the file, block or bit level. If two files are exactly alike in a file-level operation, one iteration of the file is retained and any subsequent copies have a pointer file pointing to the original location. I would not recommend using file deduplication because if the file is changed with the smallest update, a whole new file will be created because it is not exactly the same.  Thus, making file-level deduplication highly inefficient.</p>
<p>Block deduplication and bit deduplication work slightly different because Windows looks within a file and saves unique iterations of each block. If a file is updated, only the data that has changed will be saved. As you can imagine, this is a far more efficient process than file-level deduplication because many of the same bits are retained and compression ratios are much greater.</p>
<h2>Data Deduplication Jobs and Job Types</h2>

<table id="tablepress-2" class="tablepress tablepress-id-2">
<thead>
<tr class="row-1">
	<th class="column-1">Job</th><th class="column-2">Description</th><th class="column-3">Frequency</th>
</tr>
</thead>
<tbody class="row-striping row-hover">
<tr class="row-2">
	<td class="column-1">Optimization</td><td class="column-2">Deduplicates data</td><td class="column-3">Once an hour</td>
</tr>
<tr class="row-3">
	<td class="column-1">Garbage Collection</td><td class="column-2">reclaims disk space</td><td class="column-3">Once a week</td>
</tr>
<tr class="row-4">
	<td class="column-1">Integrity Scrubbing</td><td class="column-2">Identifies corruption</td><td class="column-3">Once a week</td>
</tr>
<tr class="row-5">
	<td class="column-1">Unoptimization</td><td class="column-2">Reverts optimization job</td><td class="column-3">Manual</td>
</tr>
</tbody>
</table>
<!-- #tablepress-2 from cache -->
<p>The table above shows the 4 types of data deduplication jobs for Windows Server 2016 and below is a brief detail of what each job does.<br />
<strong>-Optimization job</strong>: the optimization job is the main workhorse here and its job is to chunk the data, compress it, and then it store it in the chunk store.  We can see that it runs once an hour by default.<br />
<strong>-Garbage Collection job</strong>: the main function of the is clean the chunk store and reclaim any bits that no longer match the original chunks.  By default, it runs once a week on Saturdays.<br />
<strong>-Integrity Scrubbing job</strong>: This job also runs once a week on Saturday mornings. Its sole purpose is to identify corrupted data due to disk failures. If it does detect corruption, it will attempt to repair it. It actually keeps backup copies of the most popular chunks that are referenced the most times.<br />
<strong>-Unoptimization job</strong>. And this is our undo job. This will take everything that deduplication did and put it back the way it was. So it&#8217;ll take all of those reparse points and fill it back up with the data that&#8217;s in the chunk store, get rid of the chunk store, and disable deduplication.</p>
<h2>How to Enable Data Deduplication on Windows Server 2016</h2>
<p>Data deduplication is a Windows Role so naturally we would use Roles and Features to enable it.</p>
<ul>
<li>Open Server Manager and click on Add roles and features.</li>
<li>Select the default Role-based or feature-based installation radio button.</li>
</ul>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2018/06/Role-based-or-feature-based-installation.png" target="_blank"><img fetchpriority="high" decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2018/06/Role-based-or-feature-based-installation.png" alt="Role-based or feature-based installation" width="894" height="637" class="aligncenter size-full wp-image-635" srcset="https://thesysadminchannel.com/wp-content/uploads/2018/06/Role-based-or-feature-based-installation.png 894w, https://thesysadminchannel.com/wp-content/uploads/2018/06/Role-based-or-feature-based-installation-768x547.png 768w" sizes="(max-width: 894px) 100vw, 894px" /></a><br />
&nbsp;</p>
<ul>
<li>Ensure select a server from the server pool is selected.</li>
</ul>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2018/06/Select-a-server-from-the-server-pool.png" target="_blank"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2018/06/Select-a-server-from-the-server-pool.png" alt="Select a server from the server pool" width="895" height="639" class="aligncenter size-full wp-image-636" srcset="https://thesysadminchannel.com/wp-content/uploads/2018/06/Select-a-server-from-the-server-pool.png 895w, https://thesysadminchannel.com/wp-content/uploads/2018/06/Select-a-server-from-the-server-pool-768x548.png 768w" sizes="(max-width: 895px) 100vw, 895px" /></a><br />
&nbsp;</p>
<ul>
<li>Under File and Storages Services, you will see the option to enable Data Deduplication. Be sure to add the additional features when prompted.</li>
</ul>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2018/06/Enable-Data-Deduplication-on-Windows-2016.png" target="_blank"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2018/06/Enable-Data-Deduplication-on-Windows-2016.png" alt="Enable Data Deduplication on Windows 2016" width="895" height="638" class="aligncenter size-full wp-image-637" srcset="https://thesysadminchannel.com/wp-content/uploads/2018/06/Enable-Data-Deduplication-on-Windows-2016.png 895w, https://thesysadminchannel.com/wp-content/uploads/2018/06/Enable-Data-Deduplication-on-Windows-2016-768x547.png 768w" sizes="(max-width: 895px) 100vw, 895px" /></a><br />
&nbsp;</p>
<ul>
<li>If you added the features when it prompted, you don&#8217;t need to add any additional features in the features window.</li>
<li>Once you&#8217;re ready go ahead and install. Reboot once it&#8217;s complete for safe measure</li>
</ul>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2018/06/Data-deplication-setting-install-confirmation.png" target="_blank"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2018/06/Data-deplication-setting-install-confirmation.png" alt="Data deplication setting install confirmation" width="896" height="640" class="aligncenter size-full wp-image-639" srcset="https://thesysadminchannel.com/wp-content/uploads/2018/06/Data-deplication-setting-install-confirmation.png 896w, https://thesysadminchannel.com/wp-content/uploads/2018/06/Data-deplication-setting-install-confirmation-768x549.png 768w" sizes="(max-width: 896px) 100vw, 896px" /></a><br />
&nbsp;</p>
<ul>
<li>Back in Server Manager expand the File and Storage Services -> Volumes -> right click drive letter Click Configure Data Deduplication.</li>
</ul>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2018/06/File-and-Storage-Services-Windows-2016.png" target="_blank"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2018/06/File-and-Storage-Services-Windows-2016.png" alt="File and Storage Services Windows 2016" width="899" height="432" class="aligncenter size-full wp-image-641" srcset="https://thesysadminchannel.com/wp-content/uploads/2018/06/File-and-Storage-Services-Windows-2016.png 899w, https://thesysadminchannel.com/wp-content/uploads/2018/06/File-and-Storage-Services-Windows-2016-768x369.png 768w" sizes="(max-width: 899px) 100vw, 899px" /></a></p>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2018/06/Configure-Data-Deduplicatoin.png" target="_blank"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2018/06/Configure-Data-Deduplicatoin-1024x528.png" alt="Configure Data Deduplicatoin" width="1024" height="528" class="aligncenter size-medium wp-image-642" srcset="https://thesysadminchannel.com/wp-content/uploads/2018/06/Configure-Data-Deduplicatoin-1024x528.png 1024w, https://thesysadminchannel.com/wp-content/uploads/2018/06/Configure-Data-Deduplicatoin-768x396.png 768w, https://thesysadminchannel.com/wp-content/uploads/2018/06/Configure-Data-Deduplicatoin.png 1155w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><br />
&nbsp;</p>
<ul>
<li>By default Data Deduplication will be disabled when the role is added.  Simply click on the drop down and select General File Purpose Server.</li>
</ul>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2018/06/Data-Deduplication-general-purpose-file-server.png" target="_blank"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2018/06/Data-Deduplication-general-purpose-file-server.png" alt="Data Deduplication general purpose file server" width="739" height="632" class="aligncenter size-full wp-image-643" /></a><br />
&nbsp;</p>
<ul>
<li>After some time has passed you can open an administrative Powershell window and run the <code>Get-DedupStatus</code> cmdlet.  Here is a snapshot of a production server running data deduplication. Look at the Saved Space column.</li>
</ul>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2018/06/Get-DedupStatus.png" target="_blank"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2018/06/Get-DedupStatus.png" alt="Get-DedupStatus" width="1018" height="522" class="aligncenter size-full wp-image-646" srcset="https://thesysadminchannel.com/wp-content/uploads/2018/06/Get-DedupStatus.png 1018w, https://thesysadminchannel.com/wp-content/uploads/2018/06/Get-DedupStatus-768x394.png 768w" sizes="(max-width: 1018px) 100vw, 1018px" /></a></p>
<p>And that&#8217;s it.  In this article we enabled Data Deduplication On Windows Server 2016 and saw the incredible space savings deduplication provides in Windows Server.</p>
<p>If you would like more awesome sysadmin content, be sure to check out our <a href="https://www.youtube.com/channel/UC9VnUjmZrNG3ithDZmG-S-g" rel="noopener" target="_blank">Youtube Channel</a> for video demos and other cool sysadmin stuff.</p>
<p>The post <a href="https://thesysadminchannel.com/data-deduplication-on-windows-server-2016/">Data Deduplication On Windows Server 2016 &#8211; Why It&#8217;s a Must For File Servers</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://thesysadminchannel.com/data-deduplication-on-windows-server-2016/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">624</post-id>	</item>
	</channel>
</rss>
