Skip to content

Commit 196ba0a

Browse files
authored
Merge pull request #51551 from kquinn1204/OCPBUGS-1843
OCPBUGS-1843 fixing typo realtime should be realTime
2 parents d24eb17 + b14d0c5 commit 196ba0a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

modules/cnf-configuring-workload-hints.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
. Create a `PerformanceProfile` appropriate for the environment's hardware and topology as described in the table in "Understanding workload hints". Adjust the profile to match the expected workload. In this example, we tune for the lowest possible latency.
1212

13-
. Add the `highPowerConsumption` and `realtime` workload hints. Both are set to `true` here.
13+
. Add the `highPowerConsumption` and `realTime` workload hints. Both are set to `true` here.
1414
+
1515
[source,yaml]
1616
----
@@ -22,7 +22,7 @@
2222
...
2323
workloadHints:
2424
highPowerConsumption: true <1>
25-
realtime: true <2>
25+
realTime: true <2>
2626
----
2727
<1> If `highPowerConsumption` is `true`, the node is tuned for very low latency at the cost of increased power consumption.
2828
<2> Disables some debugging and monitoring features that can affect system latency.

modules/cnf-understanding-low-latency.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Administrators must be able to manage their many Edge sites and local services i
2121

2222
{product-title} uses the Node Tuning Operator to implement automatic tuning to achieve low latency performance for {product-title} applications. The cluster administrator uses this performance profile configuration that makes it easier to make these changes in a more reliable way. The administrator can specify whether to update the kernel to kernel-rt, reserve CPUs for cluster and operating system housekeeping duties, including pod infra containers, and isolate CPUs for application containers to run the workloads.
2323

24-
{product-title} also supports workload hints for the Node Tuning Operator that can tune the `PerformanceProfile` to meet the demands of different industry environments. Workload hints are available for `highPowerConsumption` (very low latency at the cost of increased power consumption) and `realtime` (priority given to optimum latency). A combination of `true/false` settings for these hints can be used to deal with application-specific workload profiles and requirements.
24+
{product-title} also supports workload hints for the Node Tuning Operator that can tune the `PerformanceProfile` to meet the demands of different industry environments. Workload hints are available for `highPowerConsumption` (very low latency at the cost of increased power consumption) and `realTime` (priority given to optimum latency). A combination of `true/false` settings for these hints can be used to deal with application-specific workload profiles and requirements.
2525

2626
Workload hints simplify the fine-tuning of performance to industry sector settings. Instead of a “one size fits all” approach, workload hints can cater to usage patterns such as placing priority on:
2727

modules/cnf-understanding-workload-hints.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following workload hints can be configured manually. You can also work with
2121
----
2222
workloadHints:
2323
highPowerConsumption: false
24-
realtime: false
24+
realTime: false
2525
----
2626
| High throughput cluster without latency requirements
2727
| Performance achieved through CPU partitioning only.
@@ -33,7 +33,7 @@ realtime: false
3333
----
3434
workloadHints:
3535
highPowerConsumption: false
36-
realtime: true
36+
realTime: true
3737
----
3838
| Regional datacenters
3939
| Both energy savings and low-latency are desirable: compromise between power management, latency and throughput.
@@ -44,7 +44,7 @@ realtime: true
4444
----
4545
workloadHints:
4646
highPowerConsumption: true
47-
realtime: true
47+
realTime: true
4848
----
4949
| Far edge clusters, latency critical workloads
5050
| Optimized for absolute minimal latency and maximum determinism at the cost of increased power consumption.

0 commit comments

Comments
 (0)