Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1200233 > unrolled thread
| Started by | Vikas Shivappa <vikas.shivappa@intel.com> |
|---|---|
| First post | 2015-08-04 21:00 +0200 |
| Last post | 2015-08-07 16:50 +0200 |
| Articles | 6 — 2 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 5/9] x86/intel_rdt: Add new cgroup and Class of service management Vikas Shivappa <vikas.shivappa@intel.com> - 2015-08-04 21:00 +0200
Re: [PATCH 5/9] x86/intel_rdt: Add new cgroup and Class of service management Tejun Heo <tj@kernel.org> - 2015-08-04 21:10 +0200
Re: [PATCH 5/9] x86/intel_rdt: Add new cgroup and Class of service management Vikas Shivappa <vikas.shivappa@intel.com> - 2015-08-05 04:30 +0200
Re: [PATCH 5/9] x86/intel_rdt: Add new cgroup and Class of service management Tejun Heo <tj@kernel.org> - 2015-08-05 17:50 +0200
Re: [PATCH 5/9] x86/intel_rdt: Add new cgroup and Class of service management Vikas Shivappa <vikas.shivappa@intel.com> - 2015-08-06 23:00 +0200
Re: [PATCH 5/9] x86/intel_rdt: Add new cgroup and Class of service management Tejun Heo <tj@kernel.org> - 2015-08-07 16:50 +0200
| From | Vikas Shivappa <vikas.shivappa@intel.com> |
|---|---|
| Date | 2015-08-04 21:00 +0200 |
| Subject | Re: [PATCH 5/9] x86/intel_rdt: Add new cgroup and Class of service management |
| Message-ID | <pTPBn-2es-3@gated-at.bofh.it> |
Hello Tejun, On Sun, 2 Aug 2015, Tejun Heo wrote: > Hello, Vikas. > > On Fri, Jul 31, 2015 at 09:24:58AM -0700, Vikas Shivappa wrote: >> Yes today we dont have an alternative interface - but we can always build >> one. We simply dont have it because till now Linux kernel just tolerated the >> degradation that could have occured by cache contention and this is the >> first interface we are building. > > But we're doing it the wrong way around. You can do most of what > cgroup interface can do with systemcall-like interface with some > inconvenience. The other way doesn't really work. As I wrote in the > other reply, cgroups is a horrible programmable interface and we don't > want individual applications to interact with it directly and CAT's > use cases most definitely include each application programming its own > cache mask. I will make this more clear in the documentation - We intend this cgroup interface to be used by a root or superuser - more like a system administrator being able to control the allocation of the threads , the one who has the knowledge of the usage and being able to decide. There is already a lot of such usage among different enterprise users at Intel/google/cisco etc who have been testing the patches posted to lkml and academically there is plenty of usage as well. As a quick ref : below is a quick summary of usage Cache Allocation Technology provides a way for the Software (OS/VMM) to restrict cache allocation to a defined 'subset' of cache which may be overlapping with other 'subsets'. This feature is used when allocating a line in cache ie when pulling new data into the cache. - The tasks are grouped into CLOS (class of service). or grouped into a administrator created cgroup. - Then OS uses MSR writes to indicate the CLOSid of the thread when scheduling in (this is done by kernel) and to indicate the cache capacity associated with the CLOSid (the root user indicates the capacity for each task). Currently cache allocation is supported for L3 cache. More information can be found in the Intel SDM June 2015, Volume 3, section 17.16. Thanks, Vikas Let's build something which is simple and can be used > easily first. If this turns out to be widely useful and an overall > management capability over it is wanted, we can consider cgroups then. > > Thanks. > > -- > tejun > -- 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 | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2015-08-04 21:10 +0200 |
| Message-ID | <pTPL4-2Fi-19@gated-at.bofh.it> |
| In reply to | #1200233 |
Hello, Vikas. On Tue, Aug 04, 2015 at 11:50:16AM -0700, Vikas Shivappa wrote: > I will make this more clear in the documentation - We intend this cgroup > interface to be used by a root or superuser - more like a system > administrator being able to control the allocation of the threads , the one > who has the knowledge of the usage and being able to decide. I get that this would be an easier "bolt-on" solution but isn't a good solution by itself in the long term. As I wrote multiple times before, this is a really bad programmable interface. Unless you're sure that this doesn't have to be programmable for threads of an individual applications, this is a pretty bad interface by itself. > There is already a lot of such usage among different enterprise users at > Intel/google/cisco etc who have been testing the patches posted to lkml and > academically there is plenty of usage as well. I mean, that's the tool you gave them. Of course they'd be using it but I suspect most of them would do fine with a programmable interface too. Again, please think of cpu affinity. Thanks. -- tejun -- 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 | Vikas Shivappa <vikas.shivappa@intel.com> |
|---|---|
| Date | 2015-08-05 04:30 +0200 |
| Message-ID | <pTWCR-4ug-3@gated-at.bofh.it> |
| In reply to | #1200235 |
On Tue, 4 Aug 2015, Tejun Heo wrote: > Hello, Vikas. > > On Tue, Aug 04, 2015 at 11:50:16AM -0700, Vikas Shivappa wrote: >> I will make this more clear in the documentation - We intend this cgroup >> interface to be used by a root or superuser - more like a system >> administrator being able to control the allocation of the threads , the one >> who has the knowledge of the usage and being able to decide. > > I get that this would be an easier "bolt-on" solution but isn't a good > solution by itself in the long term. As I wrote multiple times > before, this is a really bad programmable interface. Unless you're > sure that this doesn't have to be programmable for threads of an > individual applications, Yes, this doesnt have to be a programmable interface for threads. May not be a good idea to let the threads decide the cache allocation by themselves using this direct interface. We are transfering the decision maker responsibility to the system administrator. - This interface like you said can easily bolt-on. basically an easy to use interface without worrying about the architectural details. - But still does the job. root user can allocate exclusive or overlapping cache lines to threads or group of threads. - No major roadblocks for usage as we can make the allocations like mentioned above and still keep the hierarchy etc and use it when needed. - An important factor is that it can co-exist with other interfaces like #2 and #3 for the same easily. So I donot see a reason why we should not use this. This is not meant to be a programmable interface, however it does not prevent co-existence. - If root user has to set affinity of threads that he is allocating cache, he can do so using other cgroups like cpuset or set the masks seperately using taskset. This would let him configure the cache allocation on a socket. this is a pretty bad interface by itself. > >> There is already a lot of such usage among different enterprise users at >> Intel/google/cisco etc who have been testing the patches posted to lkml and >> academically there is plenty of usage as well. > > I mean, that's the tool you gave them. Of course they'd be using it > but I suspect most of them would do fine with a programmable interface > too. Again, please think of cpu affinity. All the methodology to support the feature may need an arbitrator/agent to decide the allocation. 1. Let the root user or system administrator be the one who decides the allocation based on the current usage. We assume this to be one with administrative privileges. He could use the cgroup interface to perform the task. One way to do the cpu affinity is by mounting cpuset and rdt cgroup together. 2. Kernel automatically assigning the cache based on the priority of the apps etc. This is something which could be designed to co-exist with the #1 above much like how the cpusets cgroup co-exist with the kernel assigning cpus to tasks. (the task could be having a cache capacity mask just like the cpu affinity mask) 3. User programmable interface , where say a resource management program x (and hence apps) could link a library which supports cache alloc/monitoring etc and then try to control and monitor the resources. The arbitrator could just be the resource management interface itself or the kernel could decide. If users use this programmable interface, we need to make sure all the apps just cannot allocate resources without some interfacing agent (in which case they could interface with #2 ?). Do you think there are any issues for the user programmable interface to co-exist with the cgroup interface ? Thanks, Vikas > > Thanks. > > -- > tejun > -- 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 | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2015-08-05 17:50 +0200 |
| Message-ID | <pU975-5Ga-23@gated-at.bofh.it> |
| In reply to | #1200360 |
Hello, On Tue, Aug 04, 2015 at 07:21:52PM -0700, Vikas Shivappa wrote: > >I get that this would be an easier "bolt-on" solution but isn't a good > >solution by itself in the long term. As I wrote multiple times > >before, this is a really bad programmable interface. Unless you're > >sure that this doesn't have to be programmable for threads of an > >individual applications, > > Yes, this doesnt have to be a programmable interface for threads. May not be > a good idea to let the threads decide the cache allocation by themselves > using this direct interface. We are transfering the decision maker > responsibility to the system administrator. I'm having hard time believing that. There definitely are use cases where cachelines are trashed among service threads. Are you proclaiming that those cases aren't gonna be supported? > - This interface like you said can easily bolt-on. basically an easy to use > interface without worrying about the architectural details. But it's ripe with architectural details. What I meant by bolt-on was that this is a shortcut way of introducing this feature without actually worrying about how this will be used by applications and that's not a good thing. We need to be worrying about that. > - But still does the job. root user can allocate exclusive or overlapping > cache lines to threads or group of threads. > - No major roadblocks for usage as we can make the allocations like > mentioned above and still keep the hierarchy etc and use it when needed. > - An important factor is that it can co-exist with other interfaces like #2 > and #3 for the same easily. So I donot see a reason why we should not use > this. > This is not meant to be a programmable interface, however it does not > prevent co-existence. I'm not saying they are mutually exclusive but that we're going overboard in this direction when programmable interface should be the priority. While this mostly happened naturally for other resources because cgroups was introduced later but I think there's a general rule to follow there. > - If root user has to set affinity of threads that he is allocating cache, > he can do so using other cgroups like cpuset or set the masks seperately > using taskset. This would let him configure the cache allocation on a > socket. Well, root can do whatever it wants with programmable interface too. The way things are designed, even containment isn't an issue, assign an ID to all processes by default and change the allocation on that. > this is a pretty bad interface by itself. > > > >>There is already a lot of such usage among different enterprise users at > >>Intel/google/cisco etc who have been testing the patches posted to lkml and > >>academically there is plenty of usage as well. > > > >I mean, that's the tool you gave them. Of course they'd be using it > >but I suspect most of them would do fine with a programmable interface > >too. Again, please think of cpu affinity. > > All the methodology to support the feature may need an arbitrator/agent to > decide the allocation. > > 1. Let the root user or system administrator be the one who decides the > allocation based on the current usage. We assume this to be one with > administrative privileges. He could use the cgroup interface to perform the > task. One way to do the cpu affinity is by mounting cpuset and rdt cgroup > together. If you factor in threads of a process, the above model is fundamentally flawed. How would root or any external entity find out what threads are to be allocated what? Each application would constnatly have to tell an external agent about what its intentions are. This might seem to work in a limited feature testing setup where you know everything about who's doing what but is no way a widely deployable solution. This pretty much degenerates into #3 you listed below. > 2. Kernel automatically assigning the cache based on the priority of the apps > etc. This is something which could be designed to co-exist with the #1 above > much like how the cpusets cgroup co-exist with the kernel assigning cpus to > tasks. (the task could be having a cache capacity mask just like the cpu > affinity mask) I don't think CAT would be applicable in this manner. BE allocation is what the CPU is doing by default already. I'm highly doubtful something like CAT would be used automatically in generic systems. It requires fairly specific coordination after all. > 3. User programmable interface , where say a resource management program > x (and hence apps) could link a library which supports cache alloc/monitoring > etc and then try to control and monitor the resources. The arbitrator could just > be the resource management interface itself or the kernel could decide. > > If users use this programmable interface, we need to make sure all the apps > just cannot allocate resources without some interfacing agent (in which case > they could interface with #2 ?). > > Do you think there are any issues for the user programmable interface to > co-exist with the cgroup interface ? Isn't that a weird question to ask when there's no reason to rush to a full-on cgroup controller? We can start with something simpler and more specific and easier for applications to program against. If the hardware details make it difficult to design properly abstracted interface around, make it a char device node, for example, and let userland worry about how to control access to it. If you stick to something like that, exposing most of hardware details verbatim is fine. People know they're dealing with something very specific with those types of interfaces. Thanks. -- tejun -- 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 | Vikas Shivappa <vikas.shivappa@intel.com> |
|---|---|
| Date | 2015-08-06 23:00 +0200 |
| Message-ID | <pUAqC-3s1-27@gated-at.bofh.it> |
| In reply to | #1200928 |
On Wed, 5 Aug 2015, Tejun Heo wrote: > Hello, > > On Tue, Aug 04, 2015 at 07:21:52PM -0700, Vikas Shivappa wrote: >>> I get that this would be an easier "bolt-on" solution but isn't a good >>> solution by itself in the long term. As I wrote multiple times >>> before, this is a really bad programmable interface. Unless you're >>> sure that this doesn't have to be programmable for threads of an >>> individual applications, >> >> Yes, this doesnt have to be a programmable interface for threads. May not be >> a good idea to let the threads decide the cache allocation by themselves >> using this direct interface. We are transfering the decision maker >> responsibility to the system administrator. > > I'm having hard time believing that. There definitely are use cases > where cachelines are trashed among service threads. Are you > proclaiming that those cases aren't gonna be supported? Please refer to the noisy neighbour example i give here to help resolve thrashing by a noisy neighbour - http://marc.info/?l=linux-kernel&m=143889397419199 and the reference http://www.intel.com/content/www/us/en/communications/cache-allocation-technology-white-paper.html > >> - This interface like you said can easily bolt-on. basically an easy to use >> interface without worrying about the architectural details. > > But it's ripe with architectural details. If specifying the bitmask is an issue , it can easily be addressed by writing a script which calculates the bitmask to size - like mentioned here http://marc.info/?l=linux-kernel&m=143889397419199 What I meant by bolt-on was > that this is a shortcut way of introducing this feature without > actually worrying about how this will be used by applications and > that's not a good thing. We need to be worrying about that. > >> - But still does the job. root user can allocate exclusive or overlapping >> cache lines to threads or group of threads. >> - No major roadblocks for usage as we can make the allocations like >> mentioned above and still keep the hierarchy etc and use it when needed. >> - An important factor is that it can co-exist with other interfaces like #2 >> and #3 for the same easily. So I donot see a reason why we should not use >> this. >> This is not meant to be a programmable interface, however it does not >> prevent co-existence. > > I'm not saying they are mutually exclusive but that we're going > overboard in this direction when programmable interface should be the > priority. While this mostly happened naturally for other resources > because cgroups was introduced later but I think there's a general > rule to follow there. Right , the cache allocation cannot be treated like memory like explained here in 1.3 and 1.4 http://marc.info/?l=linux-kernel&m=143889397419199 > >> - If root user has to set affinity of threads that he is allocating cache, >> he can do so using other cgroups like cpuset or set the masks seperately >> using taskset. This would let him configure the cache allocation on a >> socket. > > Well, root can do whatever it wants with programmable interface too. > The way things are designed, even containment isn't an issue, assign > an ID to all processes by default and change the allocation on that. > >> this is a pretty bad interface by itself. >>> >>>> There is already a lot of such usage among different enterprise users at >>>> Intel/google/cisco etc who have been testing the patches posted to lkml and >>>> academically there is plenty of usage as well. >>> >>> I mean, that's the tool you gave them. Of course they'd be using it >>> but I suspect most of them would do fine with a programmable interface >>> too. Again, please think of cpu affinity. >> >> All the methodology to support the feature may need an arbitrator/agent to >> decide the allocation. >> >> 1. Let the root user or system administrator be the one who decides the >> allocation based on the current usage. We assume this to be one with >> administrative privileges. He could use the cgroup interface to perform the >> task. One way to do the cpu affinity is by mounting cpuset and rdt cgroup >> together. > > If you factor in threads of a process, the above model is > fundamentally flawed. How would root or any external entity find out > what threads are to be allocated what? the process ID can be added to the cgroup together with all its threads as shown in example of cgroup usage in (2) here - In most cases in the cloud you will be able to decide based on what workloads are running - see the example 1.5 here http://marc.info/?l=linux-kernel&m=143889397419199 Each application would > constnatly have to tell an external agent about what its intentions > are. This might seem to work in a limited feature testing setup where > you know everything about who's doing what but is no way a widely > deployable solution. This pretty much degenerates into #3 you listed > below. App may not be the best one to decide 1.1 and 1.2 here http://marc.info/?l=linux-kernel&m=143889397419199 > >> 2. Kernel automatically assigning the cache based on the priority of the apps >> etc. This is something which could be designed to co-exist with the #1 above >> much like how the cpusets cgroup co-exist with the kernel assigning cpus to >> tasks. (the task could be having a cache capacity mask just like the cpu >> affinity mask) > > I don't think CAT would be applicable in this manner. BE allocation > is what the CPU is doing by default already. I'm highly doubtful > something like CAT would be used automatically in generic systems. It > requires fairly specific coordination after all. The 3 items were generalized at high level to show the system management vs user doing it or . I am not saying it should be done this way - Thanks, Vikas > >> 3. User programmable interface , where say a resource management program >> x (and hence apps) could link a library which supports cache alloc/monitoring >> etc and then try to control and monitor the resources. The arbitrator could just >> be the resource management interface itself or the kernel could decide. >> >> If users use this programmable interface, we need to make sure all the apps >> just cannot allocate resources without some interfacing agent (in which case >> they could interface with #2 ?). >> >> Do you think there are any issues for the user programmable interface to >> co-exist with the cgroup interface ? > > Isn't that a weird question to ask when there's no reason to rush to a > full-on cgroup controller? We can start with something simpler and > more specific and easier for applications to program against. If the > hardware details make it difficult to design properly abstracted > interface around, make it a char device node, for example, and let > userland worry about how to control access to it. If you stick to > something like that, exposing most of hardware details verbatim is > fine. People know they're dealing with something very specific with > those types of interfaces. > > Thanks. > > -- > tejun > -- 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 | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2015-08-07 16:50 +0200 |
| Message-ID | <pUR86-2r6-23@gated-at.bofh.it> |
| In reply to | #1202067 |
Hello, On Thu, Aug 06, 2015 at 01:58:39PM -0700, Vikas Shivappa wrote: > >I'm having hard time believing that. There definitely are use cases > >where cachelines are trashed among service threads. Are you > >proclaiming that those cases aren't gonna be supported? > > Please refer to the noisy neighbour example i give here to help resolve > thrashing by a noisy neighbour - > http://marc.info/?l=linux-kernel&m=143889397419199 I don't think that's relevant to the discussion. Implement a taskset like tool and the administrator can deal with it just fine. As I wrote multiple times now, people have been dealing with CPU affinity fine w/o cgroups. Sure, cgroups do add on top but it's an a lot more complex facility and not a replacement for a more basic control mechanism. > >>- This interface like you said can easily bolt-on. basically an easy to use > >>interface without worrying about the architectural details. > > > >But it's ripe with architectural details. > > If specifying the bitmask is an issue , it can easily be addressed by > writing a script which calculates the bitmask to size - like mentioned here > http://marc.info/?l=linux-kernel&m=143889397419199 Let's say we fully virtualize cache partitioning so that each user can express what they want and the kernel can compute and manage the closest mapping supportable by the underlying hardware. That should be doable but I don't think that's what we want at this point. This, at least for now, is a niche feature which requires specific configurations to be useful and while useful to certain narrow use cases unlikely to be used across the board. Given that, we don't want to overengineer the solution. Implement something simple and specific. We don't yet even know the full usefulness or use cases of the feature. It doesn't make sense to overcommit to complex abstractions and mechanisms when there's a fairly good chance that our understanding of the problem itself is very porous. This applies the same to making it part of cgroups. It's a lot more complex and we end up committing a lot more than implementing something simple and specific. Let's please keep it simple. > >I'm not saying they are mutually exclusive but that we're going > >overboard in this direction when programmable interface should be the > >priority. While this mostly happened naturally for other resources > >because cgroups was introduced later but I think there's a general > >rule to follow there. > > Right , the cache allocation cannot be treated like memory like explained > here in 1.3 and 1.4 > http://marc.info/?l=linux-kernel&m=143889397419199 Who said that it could be? If it actually were a resource which is as ubiquitous, flexible and dividable as memory, cgroups would be an a lot better fit. > >If you factor in threads of a process, the above model is > >fundamentally flawed. How would root or any external entity find out > >what threads are to be allocated what? > > the process ID can be added to the cgroup together with all its threads as > shown in example of cgroup usage in (2) here - And how does an external entity find out which ID should be put where? This is a knowledge only known to the process itself. That's what I meant by going this route requires individual applications communicating with external agents. > In most cases in the cloud you will be able to decide based on what > workloads are running - see the example 1.5 here > > http://marc.info/?l=linux-kernel&m=143889397419199 Sure, that's an way outer scope. The point was that this can't handle in-process scope. > Each application would > >constnatly have to tell an external agent about what its intentions > >are. This might seem to work in a limited feature testing setup where > >you know everything about who's doing what but is no way a widely > >deployable solution. This pretty much degenerates into #3 you listed > >below. > > App may not be the best one to decide 1.1 and 1.2 here > http://marc.info/?l=linux-kernel&m=143889397419199 That paragraph just shows how little is understood, so you can't imagine a situation where threads of a process agree upon how they'll use cache to improve performance? Threads of the same program do things like this all the time with different types of resources. This is a large portion of what server software programmers do - making the threads and other components behave in a way that maxmizes the efficacy of the underlying system. Thanks. -- tejun -- 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] | [standalone]
Back to top | Article view | linux.kernel
csiph-web