Category,"name
(Parameter to be adjusted)","desc
(Parameter description)","get
(Command for querying parameter values.)","set
(Command for setting parameter values)",needrestart(Whether require restart or not),type (discrete/continuous),"options
(For the discrete type, use"";""to split different values.)","dtype
(For discrete, the parameter value type can only be int or string.)","scope
(Minimum value of the parameter)","scope
(Maximum Value of the parameter)","step
(Step of the parameter value)","items
(Enumerated values out of parameter values. Use "";"" to split different values)",select (whether to select the parameter),
Kernel scheduling parameters,kernel.sched_migration_cost_ns,"This variable is used to determine whether a process is still hot. If the running time of a process is shorter than the value of this variable, the kernel considers that the code of the process is still in the cache. Therefore, the process is still hot and is not considered during migration.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,100000,5000000,100000,,yes,
,kernel.sched_cfs_bandwidth_slice_us,Fixed size of the time slice applied for from the global time pool,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1000,50000,1000,,yes,
,kernel.sched_wakeup_granularity_ns,"This variable indicates the base of the minimum time that a process should run after it is woken up. The smaller the base, the higher the probability of preemption.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1000000,100000000,1000000,,yes,
,kernel.sched_latency_ns,Maximum running time of a running process.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1000000,100000000,1000000,,yes,
,kernel.sched_nr_migrate,How Many Processes Can Be Moved to Another CPU at a Time When Load Balancing Is Performed in the Case of Multiple CPUs?,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1,128,1,,yes,
,kernel.sched_min_granularity_ns,"Minimum running time of a process on the CPU. During this time, the kernel does not proactively select other processes for scheduling (in nanoseconds).",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1000000,100000000,1000000,,yes,
,kernel.sched_tunable_scaling,"Update method used when the kernel attempts to adjust the values of sched_min_granularity, sched_latency, and sched_wakeup_granularity. The value 0 indicates that the value is not adjusted, and the value 1 indicates that the value is adjusted based on the number of CPUs, 2: The linear proportion is adjusted based on the number of CPUs.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1; 2,string,,,,,yes,
Network adapter parameters,transparent_hugepage.defrag,Enabling or Disabling Transparent Hugepages,cat /sys/kernel/mm/transparent_hugepage/defrag | sed -n 's/.*\[\(.*\)\].*/\1/p',echo $value > /sys/kernel/mm/transparent_hugepage/defrag,FALSE,discrete,always;defer;defer+madvise;madvise;never,string,,,,,yes,
,transparent_hugepage.enabled,Enabling or Disabling Transparent Hugepages,cat /sys/kernel/mm/transparent_hugepage/enabled | sed -n 's/.*\[\(.*\)\].*/\1/p',echo $value > /sys/kernel/mm/transparent_hugepage/enabled,FALSE,discrete,always; madvise; never,string,,,,,yes,
,net.netfilter.nf_conntrack_max,"Maximum number of tracing connections
When a container is used, the nf_conntrack module cannot be disabled. Therefore, kernel parameters related to nf_conntrack need to be added to the /etc/sysctl.conf file to prevent packet loss caused by full table records.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,67108864,1,,yes,
,net.mtu,"Indicates the maximum transmission unit of the network,",ifconfig @netdev | grep mtu | awk '{print $4}',ifconfig @netdev mtu $value,FALSE,discrete,,int,500,9000,500,,yes,
,net.tx-frames,Configuring NIC Interrupt Combination,ethtool -c @netdev | grep tx-frames: | awk '{print $2}',ethtool -C @netdev tx-frames $value,FALSE,discrete,,int,0,64,2,,yes,
,net.rx-frames,Configuring NIC Interrupt Combination,ethtool -c @netdev | grep rx-frames: | awk '{print $2}',ethtool -C @netdev rx-frames $value,FALSE,discrete,,int,0,64,2,,yes,
,net.tx-usecs,Configuring NIC Interrupt Combination,ethtool -c @netdev | grep tx-usecs: | awk '{print $2}',ethtool -C @netdev tx-usecs $value,FALSE,discrete,,int,2,64,2,,yes,
,net.rx-usecs,Configuring NIC Interrupt Combination,ethtool -c @netdev | grep rx-usecs: | awk '{print $2}',ethtool -C @netdev rx-usecs $value,FALSE,discrete,,int,2,64,2,,yes,
,net.combined,Set the length and number of NIC queues.,ethtool -l @netdev | grep Combined | awk '{print $2}' | tail -n 1,ethtool -L @netdev combined $value,FALSE,discrete,,int,1,32,1,,yes,
,net.adaptive-rx,Sets whether to enable interrupt combination auto-sensing for a NIC.,ethtool -c @netdev | grep Adaptive | awk '{print $3}',ethtool -C @netdev adaptive-rx $value,FALSE,discrete,on; off,string,,,,,yes,
,net.adaptive-tx,Sets whether to enable interrupt combination auto-sensing for a NIC.,ethtool -c @netdev | grep Adaptive | awk '{print $5}',ethtool -C @netdev adaptive-tx $value,FALSE,discrete,on; off,string,,,,,yes,
,net.tx-ring buffer size,Indicates the ring buffer size of the NIC.,ethtool -g @netdev | tail -n 2 | head -n 1 | awk '{print $2}',ethtool -G @netdev tx $value,FALSE,discrete,,int,256,16384,256,,yes,
,net.rx-ring buffer size,Indicates the ring buffer size of the NIC.,ethtool -g @netdev | tail -n 5 | head -n 1 | awk '{print $2}',ethtool -G @netdev rx $value,FALSE,discrete,,int,256,16384,256,,yes,
,net.generic-receive-offload,Whether reassembling small packets into larger ones,"ethtool -k @netdev | grep ""generic-receive-offload"" | awk '{print $2}'",ethtool -K @netdev gro $value,FALSE,discrete,on;off,string,,,,,yes,
,net.generic-segmentation-offload,Whether reassembling small packets into larger ones,"ethtool -k @netdev | grep ""generic-segmentation-offload"" | awk '{print $2}'",ethtool -K @netdev gso $value,FALSE,discrete,on;off,string,,,,,yes,
,net.tcp-segmentation-offload,Wheth allow a device to segment a single frame into multiple frames with a data payload size specified in skb_shinfo()->gso_size.,"ethtool -k @netdev | grep ""tcp-segmentation-offload"" | awk '{print $2}'",ethtool -K @netdev tso $value,FALSE,discrete,on;off,string,,,,,yes,
,sunrpc.tcp_slot_table_entries,"The Linux NFS client controls the number of concurrent NFS requests. If this parameter is set to a small value, the I/O performance is poor. By default, the maximum value of this parameter for the compiled kernel is 256. You can increase the value of this parameter to achieve better performance.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,4,256,4,,no,
,sunrpc.udp_slot_table_entries,"The Linux NFS client controls the number of concurrent NFS requests. If this parameter is set to a small value, the I/O performance is poor. By default, the maximum value of this parameter for the compiled kernel is 256. You can increase the value of this parameter to achieve better performance.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,4,256,4,,no,
Kernel resource parameters,kernel.pid_max,Maximum process ID.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1048576,4194304,1048576,,yes,
,kernel.shmmni,Maximum number of shared memory segments in the system.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1024,16384,1024,,yes,
,kernel.shmmax,"The maximum size, in bytes, of the shared memory segment allowed by the system.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,17179869184,68719476736,17179869184,,yes,
,kernel.shmall,The total amount of shared memory available on the system in bytes,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1073741824,8589934592,1073741824,,yes,
,kernel.core_uses_pid,"Whether to add the application pid to the core file name as an extension.
0: no
1: add",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,kernel.msgmni,System Message Queue Length,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,8000,128000,8000,,yes,
,kernel.msgmax,Maximum number of bytes of a single message in a message queue.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,4096,1048576,4096,,yes,
,kernel.msgmnb,Maximum length of bytes in a single message queue,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,4096,1048576,4096,,yes,
,kernel.sem,"The file contains four values:
1. Maximum number of signals of the same type (semmsl)
2. Maximum number of signals in the system, =semmni*semmsl (semmns)
3. Maximum number of operations (maximum number of semaphores that can be invoked) contained in each system invoking (semopm)
4. Maximum number of signal types in the system. A signal identifier represents a type (semmni).",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,16000 512000000 256 16000;32000 1024000000 500 32000;64000 2048000000 1000 64000,string,,,,,yes,
,kernel.hung_task_timeout_secs,"Timeout interval of a hung_task (in seconds). When a process is in the TASK_UNINTERRUPTIBLE state for a period longer than the timeout interval, a hung_task occurs.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,30,1200,30,,yes,
,kernel.nmi_watchdog,"Enabling nmi_watchdog
0: disabled
1: enabled",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,kernel.sched_rt_runtime_us,"This parameter, together with sched_rt_period, determines the period of the real-time process.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,950000,1000000,10000,,yes,
,kernel.timer_migration,Disable Clock Migration,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,kernel.threads-max,Maximum number of processes (including threads) in the system,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,655360,65536000,655360,,yes,
,kernel.sysrq,"The file specifies a non-zero value, which activates the sysrq key on the keyboard.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,kernel.sched_autogroup_enabled,"When enabled, the kernel creates task groups to optimize desktop program scheduling.
0: disabled
1: enabled",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,kernel.numa_balancing,Specifies whether to enable NUMA automatic balancing.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,kernel.randomize_va_space,Setting Memory Address Randomization,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,2,1,,yes,
,kernel.dmesg_restrict,"Which users are restricted from viewing syslogs?
0: no restriction
1: Only privileged users can view the information.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0;1,string,,,,,yes,
Virtual memory and buffer/cache parameters,vm.swappiness,A larger value indicates that the swap partition is used more actively. A smaller value indicates that the memory is used more actively.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,100,1,,yes,
,vm.vfs_cache_pressure,Indicates the tendency of the kernel to reclaim the memory used for directory and inode cache.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,500,50,,yes,
,vm.dirty_background_ratio,"When the percentage of dirty pages reaches dirty_background_ratio, the write function wakes up the flusher thread of the kernel to write back dirty page data until the percentage is less than the value of dirty_background_ratio.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,100,1,,yes,
,vm.dirty_ratio,The percentage of dirty data in the memory cannot exceed this value.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,100,1,,yes,
,vm.stat_interval,VM information update frequency (in seconds),sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1,100,1,,yes,
,vm.dirty_expire_centisecs,"Expiration time of dirty data. When the flusher thread of the kernel is woken up after the expiration time, dirty data is written back to the disk. The unit is 1% second.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,100,1000,100,,yes,
,vm.dirty_writeback_centisecs,Sets the interval for waking up the flusher kernel thread. This thread is used to write dirty pages back to the disk. The unit is 1% second.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,100,1000,100,,yes,
,vm.overcommit_ratio,"When overcommit_memory is set to 2, the percentage of physical RAM that is considered is set.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,100,10,,yes,
,vm.overcommit_memory,Indicates whether to allow excessive memory allocation. The process can allocate more memory than it actually uses.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,vm.min_free_kbytes,"Size of memory reserved in each memory area, in KB.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,10240,1024000,10240,,yes,
,vm.page-cluster,Number of pages written to the swap partition each time.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,8,1,,yes,
,vm.max_map_count,Defines the maximum memory area that a process can have.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,100000,10000000,100000,,yes,
,vm.zone_reclaim_mode,This parameter is valid only when CONFIG_NUMA is enabled. zone_reclaim_mode is used to control how to reclaim memory when the memory domain OOM is enabled.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1; 2; 4,string,,,,,yes,
,vm.watermark_scale_factor,"Controls the radical degree of the kswapd process, that is, how much memory needs to be released for the system (NUMA node) from wakeup to hibernation.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,10,1000,10,,yes,
,vm.numa_stat,"This command is used to set the data statistics during NUMA running. When the memory is insufficient, this command can be set to 0 to reduce the statistics precision.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,vm.drop_caches,Releases the cache. The cache is released each time the parameter is modified.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,1; 2; 3,string,,,,,yes,
File system parameters,fs.inotify.max_user_watches,Sets the number of processes for each user to run the inotifywait or inotifywatch command.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,4096,819200,4096,,yes,
,fs.nr_open,Maximum number of file handles that can be concurrently opened by a process,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,10240,1024000,10240,,yes,
,fs.file-max,Number of file handles that can be opened by all processes in the system at the same time,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,102400,10240000,102400,,yes,
,fs.aio-max-nr,Maximum number of AIO requests,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,102400,10240000,102400,,yes,
,fs.inotify.max_user_instances,Maximum number of inotify instances that can be started by each user,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,64,65535,64,,yes,
,fs.suid_dumpable,"This value can be used to query and set the core dump mode for setuid or otherwise protected/tainted binaries.
0: default
1: debug
2: suidsafe",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,2,1,,yes,
Block storage device parameters,blockdev,Disk prefetch settings,/sbin/blockdev --getra /dev/@block,/sbin/blockdev --setra $value /dev/@block,FALSE,discrete,,int,0,2147483648,8,,yes,
,block.low_latency,Enables (1) or disables (0) the low latency mode,cat /sys/block/@block/queue/iosched/low_latency,echo $value > /sys/block/@block/queue/iosched/low_latency,FALSE,discrete,0;1,string,,,,,no,
,block.fifo_batch,"This parameter is valid only for the Deadline scheduling policy.
The number of read or write operations issued in a single batch. The default value is 16. The higher the value, the higher the throughput, but also increases the latency.",cat /sys/block/@block/queue/iosched/fifo_batch,echo $value > /sys/block/@block/queue/iosched/fifo_batch,FALSE,discrete,,int,1,128,1,,yes,
,block.front_merges,"This parameter is valid only for the Deadline scheduling policy.
When a new request enters the queue, it can be merged if the requested sector is close to the current sector. The merge can be backward or forward. In some scenarios, forward merging is unnecessary. In this case, you can set this parameter to disable forward merging. By default, the deadline supports forward merging. If this parameter is set to 0, forward merging is disabled.",cat /sys/block/@block/queue/iosched/front_merges,echo $value > /sys/block/@block/queue/iosched/front_merges,FALSE,discrete,0;1,string,,,,,yes,
,block.read_expire,"This parameter is valid only for the Deadline scheduling policy.
This parameter specifies the expiration time of a read request, in milliseconds.",cat /sys/block/@block/queue/iosched/read_expire,echo $value > /sys/block/@block/queue/iosched/read_expire,FALSE,discrete,,int,100,1000,100,,yes,
,block.write_expire,"This parameter is valid only for the Deadline scheduling policy.
This parameter specifies the expiration time of a write request, in milliseconds.",cat /sys/block/@block/queue/iosched/write_expire,echo $value > /sys/block/@block/queue/iosched/write_expire,FALSE,discrete,,int,1000,5000,10000,,no,
,block.writes_starved,"This parameter is valid only for the Deadline scheduling policy.
This parameter specifies the number of read requests that can be sent after the read and write queues are not empty. A larger value indicates a higher priority for read batch processing.",cat /sys/block/@block/queue/iosched/writes_starved,echo $value > /sys/block/@block/queue/iosched/writes_starved,FALSE,discrete,,int,1,10,1,,yes,
,block.back_seek_max,"This parameter is valid only for the CFQ/BFQ scheduling policy.
Maximum range of backward addressing for the head",cat /sys/block/@block/queue/iosched/back_seek_max,echo $value > /sys/block/@block/queue/iosched/back_seek_max,FALSE,discrete,,int,4096,1048576,4096,,no,
,block.back_seek_penalty,"This parameter is valid only for the CFQ/BFQ scheduling policy.
Penalty coefficient for backward addressing. This value is compared with forward addressing. The preceding two parameters are set to prevent slow addressing caused by head seek jitter.",cat /sys/block/@block/queue/iosched/back_seek_penalty,echo $value > /sys/block/@block/queue/iosched/back_seek_penalty,FALSE,discrete,,int,1,16,1,,no,
,block.fifo_expire_async,"This parameter is valid only for the CFQ/BFQ scheduling policy.
Sets the timeout period of an asynchronous request. Synchronous requests and asynchronous requests are processed in different queues. During scheduling, the cfq process processes synchronous requests first and then asynchronous requests unless the asynchronous requests meet the preceding conditions.",cat /sys/block/@block/queue/iosched/fifo_expire_async,echo $value > /sys/block/@block/queue/iosched/fifo_expire_async,FALSE,discrete,,int,50,1000,50,,no,
,block.fifo_expire_sync,"This parameter is valid only for the CFQ/BFQ scheduling policy.
Set the timeout period of the synchronization request.",cat /sys/block/@block/queue/iosched/fifo_expire_sync,echo $value > /sys/block/@block/queue/iosched/fifo_expire_sync,FALSE,discrete,,int,25,500,25,,no,
,block.timeout_sync,"This parameter is valid only for the CFQ/BFQ scheduling policy.
The maximum time allocated to a device. When the addressing time of a device is long, increasing the time can improve the throughput.",cat /sys/block/@block/queue/iosched/timeout_sync,echo $value > /sys/block/@block/queue/iosched/timeout_sync,FALSE,discrete,,int,16,1024,16,,no,
,block.max_budget,"This parameter is valid only for the CFQ/BFQ scheduling policy.
Maximum number of queue services that can be allocated to a queue",cat /sys/block/@block/queue/iosched/max_budget,echo $value > /sys/block/@block/queue/iosched/max_budget,FALSE,discrete,,int,0,0,0,,no,
,block.slice_idle,"This parameter is valid only for the CFQ/BFQ scheduling policy.
A wait time is set. This allows the cfq to wait for a period of time before switching the cfq_queue or service tree to improve the throughput of the HDD.",cat /sys/block/@block/queue/iosched/slice_idle,echo $value > /sys/block/@block/queue/iosched/slice_idle,FALSE,discrete,,int,0,16,2,,no,
,block.slice_idle_us,"This parameter is valid only for the CFQ/BFQ scheduling policy.
Waiting time, in microseconds.",cat /sys/block/@block/queue/iosched/slice_idle_us,echo $value > /sys/block/@block/queue/iosched/slice_idle_us,FALSE,discrete,,int,1000,16000,1000,,no,
,block.strict_guarantees,"This parameter is valid only for the CFQ/BFQ scheduling policy.
When the request queue is empty, the request queue remains idle.",cat /sys/block/@block/queue/iosched/strict_guarantees,echo $value > /sys/block/@block/queue/iosched/strict_guarantees,FALSE,discrete,0;1,string,,,,,no,
,block.read_lat_nsec,"This parameter is valid only for the Kyber scheduling policy.
Target delay of the read request, in ns.",cat /sys/block/@block/queue/iosched/read_lat_nsce,echo $value > /sys/block/@block/queue/iosched/read_lat_nsec,FALSE,discrete,,int,1000000,100000000,1000000,,no,
,block.write_lat_nsec,"This parameter is valid only for the Kyber scheduling policy.
Target delay of a synchronous write request, in ns.",cat /sys/block/@block/queue/iosched/write_lat_nsec,echo $value > /sys/block/@block/queue/iosched/write_lat_nsec,FALSE,discrete,,int,2000000,100000000,2000000,,no,
,block.io_poll_delay,"If polling is enabled, this parameter controls which type of polling is performed. The default value is -1, indicating traditional polling.
In this mode, the CPU will not give up any time to repeatedly ask for completion.
If set to 0, the mixed polling mode is used, and the kernel attempts to guess when the I/O is complete based on the training. Based on this guess, the kernel puts the process that made the IO request to sleep for a period of time before entering a traditional polling cycle. This mode may be slower than the purely traditional polling mode, but it may be more efficient. If this value is set to a value greater than 0, the kernel sets the process that issued the IO request to sleep for so many microseconds before entering a traditional poll.",cat /sys/block/@block/queue/io_poll_delay,echo $value > /sys/block/@block/queue/io_poll_delay,FALSE,discrete,0;-1,string,,,,,no,
,block.io_poll,Whether to use polling or interrupt processing for block devices. The polling policy is preferred for NVMe SSD devices.,cat /sys/block/@block/queue/io_poll,echo $value > /sys/block/@block/queue/io_poll,FALSE,discrete,0; 1,string,,,,,no,
,block.max_sectors_kb,Specifies the maximum size (in kilobytes) of the I/O request. The default value is 512 KB.,cat /sys/block/@block/queue/max_sectors_kb,echo $value > /sys/block/@block/queue/max_sectors_kb,FALSE,discrete,,int,64,1024,64,,yes,
,block.queue_depth,Block device queue depth,cat /sys/block/@block/device/queue_depth,echo $value > /sys/block/@block/device/queue_depth,FALSE,discrete,,int,64,1024,64,,yes,
,block.nr_requests,Limits the maximum number of read and write requests queued at the same time.,cat /sys/block/@block/queue/nr_requests,echo $value > /sys/block/@block/queue/nr_requests,FALSE,discrete,,int,128,2048,64,,yes,
,block.read_ahead_kb,Defines the number of kilobytes that the operating system will prefetch during the sequential read operation phase to store information that may be needed immediately in the page cache.,cat /sys/block/@block/queue/read_ahead_kb,echo $value > /sys/block/@block/queue/read_ahead_kb,FALSE,discrete,,int,0,65536,1024,,yes,
,block.rq_affinity,Whether I/O can be performed on different processors is not limited to the processor that sends the I/O request.,cat /sys/block/@block/queue/rq_affinity,echo $value > /sys/block/@block/queue/rq_affinity,FALSE,discrete,0; 1; 2,string,,,,,yes,
,block.add_random,Some I/O events affect the entropy pool of /dev/random.,cat /sys/block/@block/queue/add_random,echo $value > /sys/block/@block/queue/add_random,FALSE,discrete,0; 1,string,,,,,yes,
,block.rotational,"Whether the storage device is a mechanical hard disk. If the storage device is a solid state disk, set this parameter to 0.",cat /sys/block/@block/queue/rotational,echo $value > /sys/block/@block/queue/rotational,FALSE,discrete,0; 1,string,,,,,yes,
,block.scheduler,Configure I/O scheduling. Deadline or noop is more suitable for MySQL database scenarios.,cat /sys/block/@block/queue/scheduler | sed -n 's/.*\[\(.*\)\].*/\1/p',echo $value > /sys/block/@block/queue/scheduler,FALSE,discrete,mq-deadline; kyber; bfq; none,string,,,,,yes,
,block.write_cache,Whether to use the write back or write through cache policy,cat /sys/block/@block/queue/write_cache,echo $value > /sys/block/@block/queue/write_cache,FALSE,discrete,write back; write through,string,,,,,yes,
,block.nomerges,"Most workloads benefit from request merges. However, disabling merges helps for debugging purposes. You can set this parameter to 0 to disable combination. Enabled by default (set to 1).",cat /sys/block/@block/queue/nomerges,echo $value > /sys/block/@block/queue/nomerges,FALSE,discrete,0; 1; 2,string,,,,,yes,
Parameters related to the network software stack,net.core.netdev_budget,Number of network packets processed in each software interrupt,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,100,1000,100,,yes,
,net.core.optmem_max,Maximum size of the buffer allowed by each socket(in bytes). ,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,20480,204800,20480,,yes,
,net.core.wmem_max,"The maximum size of the system socket write buffer is increased to prevent buffer overflow caused by a large number of new connections. As a result, connections cannot be established.
The default value is 229376. You are advised to change the value to 16777216. ",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1048576,67108864,1048576,,yes,
,net.core.wmem_default,"Default TCP send window size (bytes)
",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,8192,1048576,8192,,yes,
,net.core.rmem_default,Sets the default buffer size (bytes) of the receive socket. ,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,8192,1048576,8192,,yes,
,net.core.rmem_max,"Maximum system socket read buffer
The default value is 229376. You are advised to change the value to 16777216.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1048576,67108864,1048576,,yes,
,net.core.netdev_max_backlog,Maximum number of packets that can be sent to the queue when each network interface receives packets faster than the kernel processes them ,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1000,100000,1000,,yes,
,net.ipv4.tcp_thin_linear_timeouts,"Check whether the TCP stream is thin after the retransmission times out.
",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0;1,string,,,,,yes,
,net.unix.max_dgram_qlen,"Maximum number of datagrams in a UDP queue
",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,128,1048576,128,,yes,
,net.core.somaxconn,"Defines the maximum length of the listening queue of each port in the system. This is a global parameter.
The default value is 128. You are advised to change the value to 1024. ",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,128,65536,128,,yes,
,net.core.busy_poll,"Timeout interval for performing the poll and select operations on network devices (us) by default. The value is determined by the number of sockets.
",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,200,10,,yes,
,net.core.busy_read,Timeout interval for reading data frames in the device frame queue (us) by default. The recommended value is 50. ,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,200,10,,yes,
,net.core.dev_weight,Maximum number of network packets that can be processed by each CPU in an NAPI interrupt ,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,16,1024,16,,yes,
,net.ipv4.tcp_keepalive_intvl,Indicates the frequency of sending TCP probe packets. The value multiplied by tcp_keepalive_probes indicates the duration when no TCP connection is available.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,30,300,15,,yes,
,net.ipv4.tcp_keepalive_probes,This file indicates the maximum number of times that TCP keepalive detection is performed before a TCP connection is discarded. Keep-alive connections are sent only when the SO_KEEPALIVE socket option is turned on. ,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,3,144,3,,yes,
,net.ipv4.tcp_keepalive_time,Interval for sending keepalive detection messages(in seconds). This parameter is used to check whether the TCP connection is valid. ,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,600,36000,600,,yes,
,net.ipv4.tcp_tw_reuse,"The value 1 indicates that TIME-WAIT sockets can be used for new TCP connections, and the value 0 indicates that TIME-WAIT sockets are disabled. ",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0;1;2,string,,,,,yes,
,net.ipv4.tcp_window_scaling,"The window scaling defined in RFC 1323 is enabled. To support a TCP window larger than 64 KB, this parameter must be set to 1. The maximum size of a TCP window is 1 GB. This parameter takes effect only when both parties of a TCP connection are enabled. ",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0;1,string,,,,,yes,
,net.ipv4.tcp_fin_timeout,Maximum duration for a socket to remain in the FIN_WAIT_2 state.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1,120,1,,yes,
,net.ipv4.udp_mem,"The file saves three values:
low: When the number of memory pages used by UDP is less than the value of this parameter, UDP does not release memory.
assure: When the number of memory pages used by UDP exceeds the value of this parameter, UDP attempts to stabilize the memory usage and enters the pressure mode. When the memory usage is less than the value of low, UDP exits the pressure mode.
high: indicates the number of pages that can be used by all UDP sockets to queue and buffer datagrams.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,12582912 16777216 25165824;25165824 33554432 50331648;50331648 100663296,string,,,,,yes,
,net.ipv4.tcp_mem,"TCP overall cache setting, which controls all TCP memory usage (in pages). The parameter indicates the no-pressure value of the TCP overall memory, the threshold for enabling the pressure mode, and the maximum usage value in sequence. This parameter is used to control whether the new cache is successfully allocated.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,6168306 8224411 12336612;12336612 16448822 24673224,string,,,,,yes,
,net.ipv4.tcp_rmem,"Size of the read buffer. The first value is the minimum value of the read buffer, the third value is the maximum value, and the middle value is the default value. The default value is 4096 87380 6291456. You are advised to change the value to 4096 87380 16777216.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,4096 16384 4194304;4096 32768 8388608;4096 65536 16777216,string,,,,,yes,
,net.ipv4.tcp_wmem,"Size of the write buffer. The first value is the minimum value of the read buffer, the third value is the maximum value, and the middle value is the default value. The default value is 4096 16384 4194304. You are advised to change the value to 4096 65536 16777216.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,4096 16384 4194304;4096 32768 8388608;4096 65536 16777216,string,,,,,yes,
,net.ipv4.tcp_fastopen,Whether to enable the TCP quick open mode is to avoid the three-way handshake of hot requests. This greatly improves the performance in the scenario where small objects are moved.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,1; 2; 4,string,,,,,yes,
,net.ipv4.tcp_synack_retries,"For the remote connection request SYN, the kernel sends a SYN + ACK packet to acknowledge the receipt of the previous SYN connection request packet.
It's called a three-way handshake. This parameter determines the number of SYN+ACK packets sent by the kernel before the kernel discards the connection.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,3,64,1,,yes,
,net.ipv4.tcp_syn_retries,"Number of times that the local device retransmits TCP SYN packets due to timeout. The value cannot be greater than 255. This parameter is valid only for outgoing connections. For incoming connections, this parameter is controlled by tcp_retries1.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,3,64,1,,yes,
,net.ipv4.tcp_moderate_rcvbuf,"Whether to adjust the receive buffer when receiving data
0: no adjustment
1: yes",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.tcp_timestamps,"Indicates whether to enable the calculation of the RTT in a more accurate way than timeout retransmission (see RFC 1323). This option should be enabled for better performance.
0: no
1: enabled",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.tcp_dsack,"Indicates whether to allow TCP to send two identical SACKs.
0: disabled
1: enabled",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.tcp_fack,Enables the forwarding acknowledgment. The selective acknowledgment (SACK) can be performed to reduce the occurrence of congestion. This option should also be enabled.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.tcp_sack,"Indicates whether to enable the selective acknowledgment function. This function improves the performance by selectively responding to out-of-order received packets. In this way, the sender can send only lost packet segments. This function should be enabled for WAN communication, however, this increases the CPU usage.
0: no
1: enabled",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.tcp_low_latency,"Allows the TCP/IP stack to adapt to low latency in high throughput scenarios. This option is generally disabled. (But when building a Beowulf cluster, it helps to open it.)
0: disabled
1: enabled",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.tcp_adv_win_scale,Calculating the Buffer Overhead,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,4,1,,yes,
,net.ipv4.route.max_size,"Maximum number of entries in the routing cache. If the number of entries in the routing cache exceeds the maximum, the old entries are cleared.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,67108864,2080374784,67108864,,yes,
,net.ipv4.tcp_max_tw_buckets,"Reduce the number of TIME_WAIT connections to prevent excessive TIME_WAIT connections from occupying network resources and increasing the latency.
The default value is 2048. You are advised to change the value to 360000.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,32768,1048576,32768,,yes,
,net.ipv4.tcp_max_syn_backlog,"Indicates the length of the SYN queue. A larger queue length can accommodate more network connections waiting for connections.
The default value is 2048. You are advised to change the value to 8192.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,1024,262144,1024,,yes,
,net.ipv4.tcp_max_orphans,"Number of sockets that can be processed by the system and do not belong to any process. When a large number of connections need to be quickly established, pay attention to this parameter.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,65536,16777216,65536,,yes,
,net.ipv4.tcp_ecn,Indicates whether to enable the direct TCP congestion notification function. 0: disabled; 1: enabled,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1; 2,string,,,,,yes,
,net.ipv4.ip_forward,"Indicates whether to enable IPv4 IP forwarding.
0: disabled
1: enabled",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.conf.default.rp_filter,The kernel sets the policy for responding to ARP queries.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.ip_local_port_range,The range of available ports has been increased to prevent performance deterioration caused by continuous search of available ports for new connections when a large number of connections occupy ports.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,32768 60999; 1024 65535; 8192 65535,string,,,,,yes,
,net.ipv4.tcp_no_metrics_save,"After a TCP connection is closed, the saved parameters can be used to initialize the connection when the same connection is created next time as long as dst_entry is valid.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.ip_default_ttl,Specifies the lifetime of IP packets sent from the local device. The value is an integer ranging from 0 to 128. The default value is 64.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,8,128,8,,yes,
,net.ipv4.ip_no_pmtu_disc,Setting the MTU for Automatic Socket Detection,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.tcp_retries2,The number of retries required before discarding an active (established traffic condition) TCP connection. The default value is 15.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,3,30,1,,yes,
,net.ipv4.tcp_orphan_retries,Number of retries before the local end discards the TCP connection. The default value is 7.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,15,1,,yes,
,net.ipv4.tcp_syncookies,Indicates whether to enable the TCP synchronization label (syncookie).,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.tcp_reordering,Maximum number of reordered data packets in TCP flows,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,2,10,1,,yes,
,net.ipv4.tcp_retrans_collapse,"Provides compatibility for bugs on some printers. (Generally, this support is not required. You can disable it.)",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.tcp_congestion_control,TCP congestion scheduling algorithm,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,cubic; reno; bbr,string,,,,,yes,
,net.ipv4.conf.default.promote_secondaries,"0: When the primary IP address of an interface is removed, all secondary IP addresses are deleted.
1: When the primary IP address of an interface is removed, the secondary IP address becomes the primary IP address.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.conf.all.promote_secondaries,"0: When the primary IP address of an interface is removed, all secondary IP addresses are deleted.
1: When the primary IP address of an interface is removed, the secondary IP address becomes the primary IP address.",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.conf.all.accept_redirects,"Receives and sends ICMP redirection messages. The default value is True for hosts and False for routers.
0: disabled
1: yes",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.conf.default.accept_redirects,"Receives and sends ICMP redirection messages. The default value is True for hosts and False for routers.
0: disabled
1: yes",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.conf.all.secure_redirects,"Receives only ICMP redirect messages sent to gateways in the default gateway list.
0: disabled
1: yes",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.conf.default.secure_redirects,"Receives only ICMP redirect messages sent to gateways in the default gateway list.
0: disabled
1: yes",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.ipv4.icmp_echo_ignore_broadcasts,"Ignore all received ICMP Echo request broadcasts.
0: not ignore
1: ignore",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.nf_conntrack_max,Maximum number of ip_conntrack structures in the memory,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,65536,1048576,65536,,yes,
,net.netfilter.nf_conntrack_tcp_timeout_established,Timeout interval for TCP in the established state (s),sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,108000,1728000,108000,,yes,
,net.netfilter.nf_conntrack_tcp_timeout_close_wait,Timeout interval for TCP in close wait state (s),sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,15,240,15,,yes,
,net.netfilter.nf_conntrack_tcp_timeout_fin_wait,Timeout interval for TCP in the fin wait state (s),sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,30,480,30,,yes,bad command line argument(s)
,net.netfilter.nf_conntrack_tcp_timeout_time_wait,Timeout interval for TCP in time wait state (s),sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,30,480,30,,yes,
,net.ipv4.conf.default.forwarding,"Enable the forwarding function on the interface.
0: disabled
1: yes",sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,0; 1,string,,,,,yes,
,net.core.rps_sock_flow_entries,RFS (Receiver Flow Control) extends the performance of RPS to increase the CPU cache hit ratio and reduce network latency.,sysctl -n @name,sysctl -w @name=$value,FALSE,discrete,,int,0,131072,1024,,yes,
,net.ipv4.tcp_min_tso_segs,Minimal number of segments per TSO frame.,sysctl -n @name,sysctl -w @name=$value,FALSE,continuous,,int,1,16,1,,yes,
others,login.UserTasksMax,Limit the maximum number of operating system tasks that can be run concurrently by each user,"cat /etc/systemd/logind.conf | grep -w ""^UserTasksMax"" | awk -F ""="" '{print$2}'","sed -i ""s/UserTasksMax=.*/UserTasksMax=$value/"" /etc/systemd/logind.conf",FALSE,continuous,,int,1024,1048576,,,yes,
,ulimit.nofile,Maximum number of files that can be used by a user.,ulimit -n,ulimit -n $value,FALSE,discrete,,int,1024,10240,1,,yes,
Hardware-related,prefetcher,"Hardware prefetch policy. The value 0 indicates that the policy is disabled, and the value 15 indicates that the policy is enabled.",cat /sys/class/misc/prefetch/policy,echo $value > /sys/class/misc/prefetch/policy,FALSE,discrete,0; 15,int,0,15,1,,yes,
,read_unique,Whether to allow cross-numa access to cache. 0--allow 1--forbid.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_nosnp_atomic_bypass_en,Whether to bypass atomic operations of CPUs. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ro_alloc_shut_en,Whether to allow allocating readonce operation into L3. 0--allow 1--forbid,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_wrfull_hit_shut_en,Whether to send createE to HA when 64wu-full hit spipe M. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,req_conflict_en,Whether to enable the operation of reversing back one pat when receiving requests from both in and out of CPU. 0--disable 1--enable ,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,lower_power_en,Whether to enable CQ low power method. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,dataclean_shut_en,Whether to shield the CE bit of Taishan Core's write_no_snoop_full. 0--not shield 1--shield,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,arb_flush_shut_en,Whether to enable the reset of ARBIT scheduling pointer when CQ queue is at idle status. 0--enable 1--disable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,pgnt_arb_exat_shut_en,Whether to enable pgrant scheduling method in which only one grant tries at one time. 0--enable 1--disable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,fast_exter_shut_en,Whether to forbid data missed from extern requests to be transferred through fast access. 0--allow 1--forbid,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,fast_data_shut_en,Whether to forbid data missed to be transferred through fast access. 0--allow 1--forbid,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,pend_data_shut_en,Whether to forbid data missed to be transferred through pend access. 0--allow 1--forbid,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,ramswap_full_shut_en,Full or partial when doing ramswap. 1--partial 0--Full.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,ramfwd_shut_en,Enable ramfwd method. 0--enable 1--disable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reads_upgrade_en,Enable read_shared operation status promotion. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,rdmerge_pipe_en,Whether to allow requests from Sqmerge to be hit in Cpipe5. 0--forbid 1--allow,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,spill_en,Enable spill in L3T. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,spill_shared_en,Enable spill at shared status of L3T. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,spill_instr_en,Enable instruction spill in L3T. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,sqrdmerge_en,Use RDMERGE acceleration in SQ merge operations. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prefetch_drop_en,Enable the drop of prefetch in L3T. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,datapull_en,Enable the datapull in L3T. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,mkinvld_en,Enable the transformation from makelinvalid to cleinvalid. 0--enable 1--disable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,ramthr_en,Allow CPU to derive data back from thr channel directly in L3D. 0--forbid 1--allow,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,rsperr_en,Allow to report rsperr. 0--forbid 1--allow,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,iocapacity_limit_en,Whether to limit the io capacity of cache. 0--unlimiet 1--limit.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,force_cq_clk_en,Force to open Cache queue clock. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,sqmerge_en,Whether consecutive address access can occupy only one entry in the squeue to accelerate the merge process. 0--limit 1--merge.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,rdmerge_upgrade_en,Whether to allow the RS to merge with the preceding ReadE. 0--disabl 1--allow.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prefetch_drop_hha_en,Whether to merge a non-prefetch operation with the previous prefetch operation. 0--allow 1--limit.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,tag_rep_alg,Choose cache line algorithm. 0--random 1--drrip 2--plru 3--random.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,3,1,,yes,
,rdnosnp_nca_shut_en,Whether to mark the readnosnp of the bypass sent by the CPU as NCA. 0--yes 1--no,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,wrfull_create_en,Whether to enable 128-byte writeunique only to obtain permission but not data from HHA. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,cleanunique_data_en,Whether to enable the cleanunqunie to return data. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,lock_share_req_en,Whether to enable the register lock function in share mode and not to deliver operations to the HHA. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,ddr_compress_opt_en,Optimization switch of support HHA compression access. 0--disable 1--enable.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,atomic_monitor_en,Enable atomic_monitor. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,snpsleep_en,Whether to enable snp sleep. 0--disable 1--enable.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prefetchtgt_en,Whether to enable the prefetchtgt. 0--disable 1--enable.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,sequence_shape_en,Enable to push back to the CPU for several cycles when the SQ is about to be full. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,mpam_portion_en,Enable the function of allocating MPAM based on the way. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,mpam_capacity_en,Enable the function of allocating MPAM based on capacity statistics. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,eccchk_en,Enable ECC_CHK. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,refill_1024_relax_en,Whether to use the 1024-bit size to send requests for access. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,lookup_thr_en,Whether to enable the through channel during pipeline query. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,snpunique_stash_en,Support to receive hydra snpUniquestash. 0--forbid 1--support,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prime_timeout_mask_en,Enable the count for timeout. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prime_sleep_mask_en,Enable the function of releasing a sleep request after a period of time. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prime_extend_mask_en,Whether to enable random allocation of a request to extendway. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,force_intl_allocate_fail,Enable the function of forcibly determining that the assign operation of the intleave type fails. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,cpu_write_unique_stream_en,Whether to forcibly process the writeunique operation delivered by the CPU as the stream type. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,cpu_pf_lqos_en,Whether to enable the prefetch operation delivered by the CPU to be forcibly processed as the lqos operation. 0--disable 1--enable.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,cpu_vic_lqos_en,Whether to enable the victim operation delivered by the CPU to be forcibly processed as the lqos operation. 0--disable 1--enable.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prime_excl_mask_en,Whether to enable the random exclusive operation. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prime_drop_mask_en,Enable prefetch to retry randomly. 0--disable 1--enable.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prime_home_mask_en,Enable the forcehome processing on internal requests randomly. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,refillsize_com_ada_en,"Whether to enable the auto-sensing of the size of the request sent to the HHA. If the size of the continuously received requests is 128 bytes or 64 bytes, the size of the prefetched request is automatically adjusted. 0--disable 1--enable adaptive size adjustment.",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,refillsize_pre_ada_en,"Whether to enable the adaptation of the size of the request sent to the HHA. If the size of the continuously received request is 128 bytes or 64 bytes, the size of the normal request is automatically adjusted. 0--disable 1--enable adaptive size adjustment.",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,sequence_opt_en,Whether change the L3T processing to serial mode when blocking. 0--limit 1--enable.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prefetch_clr_level,Number of requests that fail to find the corresponding prefetch buffer and lower the priority of each buffer to make the existing buffer easier to replace. Range from 0~255.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,255,1,,yes,
,prefetch_overide_level,"Initial coverage priority for an operation to enter the prefetch buffer. If the value is incorrect, the threshold is decreased by 1. If the value is correct, the threshold is increased by 1. If the value is 0, the prefetch rule needs to be replaced. range 0~15.",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,15,1,,yes,
,prefetch_utl_ddr,The utilization of ddr that leads to the halving the threshold of prefetch. 0--less thean 1/2 1--1/2 2--3/4 3--almost full.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,3,1,,yes,
,prefetch_utl_ddr_en,Whether to allow the automatic threshold reduction according to the utilization of ddr. 0--forbid 1--allow.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prefetch_utl_l3t,The utilization of l3t that leads to the halving the threshold of prefetch. 0--less thean 1/2 1--1/2 2--3/4 3--almost full.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,3,1,,yes,
,prefetch_utl_l3t_en,Whether to allow the automatic threshold reduction according to the utilization of l3t. 0--forbid 1--allow.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prefetch_vague_en,"Whether to enable fuzzy match for prefetch. After the function is enabled, the prefetch summarizes the same 16 KB address rule. The four 4 KB address rules are the same and can be used together. 0--disable 1--enable.",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prefetch_core_en,Core prefetch enable: Bit 1 indicates that the core request needs to be prefetched. range 0~15.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,15,1,,yes,
,prefetch_match_en,Whether to enable the prefetch operation after the prefetch hit. 0--disable 1--enable.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prefetch_start_level,"The number of missing addresses that leads to prefetch. 0--32 1--2 n-1--n, can be 0-31.",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,31,1,,yes,
,pime_timeout_num,The maximum count of timeout. Range from 0 to 65535.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,65535,1,,yes,
,reg_ctrl_spillprefetch,Snoop type configuration of the spill. 0--type of request 1--prefetch,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ctrl_mpamen,Enable HHA MPAM scheduling. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ctrl_mpamqos,Enable QoS for modifying the DDR read/write command based on the MPAM monitoring and control bandwidth. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ctrl_poison,Enable HHA to return poison. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ctrl_compress_spec,Enable the random read of 128-byte data in HHA memory data compression. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ctrl_writeevict_drop,Enable the discard of WriteEvictI. 0--disable 1--enable.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ctrl_prefetch_drop,Prefetch operation discard enable. 0--disable 1--enable.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ctrl_dmcassign,"DDR access address alignment enable. 0--The DDR read operation uses the wrap mode, and the address is 32-byte-aligned. The DDR write operation is always in INCR mode, and the address is aligned with the access boundary. 1--The DDR read operation is always in INCR mode, and the address is aligned with the access boundary. The DDR write operation is always in INCR mode, and the address is aligned with the access boundary.",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ctrl_rdatabyp,"DDR read data bypass memory enable in the HHA. 0--disable 1--The internal data of the HHA is bypassed, and the DDR read data can be transmitted quickly.",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ctrl_excl_clear_dis,Whether to disable the function of periodically clearing HHA non-cacheable exclusive monitor. 0--enable 1--disable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ctrl_excl_eventen,Enable HHA non-cacheable exclusive monitor event. An event can be sent to wake up the CPU when an address is successfully written or corrupted. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_ctrl_eccen,Enable the memory ECC error correction in the HHA. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_readoncesnp_dis,Disable NCA Readonce fixed snoop. 0--enable 1--disable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_exter_stash,L3T configuration of extern snoop stash. 0--forbid 1--allow,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_writebacki_spill_full,Enable fixed 128-byte data spill of the WritebackI operation. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_writeevicti_spill_full,Enable fixed 128-byte data spill of the WriteEvictI operation. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_stashonce_full,Enable fixed 128-byte data stash of the StashOnce operation. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_atomicstashl2,Enable L2 stash of atomic operations. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_atomicstashl3,Enable L3 stash of atomic operations. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_atomicstashclr,Clear L3 stash monitor of atomic operations. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_cmo_snpme,Enable snoop me for CMO operations. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_makee_change,Enable HHA MakeE conversion to readE when the HHA MakeE is not self-hit. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_ioc_hitsca_dis,Disable the function of recording CAIDs when the HHA I/O cache hits the exact directory. 0--enable 1--disable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_passdirty,Enable HHA pass dirty. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_snpdrop,Enable Snoop Drop. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_cc_spill,Enable local multi-partition sharing. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_precisionsnp_dis,Disable HHA precise snoop based on shared directories. 0--enable 1--disable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_notonly_excl,Whether to create new entries for exclusive operations in the HHA share directory buffer. 0--only for exclusive operations 1--for all of operations,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_buffer_share_dis,Disable HHA share directory buffer. 0--enable 1--disable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_miss_allindex,Enable that HHA miss queues are related based on index. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_miss_cbackth,Enable HHA miss queue copyback request to use second threshold. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_miss_normalth,Enable HHA miss queue common request to use second threshold. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_miss_tosdir,Enable HHA only to allow miss alloc to be sent to sdir. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_entry_except,Exclude the same entry address in HHA. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_dir_precision,Configuration of HHA precise directory. 0--disable to allow vague directory recording 1--enable to forbid vague directory recording,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_dir_replace_alg,Directory replacement algorithm configuration. 0--EDIR random+SDIR random 1--EDIR random+SDIR polling 2--EDIR PLRU+SDIR random 3--EDIR PLRU+SDIR polling,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,3,1,,yes,
,strict_order,Keep the order of HHA operation queue strictly. 0--enable 1--unable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,prefetch_comb,Read operation and prefetchtgt merge enable. 0--The read operation can be merged with the fetchtgt operation. 1--The read operation and the fetchtgt merge operation are not allowed.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,evict_green,Unblocking configuration of the evict in PQ. 0--evict can't be blocked 1--evict can be blocked,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,block_retry,Whether to perform retry configuration directly when the MPAM hardlim flow bandwidth exceeds the configured one such that enters CMD. 0--retry directly 1--don't retry directly and be scheduled with other flows,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,buffer_prio,Priority configuration for the ingress queue of the CMD buffer request and PGNT application. 0--CMD buffer priors to pgnt 1--CMD buffer and pgnt have equivalent priority,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,half_wr_rdddr_delay,Enables the DDR read delay during 64-byte full write operations after compression. 0--enable 1--disable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,wback_cnfl_rdhalf,DDR size configuration that is reread when the writeback conflict occurs. 0--depend on Writeback address and size 1--size=128B,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_funcdis_pendprecision,Enable precise pend. 0--pend is precisely depend on flit 1--pend=1,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_funcdis_combrdddr,Reread DDR after multiple adjacent narrow write operations are merged.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_funcdis_scramble,Ingress queue scrambling. 0--enable 1--disable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_funcdis_stashidpg,Whether to enable the partial good conversion of the Stash TGTID. ,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_funcdis_rdatatime,HHA receives DMC read data anti-starvation threshold configuration. 0--threshold=8 1--threshold=4,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_funcdis_dmcutl,DMC usage source selection. 0--from DDRC 1--from queue processing utilization ratio inside HHA,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_funcdis_cancelexcept,"The pipeline index check excludes requests that are not actually queried (for example, prefetchtgt). 0--enable exclusion 1--disable exclusion",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_funcdis_ccixcbupdate,Whether to update the directory in the CCIX copyback of the multi-CA. 0--allow 1--forbid,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_funcdis_updateopen,Block the update dir command in the processing queue based on index. 0--disable 1--enable,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_funcdis_comb,Whether to merge write operations whose size is less than 128 bytes. 0--enable 1--disables the merge function of the write operation.,cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,reg_prefetchtgt_outstanding,"Outstanding configuration for the HHA to read data from the DDR prefetch. When the read/write operation sent by the HHA to the DDR exceeds the threshold, the prefetchtgt operation is forbidden to read the DDR data and the operation is directly discarded. This configuration and reg_prefetch_outstanding control the prefetch threshold at the same time. Threshold ranges from 0 to 127.",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,127,1,,yes,
,reg_prefetchtgt_level,"Threshold for the HHA to read data from the DDR prefetch. When the DDR read/write operations in the HHA processing queue exceed the threshold, the prefetchtgt operation is forbidden to read the DDR data and the operation is directly discarded. This configuration and reg_prefetch_outstanding control the prefetch threshold at the same time. Threshold ranges from 0 to 127.",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,127,1,,yes,
,reg_spec_rd_level,"DDR threshold configuration for speculation read. When the DDR read and write commands in the HHA processing queue exceed the threshold, speculative reading of the DDR is prohibited. After the directory is queried, the system determines whether to read the DDR based on the directory query result. Note: The value 0x08 or 0x10 is recommended. Range from 0 to 127",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,127,1,,yes,
,reg_drop_level,"Prefetch drop threshold configuration. When the number of DDR read and write commands in the HHA processing queue exceeds the threshold, some prefetch read commands can be discarded. Range from 0 to 127.",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,127,1,,yes,
,dvmsnp_outstanding,"Outstanding value of the DVMSNP of the MN. Note 1: If dvmsnp_perf_en is enabled, the configured value is valid. The maximum value of outstanding can be 5 when the TaiShan core is used. Otherwise, overflow errors occur. Note 2: The SMMU cannot match the Dvmsnp outstanding value 5. Therefore, you need to set the switch to 3 for Totem and Infinite of 1383. Totem and Nimbus of 1620: Set DVM outstanding to 5. However, do not configure POE for the DVMSNP broadcast node. The POE uses a private page table and does not require DVMSNP. Range from 0 to 15.(Note: 0 represents that outstanding level is 1)",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,15,1,,yes,
,dvmreq_outstanding,"Outstanding value of the DVMREQ of the MN. Note 1: If dvmreq_perf_en is enabled, the configured value is valid. The maximum value of outstanding can be 9 when there are four chips. Otherwise, an overflow error occurs. Note 2: In the case of two chips, the maximum outstanding value of totem can be 10, and the maximum outstanding value of nimbus or infinite is 24. This ensures the best performance. Note 3: In the case of a single chip, there is no restriction on the outstanding configuration of the totem. Range from 0 to 31.(Note: 0 represents that outstanding level is 1)",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,,int,0,31,1,,yes,
,dvmsnp_perf_en,"Whether to enable the outstanding level for the dvmsnp.(Note: After the function is enabled, the dvmsnp outstanding value of the MN is equal to the value of dvmsnp_outstanding.) 0--disable 1--enable",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
,dvmreq_perf_en,"Whether to enable the outstanding level for the dvmreq.(Note: After the function is enabled, the dvmreq outstanding value of the MN is equal to the value of dvmreq_outstanding.) 0--disable 1--enable",cat /sys/class/misc/prefetch/@name,echo $value > /sys/class/misc/prefetch/@name,FALSE,discrete,0; 1,string,,,,,yes,
nginx,nginx.access_log,Enabling or Disabling nginx access_log,"cat /etc/nginx/nginx.conf | grep ""access_log"" | awk -F ';' '{print $1}' | awk '{$1="""";print}'| awk '$1=$1'","sed -i ""s#access_log.*#access_log $value;#g"" /etc/nginx/nginx.conf",FALSE,discrete,/var/log/nginx/access.log main;off,string,,,,,yes,
,nginx.error_log,Enabling or Disabling nginx error_log,"cat /etc/nginx/nginx.conf | grep ""error_log"" | awk -F ';' '{print $1}' | awk '{$1="""";print}' | awk '$1=$1'","sed -i ""s#error_log.*#error_log $value;#g"" /etc/nginx/nginx.conf",FALSE,discrete,/var/log/nginx/access.log main;/dev/null,string,,,,,yes,
mariadb,mariadb.key_buffer_size,Index parameters of the myisam storage engine,cat /etc/my.cnf | grep key_buffer_size | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/key_buffer_size.*/key_buffer_size = $value/g' /etc/my.cnf,FALSE,discrete,,int,1048576,536870912,1048576,,yes,
,mariadb.max_allowed_packet,Maximum number of received packets,cat /etc/my.cnf | grep max_allowed_packet | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/max_allowed_packet.*/max_allowed_packet = $value/g' /etc/my.cnf,FALSE,discrete,,int,1048576,104857600,1048576,,yes,
,mariadb.table_open_cache,Table cache for storing data,cat /etc/my.cnf | grep table_open_cache | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/table_open_cache.*/table_open_cache = $value/g' /etc/my.cnf,FALSE,discrete,,int,16,1000000,2,,yes,
,mariadb.back_log,The number of new requests stored in the stack,cat /etc/my.cnf | grep back_log | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/back_log.*/back_log = $value/g' /etc/my.cnf,FALSE,continuous,,int,16,65536,,,yes,
,mariadb.sort_buffer_size,Cache used for sorting,cat /etc/my.cnf | grep sort_buffer_size | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/sort_buffer_size.*/sort_buffer_size = $value/g' /etc/my.cnf,FALSE,discrete,,int,256,104857600,1024,,yes,
,mariadb.read_buffer_size,the buffer allocated to each thread during sequential table scanning.,cat /etc/my.cnf | grep read_buffer_size | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/read_buffer_size.*/read_buffer_size = $value/g' /etc/my.cnf,FALSE,discrete,,int,1024,104857600,1024,,yes,
,mariadb.read_rnd_buffer_size,the buffer allocated to each thread when the table is read randomly,cat /etc/my.cnf | grep read_rnd_buffer_size | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/read_rnd_buffer_size.*/read_rnd_buffer_size = $value/g' /etc/my.cnf,FALSE,discrete,,int,1024,104857600,1024,,yes,
,mariadb.myisam_sort_buffer_size,the buffer required for reordering when the MyISAM table changes,cat /etc/my.cnf | grep myisam_sort_buffer_size | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/myisam_sort_buffer_size.*/myisam_sort_buffer_size = $value/g' /etc/my.cnf,FALSE,discrete,,int,1024,104857600,1024,,yes,
,mariadb.thread_cache_size,Number of threads saved in the cache that are reused,cat /etc/my.cnf | grep thread_cache_size | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/thread_cache_size.*/thread_cache_size = $value/g' /etc/my.cnf,FALSE,continuous,,int,8,1000,,,yes,
,mariadb.max_connections,the max number of connections,cat /etc/my.cnf | grep max_connections | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/max_connections.*/max_connections = $value/g' /etc/my.cnf,FALSE,continuous,,int,10,65536,,,yes,
,mariadb.max_heap_table_size,size of a memory table that can be created,cat /etc/my.cnf | grep max_heap_table_size | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/max_heap_table_size.*/max_heap_table_size = $value/g' /etc/my.cnf,FALSE,discrete,,int,1024,104857600,1024,,yes,
,mariadb.innodb_buffer_pool_size,size of innodb buffer pool,cat /etc/my.cnf | grep innodb_buffer_pool_size | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/innodb_buffer_pool_size.*/innodb_buffer_pool_size = $value/g' /etc/my.cnf,FALSE,discrete,,int,1024,1.37E+11,1024,,yes,
,mariadb.innodb_log_buffer_size,size of innodb log buffer,cat /etc/my.cnf | grep innodb_log_buffer_size | awk -F '=' '{print $2}' | awk '$1=$1',sed -i 's/innodb_log_buffer_size.*/innodb_log_buffer_size = $value/g' /etc/my.cnf,FALSE,discrete,,int,1048576,104857600,1048576,,yes,
redis,redis.tcp-backlog,tcp backlog,cat /etc/redis.conf | grep tcp-backlog | awk '{print $2}',sed -i 's/tcp-backlog.*/tcp-backlog $value/g' /etc/redis.conf,FALSE,continuous,,int,16,65536,,,yes,
,redis.tcp-keepalive,closes the connection after holding for a few seconds,cat /etc/redis.conf | grep tcp-keepalive | awk '{print $2}',sed -i 's/tcp-keepalive.*/tcp-keepalive $value/g' /etc/redis.conf,FALSE,continuous,,int,0,3600,,,yes,
,redis.supervised ,service supervise,cat /etc/redis.conf | grep supervised | awk '{print $2}',sed -i 's/supervised .*/supervised $value/g' /etc/redis.conf,FALSE,discrete,no;upstart;systemd;auto,string,,,,,yes,
,redis.databases,number of databases,cat /etc/redis.conf | grep databases | awk '{print $2}',sed -i 's/databases.*/databases $value/g' /etc/redis.conf,FALSE,continuous,,int,0,100,,,yes,
,redis.rdbcompression,whether to compress character strings using LZF when backing up .rdb files,cat /etc/redis.conf | grep rdbcompression | awk '{print $2}',sed -i 's/rdbcompression .*/rdbcompression $value/g' /etc/redis.conf,FALSE,discrete,yes;no,string,,,,,yes,
tomcat,connector.maxThreads,Maximum number of threads requested by the customer,"server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/maxThreads/="" $server_xml_dir | tail -n 1) && (sed -n ""${end_line}p"" $server_xml_dir | cut -d '=' -f 2) | cut -d '""' -f 2","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/maxThreads/="" $server_xml_dir | tail -n 1) && sed -r -i ""$begin_line,${end_line} s#(maxThreads=\"").*(\"")#maxThreads=\""$value\""#1"" $server_xml_dir",FALSE,discrete,,int,100,2000,10,,yes,
,connector.minSpareThreads,Number of Socket threads created during Tomcat initialization,"server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/minSpareThreads/="" $server_xml_dir | tail -n 1) && (sed -n ""${end_line}p"" $server_xml_dir | cut -d '=' -f 2) | cut -d '""' -f 2","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/minSpareThreads/="" $server_xml_dir | tail -n 1) && sed -r -i ""$begin_line,${end_line} s#(minSpareThreads=\"").*(\"")#minSpareThreads=\""$value\""#1"" $server_xml_dir",FALSE,discrete,,int,10,200,5,,yes,
,connector.maxConnections,The maximum number of connections that the server will accept and process,"server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/maxConnections/="" $server_xml_dir | tail -n 1) && (sed -n ""${end_line}p"" $server_xml_dir | cut -d '=' -f 2) | cut -d '""' -f 2","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/maxConnections/="" $server_xml_dir | tail -n 1) && sed -r -i ""$begin_line,${end_line} s#(maxConnections=\"").*(\"")#maxConnections=\""$value\""#1"" $server_xml_dir",FALSE,discrete,,int,8000,15000,100,,yes,
,connector.enableLookups,Whether to backcheck the domain name,"server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/enableLookups/="" $server_xml_dir | tail -n 1) && (sed -n ""${end_line}p"" $server_xml_dir | cut -d '=' -f 2) | cut -d '""' -f 2","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/enableLookups/="" $server_xml_dir | tail -n 1) && sed -r -i ""$begin_line,${end_line} s#(enableLookups=\"").*(\"")#enableLookups=\""$value\""#1"" $server_xml_dir",FALSE,discrete,"['true', 'false']",string,,,,,yes,
,connector.acceptCount,Maximum number of listening port queues,"server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/acceptCount/="" $server_xml_dir | tail -n 1) && (sed -n ""${end_line}p"" $server_xml_dir | cut -d '=' -f 2) | cut -d '""' -f 2","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/acceptCount/="" $server_xml_dir | tail -n 1) && sed -r -i ""$begin_line,${end_line} s#(acceptCount=\"").*(\"")#acceptCount=\""$value\""#1"" $server_xml_dir",FALSE,discrete,,int,50,2000,50,,yes,
,connector.connectionTimeout,Network connection timeout,"server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/connectionTimeout/="" $server_xml_dir | tail -n 1) && (sed -n ""${end_line}p"" $server_xml_dir | cut -d '=' -f 2) | cut -d '""' -f 2","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/connectionTimeout/="" $server_xml_dir | tail -n 1) && sed -r -i ""$begin_line,${end_line} s#(connectionTimeout=\"").*(\"")#connectionTimeout=\""$value\""#1"" $server_xml_dir",FALSE,discrete,,int,10000,60000,500,,yes,
,connector.maxHttpHeaderSize,The maximum size of HTTP headers for requests and responses,"server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/maxHttpHeaderSize/="" $server_xml_dir | tail -n 1) && (sed -n ""${end_line}p"" $server_xml_dir | cut -d '=' -f 2) | cut -d '""' -f 2","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/maxHttpHeaderSize/="" $server_xml_dir | tail -n 1) && sed -r -i ""$begin_line,${end_line} s#(maxHttpHeaderSize=\"").*(\"")#maxHttpHeaderSize=\""$value\""#1"" $server_xml_dir",FALSE,discrete,,int,1024,102400,1024,,yes,
,connector.tcpNoDelay,"If true, the server socket sets TCP_NO_DELAY","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/tcpNoDelay/="" $server_xml_dir | tail -n 1) && (sed -n ""${end_line}p"" $server_xml_dir | cut -d '=' -f 2) | cut -d '""' -f 2","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/tcpNoDelay/="" $server_xml_dir | tail -n 1) && sed -r -i ""$begin_line,${end_line} s#(tcpNoDelay=\"").*(\"")#tcpNoDelay=\""$value\""#1"" $server_xml_dir",FALSE,discrete,"['true', 'false']",string,,,,,yes,
,connector.compression,Whether to enable GZIP compression,"server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/compression/="" $server_xml_dir | tail -n 1) && (sed -n ""${end_line}p"" $server_xml_dir | cut -d '=' -f 2) | cut -d '""' -f 2","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/compression/="" $server_xml_dir | tail -n 1) && sed -r -i ""$begin_line,${end_line} s#(compression=\"").*(\"")#compression=\""$value\""#1"" $server_xml_dir",FALSE,discrete,"['off', 'on','force']",string,,,,,yes,
,connector.compressionMinSize,The minimum value of data before compression,"server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/compressionMinSize/="" $server_xml_dir | tail -n 1) && (sed -n ""${end_line}p"" $server_xml_dir | cut -d '=' -f 2) | cut -d '""' -f 2","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/compressionMinSize/="" $server_xml_dir | tail -n 1) && sed -r -i ""$begin_line,${end_line} s#(compressionMinSize=\"").*(\"")#compressionMinSize=\""$value\""#1"" $server_xml_dir",FALSE,discrete,,int,1024,25600,512,,yes,
,connector.disableUploadTimeout,"This flag allows the Servlet Container to use a different, longer connection timeout when a servlet executes","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/disableUploadTimeout/="" $server_xml_dir | tail -n 1) && (sed -n ""${end_line}p"" $server_xml_dir | cut -d '=' -f 2) | cut -d '""' -f 2","server_xml_dir=/home/atune_5555/apache-tomcat-10.0.23/conf/server.xml && begin_line=$(sed -n '/<Connector/=' $server_xml_dir | head -n 1) && end_line=$(sed -n ""$begin_line,/disableUploadTimeout/="" $server_xml_dir | tail -n 1) && sed -r -i ""$begin_line,${end_line} s#(disableUploadTimeout=\"").*(\"")#disableUploadTimeout=\""$value\""#1"" $server_xml_dir",FALSE,discrete,"['true', 'false']",string,,,,,yes,