Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1233885 > unrolled thread
| Started by | Christoph Hellwig <hch@infradead.org> |
|---|---|
| First post | 2015-09-28 08:50 +0200 |
| Last post | 2015-09-30 17:20 +0200 |
| Articles | 7 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH] Patch to integrate RapidDisk and RapidCache RAM Drive / Caching modules into the kernel Christoph Hellwig <hch@infradead.org> - 2015-09-28 08:50 +0200
Re: [PATCH] Patch to integrate RapidDisk and RapidCache RAM Drive / Caching modules into the kernel Petros Koutoupis <petros@petroskoutoupis.com> - 2015-09-28 17:00 +0200
Re: [PATCH] Patch to integrate RapidDisk and RapidCache RAM Drive / Caching modules into the kernel Christoph Hellwig <hch@infradead.org> - 2015-09-28 18:30 +0200
Re: [PATCH] Patch to integrate RapidDisk and RapidCache RAM Drive / Caching modules into the kernel Petros Koutoupis <petros@petroskoutoupis.com> - 2015-09-28 18:50 +0200
Re: [PATCH] Patch to integrate RapidDisk and RapidCache RAM Drive / Caching modules into the kernel Austin S Hemmelgarn <ahferroin7@gmail.com> - 2015-09-29 16:40 +0200
Re: [PATCH] Patch to integrate RapidDisk and RapidCache RAM Drive / Caching modules into the kernel Petros Koutoupis <petros@petroskoutoupis.com> - 2015-09-30 16:30 +0200
Re: [PATCH] Patch to integrate RapidDisk and RapidCache RAM Drive / Caching modules into the kernel Austin S Hemmelgarn <ahferroin7@gmail.com> - 2015-09-30 17:20 +0200
| From | Christoph Hellwig <hch@infradead.org> |
|---|---|
| Date | 2015-09-28 08:50 +0200 |
| Subject | Re: [PATCH] Patch to integrate RapidDisk and RapidCache RAM Drive / Caching modules into the kernel |
| Message-ID | <qdAq6-6nd-7@gated-at.bofh.it> |
On Sun, Sep 27, 2015 at 12:17:24PM -0500, Petros Koutoupis wrote: > Attached is a patch for two modules: RapidDisk & RapidCache. RapidDisk is a > Linux RAM drive module which allows the user to dynamically create, remove, > and resize RAM-based block devices. RapidDisk is designed to work with both > volatile and non-volatile memory. In the case of volatile memory, memory is > allocated only when needed. The RapidCache module in turn utilizes a RapidDisk > volume as a FIFO Write-Through caching node to a slower block device. Hi Petros, this is three things at the same time! We already have a ramdisk driver, a pmem drive, bcache and dm-cache, so for each of them please explain why we'd want to duplicate them instead of adding whatever features you need to them. First step is to identify those features. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Petros Koutoupis <petros@petroskoutoupis.com> |
|---|---|
| Date | 2015-09-28 17:00 +0200 |
| Message-ID | <qdI4i-2z9-5@gated-at.bofh.it> |
| In reply to | #1233885 |
Christoph (and all), I hope this message finds you well. The unfortunate truth is, had I the courage and confidence to submit this years ago, we wouldn't be having this conversation. Anyway, to address your questions: 1. Unlike the already mainline ramdisk driver, RapidDisk is designed to be managed dynamically. That is, instead of configuring a fixed number of volumes and volume sizes as compile/boot time variables, RapidDisk will allow you to add, remove, and resize your RAM drive(s) at runtime. Besides, the built in module is designed to work with smaller sizes in mind while RapidDisk focuses on larger sizes that can reach to the multiple Gigabytes or even Terabytes. Much like the built in module, it will allocate pages as they are needed which allows for over provisioning (not that it is advised) of volume sizes. 2. The majority of RapidDisk code focuses on the use of Volatile memory. The support for Non-Volatile memory is a bit newer and there may be some overlap here with the recently integrated pmem code. The only advantage to having this code within RapidDisk is to provide the user with the ability to manage both technologies simultaneously, through a single interface. 3. The RapidCache component is designed around the Non-Volatile functionality of RapidDisk (hence the block-level Write-Through caching). It is also coded and optimized around the RapidDisk sizes/variables, out-of-box. It is worth noting that I am in the process of expanding this module to add deduplication support. This will leverage RapidDisk's ability to allocate pages only when needed and reduce the cache's memory footprint; making more out of less. Thoughts, suggestions, and concerns are always welcome. On 9/28/15 1:49 AM, Christoph Hellwig wrote: > On Sun, Sep 27, 2015 at 12:17:24PM -0500, Petros Koutoupis wrote: >> Attached is a patch for two modules: RapidDisk & RapidCache. RapidDisk is a >> Linux RAM drive module which allows the user to dynamically create, remove, >> and resize RAM-based block devices. RapidDisk is designed to work with both >> volatile and non-volatile memory. In the case of volatile memory, memory is >> allocated only when needed. The RapidCache module in turn utilizes a RapidDisk >> volume as a FIFO Write-Through caching node to a slower block device. > Hi Petros, > > this is three things at the same time! We already have a ramdisk > driver, a pmem drive, bcache and dm-cache, so for each of them please > explain why we'd want to duplicate them instead of adding whatever > features you need to them. First step is to identify those features. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Christoph Hellwig <hch@infradead.org> |
|---|---|
| Date | 2015-09-28 18:30 +0200 |
| Message-ID | <qdJto-4HM-9@gated-at.bofh.it> |
| In reply to | #1233885 |
Hi Petros, On Mon, Sep 28, 2015 at 09:12:13AM -0500, Petros Koutoupis wrote: > 1. Unlike the already mainline ramdisk driver, RapidDisk is designed to be > managed dynamically. That is, instead of configuring a fixed number of > volumes and volume sizes as compile/boot time variables, RapidDisk will > allow you to add, remove, and resize your RAM drive(s) at runtime. Besides, > the built in module is designed to work with smaller sizes in mind while > RapidDisk focuses on larger sizes that can reach to the multiple Gigabytes > or even Terabytes. Much like the built in module, it will allocate pages as > they are needed which allows for over provisioning (not that it is advised) > of volume sizes. The ramdisk driver allows to selects sizes and count at module load load. I agree that having runtime control would be even better, but that's best done by adding a runtime interface to the existing driver instead of duplicating it. > 2. The majority of RapidDisk code focuses on the use of Volatile memory. > The support for Non-Volatile memory is a bit newer and there may be some > overlap here with the recently integrated pmem code. The only advantage to > having this code within RapidDisk is to provide the user with the ability > to manage both technologies simultaneously, through a single interface. Which really doesn't sound like a good enough reason to duplicate it. > 3. The RapidCache component is designed around the Non-Volatile > functionality of RapidDisk (hence the block-level Write-Through caching). > It is also coded and optimized around the RapidDisk sizes/variables, > out-of-box. It is worth noting that I am in the process of expanding this > module to add deduplication support. This will leverage RapidDisk's ability > to allocate pages only when needed and reduce the cache's memory footprint; > making more out of less. Still needs some code comparism to our existing two caching solutions. I'd love to see you go ahead with the dynamic ramdisk configuration as this is clearly a very useful feature. A caching solution that is optimized for non-volatile memory does sound useful, but we'll still need a patch better explaining how it actually is as useful as it might sound. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Petros Koutoupis <petros@petroskoutoupis.com> |
|---|---|
| Date | 2015-09-28 18:50 +0200 |
| Message-ID | <qdJMK-54p-25@gated-at.bofh.it> |
| In reply to | #1234276 |
Christoph, See my replies below.... On 9/28/15 11:29 AM, Christoph Hellwig wrote: > Hi Petros, > > On Mon, Sep 28, 2015 at 09:12:13AM -0500, Petros Koutoupis wrote: >> 1. Unlike the already mainline ramdisk driver, RapidDisk is designed to be >> managed dynamically. That is, instead of configuring a fixed number of >> volumes and volume sizes as compile/boot time variables, RapidDisk will >> allow you to add, remove, and resize your RAM drive(s) at runtime. Besides, >> the built in module is designed to work with smaller sizes in mind while >> RapidDisk focuses on larger sizes that can reach to the multiple Gigabytes >> or even Terabytes. Much like the built in module, it will allocate pages as >> they are needed which allows for over provisioning (not that it is advised) >> of volume sizes. > The ramdisk driver allows to selects sizes and count at module load > load. I agree that having runtime control would be even better, but > that's best done by adding a runtime interface to the existing driver > instead of duplicating it. I understand the concern and I will definitely scope out this approach, although at the moment, I am not sure how both approaches will play nice together. As mentioned above, the current implementation requires the predefined number of ram drives with the specified size to be configured at boot time (or compiled into the kernel). The only wiggle room I see for runtime control is resizing individual volumes. >> 2. The majority of RapidDisk code focuses on the use of Volatile memory. >> The support for Non-Volatile memory is a bit newer and there may be some >> overlap here with the recently integrated pmem code. The only advantage to >> having this code within RapidDisk is to provide the user with the ability >> to manage both technologies simultaneously, through a single interface. > Which really doesn't sound like a good enough reason to duplicate it. I do not disagree with your comment here. This component does not have to be patched into the mainline. >> 3. The RapidCache component is designed around the Non-Volatile >> functionality of RapidDisk (hence the block-level Write-Through caching). >> It is also coded and optimized around the RapidDisk sizes/variables, >> out-of-box. It is worth noting that I am in the process of expanding this >> module to add deduplication support. This will leverage RapidDisk's ability >> to allocate pages only when needed and reduce the cache's memory footprint; >> making more out of less. > Still needs some code comparism to our existing two caching solutions. > > I'd love to see you go ahead with the dynamic ramdisk configuration as > this is clearly a very useful feature. A caching solution that is > optimized for non-volatile memory does sound useful, but we'll still > need a patch better explaining how it actually is as useful as it might > sound. CORRECTION: I meant to say Volatile and NOT Non-Volatile. RapidCache is designed around Volatile memory. I guess I was a little to excited in my response and I do apologize for that. I will provide a code comparison in my next e-mail, after I go through the existing RAM drive code. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Austin S Hemmelgarn <ahferroin7@gmail.com> |
|---|---|
| Date | 2015-09-29 16:40 +0200 |
| Message-ID | <qe4eu-Oh-35@gated-at.bofh.it> |
| In reply to | #1234292 |
[Multipart message — attachments visible in raw view] — view raw
On 2015-09-28 12:45, Petros Koutoupis wrote: > Christoph, > > See my replies below.... > > On 9/28/15 11:29 AM, Christoph Hellwig wrote: >> Hi Petros, >> >> On Mon, Sep 28, 2015 at 09:12:13AM -0500, Petros Koutoupis wrote: >>> 1. Unlike the already mainline ramdisk driver, RapidDisk is designed >>> to be >>> managed dynamically. That is, instead of configuring a fixed number of >>> volumes and volume sizes as compile/boot time variables, RapidDisk will >>> allow you to add, remove, and resize your RAM drive(s) at runtime. >>> Besides, >>> the built in module is designed to work with smaller sizes in mind while >>> RapidDisk focuses on larger sizes that can reach to the multiple >>> Gigabytes >>> or even Terabytes. Much like the built in module, it will allocate >>> pages as >>> they are needed which allows for over provisioning (not that it is >>> advised) >>> of volume sizes. >> The ramdisk driver allows to selects sizes and count at module load >> load. I agree that having runtime control would be even better, but >> that's best done by adding a runtime interface to the existing driver >> instead of duplicating it. > I understand the concern and I will definitely scope out this approach, > although at the moment, I am not sure how both approaches will play nice > together. As mentioned above, the current implementation requires the > predefined number of ram drives with the specified size to be configured > at boot time (or compiled into the kernel). The only wiggle room I see > for runtime control is resizing individual volumes. Just because there is not code currently to do dynamic allocation/freeing of ramdisks in the current driver doesn't mean that it isn't possible, it just means that nobody has written code to do it yet. This functionality would be extremely useful (I often use ramdisks on a VM host as a small amount of very fast swap space for the virtual machines). On top of that, the deduplication would be a wonderful feature, although it may already be indirectly implemented through KSM (that is, when KSM is on and configured to scan everything, I'm not sure if it scans memory used by the ramdisks or not). >>> 2. The majority of RapidDisk code focuses on the use of Volatile memory. >>> The support for Non-Volatile memory is a bit newer and there may be some >>> overlap here with the recently integrated pmem code. The only >>> advantage to >>> having this code within RapidDisk is to provide the user with the >>> ability >>> to manage both technologies simultaneously, through a single interface. >> Which really doesn't sound like a good enough reason to duplicate it. > I do not disagree with your comment here. This component does not have > to be patched into the mainline. > >>> 3. The RapidCache component is designed around the Non-Volatile >>> functionality of RapidDisk (hence the block-level Write-Through >>> caching). >>> It is also coded and optimized around the RapidDisk sizes/variables, >>> out-of-box. It is worth noting that I am in the process of expanding >>> this >>> module to add deduplication support. This will leverage RapidDisk's >>> ability >>> to allocate pages only when needed and reduce the cache's memory >>> footprint; >>> making more out of less. >> Still needs some code comparism to our existing two caching solutions. >> >> I'd love to see you go ahead with the dynamic ramdisk configuration as >> this is clearly a very useful feature. A caching solution that is >> optimized for non-volatile memory does sound useful, but we'll still >> need a patch better explaining how it actually is as useful as it might >> sound. > CORRECTION: I meant to say Volatile and NOT Non-Volatile. RapidCache is > designed around Volatile memory. I guess I was a little to excited in my > response and I do apologize for that. I will provide a code comparison > in my next e-mail, after I go through the existing RAM drive code. To a certain extent, I see that as potentially less useful than optimized for non-volatile memory. While the current incarnation of the pagecache in Linux could stand to have some serious performance improvements (just think how fast things would be if we used ARC instead of plain LRU), it does still do it's job well for most workloads (although being able to tell the kernel to reserve some portion of memory _just_ for the pagecache would be an interesting and probably very useful feature).
[toc] | [prev] | [next] | [standalone]
| From | Petros Koutoupis <petros@petroskoutoupis.com> |
|---|---|
| Date | 2015-09-30 16:30 +0200 |
| Message-ID | <qeqym-7BV-25@gated-at.bofh.it> |
| In reply to | #1235162 |
Christoph and Austin, You both have provided me with some valuable feedback. I will do what I can to clean this patch up and in turn apply the same dynamic functionality to the already in-kernel module. Also please see my replies below. On 9/29/15 9:32 AM, Austin S Hemmelgarn wrote: > On 2015-09-28 12:45, Petros Koutoupis wrote: >> Christoph, >> >> See my replies below.... >> >> On 9/28/15 11:29 AM, Christoph Hellwig wrote: >>> Hi Petros, >>> >>> On Mon, Sep 28, 2015 at 09:12:13AM -0500, Petros Koutoupis wrote: >>>> 1. Unlike the already mainline ramdisk driver, RapidDisk is designed >>>> to be >>>> managed dynamically. That is, instead of configuring a fixed number of >>>> volumes and volume sizes as compile/boot time variables, RapidDisk >>>> will >>>> allow you to add, remove, and resize your RAM drive(s) at runtime. >>>> Besides, >>>> the built in module is designed to work with smaller sizes in mind >>>> while >>>> RapidDisk focuses on larger sizes that can reach to the multiple >>>> Gigabytes >>>> or even Terabytes. Much like the built in module, it will allocate >>>> pages as >>>> they are needed which allows for over provisioning (not that it is >>>> advised) >>>> of volume sizes. >>> The ramdisk driver allows to selects sizes and count at module load >>> load. I agree that having runtime control would be even better, but >>> that's best done by adding a runtime interface to the existing driver >>> instead of duplicating it. >> I understand the concern and I will definitely scope out this approach, >> although at the moment, I am not sure how both approaches will play nice >> together. As mentioned above, the current implementation requires the >> predefined number of ram drives with the specified size to be configured >> at boot time (or compiled into the kernel). The only wiggle room I see >> for runtime control is resizing individual volumes. > Just because there is not code currently to do dynamic > allocation/freeing of ramdisks in the current driver doesn't mean that > it isn't possible, it just means that nobody has written code to do it > yet. This functionality would be extremely useful (I often use > ramdisks on a VM host as a small amount of very fast swap space for > the virtual machines). On top of that, the deduplication would be a > wonderful feature, although it may already be indirectly implemented > through KSM (that is, when KSM is on and configured to scan > everything, I'm not sure if it scans memory used by the ramdisks or not). > To my understanding KSM is only applied to KVM deployments. One way I have seen my caching module work is users/vendors have a block device, map it to a RapidDisk RAM drive as a RAM based Write-Through caching node and in turn export it via a traditional SAN. The idea behind adding deduplication to this module is to minimize the RAM drive footprint when used as a block level cache. >>>> 2. The majority of RapidDisk code focuses on the use of Volatile >>>> memory. >>>> The support for Non-Volatile memory is a bit newer and there may be >>>> some >>>> overlap here with the recently integrated pmem code. The only >>>> advantage to >>>> having this code within RapidDisk is to provide the user with the >>>> ability >>>> to manage both technologies simultaneously, through a single >>>> interface. >>> Which really doesn't sound like a good enough reason to duplicate it. >> I do not disagree with your comment here. This component does not have >> to be patched into the mainline. >> >>>> 3. The RapidCache component is designed around the Non-Volatile >>>> functionality of RapidDisk (hence the block-level Write-Through >>>> caching). >>>> It is also coded and optimized around the RapidDisk sizes/variables, >>>> out-of-box. It is worth noting that I am in the process of expanding >>>> this >>>> module to add deduplication support. This will leverage RapidDisk's >>>> ability >>>> to allocate pages only when needed and reduce the cache's memory >>>> footprint; >>>> making more out of less. >>> Still needs some code comparism to our existing two caching solutions. >>> >>> I'd love to see you go ahead with the dynamic ramdisk configuration as >>> this is clearly a very useful feature. A caching solution that is >>> optimized for non-volatile memory does sound useful, but we'll still >>> need a patch better explaining how it actually is as useful as it might >>> sound. >> CORRECTION: I meant to say Volatile and NOT Non-Volatile. RapidCache is >> designed around Volatile memory. I guess I was a little to excited in my >> response and I do apologize for that. I will provide a code comparison >> in my next e-mail, after I go through the existing RAM drive code. > To a certain extent, I see that as potentially less useful than > optimized for non-volatile memory. While the current incarnation of > the pagecache in Linux could stand to have some serious performance > improvements (just think how fast things would be if we used ARC > instead of plain LRU), it does still do it's job well for most > workloads (although being able to tell the kernel to reserve some > portion of memory _just_ for the pagecache would be an interesting and > probably very useful feature). > My only concern with an ARC is CPU utilization. A lot more is required to manage two lists. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Austin S Hemmelgarn <ahferroin7@gmail.com> |
|---|---|
| Date | 2015-09-30 17:20 +0200 |
| Message-ID | <qerkJ-kW-5@gated-at.bofh.it> |
| In reply to | #1236392 |
[Multipart message — attachments visible in raw view] — view raw
On 2015-09-30 10:29, Petros Koutoupis wrote: > Christoph and Austin, > > You both have provided me with some valuable feedback. I will do what I > can to clean this patch up and in turn apply the same dynamic > functionality to the already in-kernel module. Also please see my > replies below. > > On 9/29/15 9:32 AM, Austin S Hemmelgarn wrote: >> On 2015-09-28 12:45, Petros Koutoupis wrote: >>> Christoph, >>> >>> See my replies below.... >>> >>> On 9/28/15 11:29 AM, Christoph Hellwig wrote: >>>> Hi Petros, >>>> >>>> On Mon, Sep 28, 2015 at 09:12:13AM -0500, Petros Koutoupis wrote: >>>>> 1. Unlike the already mainline ramdisk driver, RapidDisk is designed >>>>> to be >>>>> managed dynamically. That is, instead of configuring a fixed number of >>>>> volumes and volume sizes as compile/boot time variables, RapidDisk >>>>> will >>>>> allow you to add, remove, and resize your RAM drive(s) at runtime. >>>>> Besides, >>>>> the built in module is designed to work with smaller sizes in mind >>>>> while >>>>> RapidDisk focuses on larger sizes that can reach to the multiple >>>>> Gigabytes >>>>> or even Terabytes. Much like the built in module, it will allocate >>>>> pages as >>>>> they are needed which allows for over provisioning (not that it is >>>>> advised) >>>>> of volume sizes. >>>> The ramdisk driver allows to selects sizes and count at module load >>>> load. I agree that having runtime control would be even better, but >>>> that's best done by adding a runtime interface to the existing driver >>>> instead of duplicating it. >>> I understand the concern and I will definitely scope out this approach, >>> although at the moment, I am not sure how both approaches will play nice >>> together. As mentioned above, the current implementation requires the >>> predefined number of ram drives with the specified size to be configured >>> at boot time (or compiled into the kernel). The only wiggle room I see >>> for runtime control is resizing individual volumes. >> Just because there is not code currently to do dynamic >> allocation/freeing of ramdisks in the current driver doesn't mean that >> it isn't possible, it just means that nobody has written code to do it >> yet. This functionality would be extremely useful (I often use >> ramdisks on a VM host as a small amount of very fast swap space for >> the virtual machines). On top of that, the deduplication would be a >> wonderful feature, although it may already be indirectly implemented >> through KSM (that is, when KSM is on and configured to scan >> everything, I'm not sure if it scans memory used by the ramdisks or not). >> > To my understanding KSM is only applied to KVM deployments. One way I > have seen my caching module work is users/vendors have a block device, > map it to a RapidDisk RAM drive as a RAM based Write-Through caching > node and in turn export it via a traditional SAN. The idea behind adding > deduplication to this module is to minimize the RAM drive footprint when > used as a block level cache. KSM is usually used in KVM or other userspace VM deployments, but that is by no means the only use-case. I actually use it regularly on most of my systems, and it does help in some cases (for example, I run a lot of distributed computing apps, often using multiple instances of the same app, and those don't always share memory to the degree they should, KSM helps with this). The write-through caching may be worth looking into, although I think (not certain about this) that you can force the page cache to do write-through caching only, except that can only be done globally. It would probably be better to improve upon the existing pagecache implementation anyway, ideally, I would love to see: 1. The ability to tell the page cache to claim some minimum amount of memory that only it can use. 2. The ability to easily tune cache parameters on a per-device (or even better, per-filesystem) basis. 3. Conversion to a framework that would allow for easy development and testing of different caching algorithms (although this is probably never going to happen). >>>>> 2. The majority of RapidDisk code focuses on the use of Volatile >>>>> memory. >>>>> The support for Non-Volatile memory is a bit newer and there may be >>>>> some >>>>> overlap here with the recently integrated pmem code. The only >>>>> advantage to >>>>> having this code within RapidDisk is to provide the user with the >>>>> ability >>>>> to manage both technologies simultaneously, through a single >>>>> interface. >>>> Which really doesn't sound like a good enough reason to duplicate it. >>> I do not disagree with your comment here. This component does not have >>> to be patched into the mainline. >>> >>>>> 3. The RapidCache component is designed around the Non-Volatile >>>>> functionality of RapidDisk (hence the block-level Write-Through >>>>> caching). >>>>> It is also coded and optimized around the RapidDisk sizes/variables, >>>>> out-of-box. It is worth noting that I am in the process of expanding >>>>> this >>>>> module to add deduplication support. This will leverage RapidDisk's >>>>> ability >>>>> to allocate pages only when needed and reduce the cache's memory >>>>> footprint; >>>>> making more out of less. >>>> Still needs some code comparism to our existing two caching solutions. >>>> >>>> I'd love to see you go ahead with the dynamic ramdisk configuration as >>>> this is clearly a very useful feature. A caching solution that is >>>> optimized for non-volatile memory does sound useful, but we'll still >>>> need a patch better explaining how it actually is as useful as it might >>>> sound. >>> CORRECTION: I meant to say Volatile and NOT Non-Volatile. RapidCache is >>> designed around Volatile memory. I guess I was a little to excited in my >>> response and I do apologize for that. I will provide a code comparison >>> in my next e-mail, after I go through the existing RAM drive code. >> To a certain extent, I see that as potentially less useful than >> optimized for non-volatile memory. While the current incarnation of >> the pagecache in Linux could stand to have some serious performance >> improvements (just think how fast things would be if we used ARC >> instead of plain LRU), it does still do it's job well for most >> workloads (although being able to tell the kernel to reserve some >> portion of memory _just_ for the pagecache would be an interesting and >> probably very useful feature). >> > My only concern with an ARC is CPU utilization. A lot more is required > to manage two lists. Actually, most of the CPU time spent in an ARC cache is in the auto-tuning (the 'adaptive' bit), I've done testing just in userspace and SLRU (ARC without the adaptive sizing of the lists) uses only a little more CPU time than traditional LRU, somewhat less than ARC, and does a much better job of handling COW based workloads. COW is a tough workload for LRU caching (which is why ZFS uses ARC and not traditional LRU), as a read-modify-write cycle ends up with the read data not being needed ever again, which in turn means that MRU caching can be better in may cases for heavy read-write COW workloads.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web