Containers : cpu configuration resource


 
Thread Tools Search this Thread
Operating Systems Solaris Containers : cpu configuration resource
# 1  
Old 06-17-2009
Containers : cpu configuration resource

Hi.

I get the follow output when use the poolcfg -c info , associated to one zone-server defined :

pset revenuedb02-pset
int pset.sys_id 6
boolean pset.default false
uint pset.min 4
uint pset.max 12
string pset.units population
uint pset.load 7
uint pset.size 8
string pset.comment

My question :

Some could said me, about the mean of :

uint pset.load 7
uint pset.size 8

I dont undestand the entry description ....

Thanks in Advanced.

ANGEL
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

UNIX / LINUX OS CPU configuration details

Hi, How to find the cpu configuration details of Cores, Speed MHz, virtual processors for the following servers: LINUX OS Servers: Linux 2.6.9-89.0.3.ELsmp #1 SMP Sat Jun 13 07:05:54 EDT 2009 i686 i686 i386 GNU/Linux. (Cores, Speed, Processor) Linux 2.6.18-164.el5 #1 SMP Tue Aug 18... (5 Replies)
Discussion started by: jagtheesh
5 Replies

2. Solaris

how to add cpu in existing containers

Hi all How can we add more cpu threads( means cpus ) in existing container. (2 Replies)
Discussion started by: amity
2 Replies

3. Programming

HELP!!: CPU resource allocation between kernel modules and user mode process

Hi,all: I run my program which consists of one kernel module and one user mode process on a dual core server. The problem here is the kernel module consumes 100% of one core while the user mode process only consumes 10% of the other core, is there any solution that I can assign some computing... (1 Reply)
Discussion started by: neyshule
1 Replies

4. Solaris

how to get cpu and memory configuration on sun

Hi folks, can you please help to print cpu and memory configuration on sun host. (4 Replies)
Discussion started by: ggolub
4 Replies

5. Solaris

Solaris 8 Containers

While installing a Solaris 8 zone to a Solaris container I received this message. Anyone have this problem? Patchadd is terminating. Postprocess: Applying p2v module S31_fix_net Postprocess: Applying p2v module S32_fix_nfs Postprocess: Applying p2v module S33_fix_vfstab ... (1 Reply)
Discussion started by: cornsnap
1 Replies

6. Solaris

need help on containers/zones

Hello, I have been using sparc workstations :SUNW,Ultra-5_10 Total 4 such machines. Users use it for mpich programming and all run solaris 8 but I always have hard time maintaining these machines. Authentication for these machines work from solaris 10 using NIS and there are nfs mounts on... (14 Replies)
Discussion started by: upengan78
14 Replies

7. SCO

Raid containers and filesystems

Hi, Can anybody please help. I am running sco unix 5.0.6 on a Dell Power Edge 2400 . I have two raided mirror containers (using percraid) one 8GB the other 68GB. I have installed the sco unix os onto the 8GB container and I am now trying to create a 68GB filesystem using the 68GB raid container.... (1 Reply)
Discussion started by: falklandtim
1 Replies

8. UNIX for Dummies Questions & Answers

RedHat display cpu configuration

Hello people ! Does anyone knows how can I get the CPU configuration in the RedHat Box ??? I need know the frequence of cpu and how much cpu(s) in my box ... Thank you, Witt (2 Replies)
Discussion started by: witt
2 Replies
Login or Register to Ask a Question
poolcfg(1M)															       poolcfg(1M)

