The ODA X5-2 was utilizing only a few cores of the resources, this blog post helps to increase the number of CPU cores.
First Describe the CPU Core information with the below commands.
[root@ORA-X1 ~]# odacli describe-cpucore Node Cores Modified Job Status ----- ------ ------------------------------ --------------- 0 12 September 26, 2019 8:51:32 PM CDT Configured [root@ORA-X1 ~]# odacli list-cpucores Node Cores Modified Job Status ----- ------ ------------------------------ --------------- 0 36 June 27, 2019 7:31:50 PM CDT Configured 0 10 July 11, 2019 9:28:39 PM CDT Configured 0 12 September 26, 2019 8:51:32 PM CDT Configured
AIn the above output earlier 36 cores were assigned and later reduced to 10 and then again increased 12 as per the requiremens. Now let’s increase to maximum CPU cores with the below command.
[root@ORA-X1 ~]# odacli update-cpucore -c 36 { "jobId" : "b13b2fa7-d274-4286-a793-948e9387ba80", "status" : "Created", "message" : null, "reports" : [ ], "createTimestamp" : "October 24, 2021 11:10:19 AM CDT", "resourceList" : [ ], "description" : "CPU cores service update", "updatedTime" : "October 24, 2021 11:10:19 AM CDT" }
After the job is initiated it should reflect the new changes using the below list command.
[root@ORA-X1 ~]# odacli list-cpucores Node Cores Modified Job Status ----- ------ ------------------------------ --------------- 0 36 June 27, 2019 7:31:50 PM CDT Configured 0 10 July 11, 2019 9:28:39 PM CDT Configured 0 12 September 26, 2019 8:51:32 PM CDT Configured 0 36 October 24, 2021 11:10:25 AM CDT Configured [root@ORA-X1 ~]#