NAME
poolcfg - create and modify resource pool configuration files SYNOPSIS
/usr/sbin/poolcfg -c command [-d | [filename]] /usr/sbin/poolcfg -f command_file [-d | [filename]] /usr/sbin/poolcfg -h The poolcfg command provides configuration operations on pools and sets. These operations are performed upon an existing configuration and take the form of modifications to the specified configuration file. If you use the -d option, the modifications occur to the kernel state. Actual activation of the resulting configuration is achieved by way of the pooladm(1M) command. Pools configuration files are structured files that must have been constructed using poolcfg itself or libpool(3LIB) directly. The configurations which are created by this tool can be used by pooladm to instantiate the configuration upon a target host. The following options are supported: -c command Specify command as an editing command. See USAGE. -d Operate directly on the kernel state. No filename is allowed. -f command_file Take the commands from command_file. command_file consists of editing commands, one per line. -h Display extended information about the syntax of editing commands. Scripts A script consists of editing commands, one per line, of the following: info [entity-name] Display configuration (or specified portion) in human readable form to standard output. If no entity is specified, system information is displayed. Therefore, poolcfg -c 'info' afile is an equivalent invocation to poolcfg -c 'info system name' afile. create entity-name [property-list] Make an entity of the specified type and name. destroy entity-name Remove the specified entity. modify entity-name [property-list] Change the listed properties on the named entity. associate pool-name [resource-list] Connect one or more resources to a pool, or replace one or more existing connections. transfer to [resourcetype] name [component-list] Transfer one or more discrete components to a resource . transfer [quantity] from [resourcetype] [src] to [tgt] Transfer a resource quantity from src to tgt . transfer [quantity] to [resourcetype] [tgt] from [src] Transfer a resource quantity to tgt from src. discover Create a system entity, with one pool entity and resources to match current system configuration. All discovered resources of each resource type are recorded in the file, with the single pool referring to the default resource for each resource type. This command is a NO-OP when poolcfg operates directly on the kernel. See the -d option. You should avoid use of this command. The preferred method for creating a configuration is to export the dynamic configuration using pooladm(1M) with the -s option. rename entity-name to new-name Change the name of an entity on the system to its new name. Property Lists The property list is specified by: ( proptype name = value [ ; proptype name = value ]* ) where the last definition in the sequence for a given proptype, name pair is the one that holds. For property deletion, use ~ proptype name. Resource Lists A resource list is specified by: ( resourcetype name [ ; resourcetype name ]* ) where the last specification in the sequence for a resource is the one that holds. There is no deletion syntax for resource lists. Component Lists A component list is specified by: ( componenttype name [ ; componenttype name ]* ) where the last specification in the sequence for a resource is the one that holds. There is no deletion syntax for component lists. Recognized Entities system Machine level entity pool Named collection of resource associations Resource Types pset Processor set resource Property Types boolean Takes one of two values true or false. int A 64-bit signed integer value. uint A 64-bit unsigned integer value. string Strings are delimited by quotes ("), and support the character escape sequences defined in formats(5). float Scientific notation is not supported. Example 1: Writing a poolcfg Script The following poolcfg script creates a pool named Accounting, and a processor set, small-1. The processor set is created first, then the pool is created and associated with the set. create pset small-1 ( uint pset.min = 1 ; uint pset.max = 4) create pool Accounting associate pool Accounting ( pset small-1 ) Example 2: Reporting on pool_0 The following command reports on pool_0 to standard output in human readable form: # poolcfg -c 'info pool pool_0' /etc/pooladm.conf Example 3: Destroying pool_0 and Its Associations The following command destroys pool_0 and associations, but not the formerly associated resources: # poolcfg -c 'destroy pool pool_0' /etc/pooladm.conf Example 4: Displaying the Current Configuration The following command displays the current configuration: $ poolcfg -c 'info' /etc/pooladm.conf system example_system int system.version 1 boolean system.bind-default true string system.comment Discovered by libpool pool pool_default boolean pool.default true boolean pool.active true int pool.importance 5 string pool.comment string.pool.scheduler FSS pset pset_default pset pset_default int pset.sys_id -1 string pset.units population boolean pset.default true uint pset.max 4294967295 uint pset.min 1 string pset.comment boolean pset.escapable false uint pset.load 0 uint pset.size 2 cpu int cpu.sys_id 0 string cpu.comment cpu int cpu.sys_id 2 string cpu.comment Example 5: Moving cpu with ID 2 to Processor Set pset1 in the Kernel The following command moves cpu with ID 2 to processor set pset1 in the kernel: # poolcfg -dc 'transfer to pset pset1 ( cpu 2 )' Example 6: Moving 2 cpus from Processor Set pset1 to Processor Set pset2 in the Kernel The following command moves 2 cpus from processor set pset1 to processor set pset2 in the kernel: # poolcfg -dc 'transfer 2 from pset pset1 to pset2' See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWpool | +-----------------------------+-----------------------------+ |Interface Stability |See below. | +-----------------------------+-----------------------------+ The invocation is Evolving. The output is Unstable. pooladm(1M), poolbind(1M), libpool(3LIB), attributes(5), formats(5) 15 Feb 2005 poolcfg(1M)