Questions tagged [utilization]

106 questions
0
votes
0 answers

Optimize PHP processor tasks. At the most of time core 1 is 100% loaded while core 2 is under 10%

I have a website which provide a newsletter for 7 feeds. Every user has their own newsletter filters, so I have to run 7 queries for every user. Also when a particular feed is loaded, every item from the feed is added to user_history table. Just to…
vkuzmov
  • 61
  • 5
0
votes
0 answers

Optimize sysem utilization Java Application

Short about the program: It's my first program and is therefore not best and most effectively programmed path but it works and does the job. The program diehnt as Design Management. It manages about 3000 designs. It can be sorted by each group for…
ahdgfd
  • 325
  • 3
  • 12
0
votes
1 answer

DAX Utilization % - Measure Formula

We are trying to perform a Utilization % calculation in DAX and I cannot figure out the forumula. Here's the setup: Table images are here: http://imgh.us/dax.png Table 1: There is a [timesheet] Table for our resources (R1, R2, R3, R4). Each…
rocketfish
  • 19
  • 1
  • 3
0
votes
2 answers

How to determine Boundary Cut Utilization MATLAB?

Working on 2D Rectangular Nesting. Need to find the utilization percentage of the material. Assuming i have the length, breadth, left-bottom position of each rectangle. What is the best way to determine the Boundary-Cut Utilization? Objective:- To…
Santhan Salai
  • 3,888
  • 19
  • 29
0
votes
1 answer

How to extract key infromation from G1 gc log

I find the G1 GC log to be somewhat cryptic and I wanted to ask can the log file itself be used to understand the total "stop the world" time for a specific time window that was used for GC? Also , how is a full gc cycle specified for G1 collector? …
bob dabelina
  • 507
  • 5
  • 20
0
votes
2 answers

best way to use a Singleton in Java

Assuming that we have a thread safe singleton class in Java, which would be the best or better way to use it. For instance, consider that we have a Singleton class as: public class MySingleTon { // my thread-safe code goes here } And we have a…
user3244615
  • 330
  • 1
  • 15
0
votes
0 answers

Program for helping learning languages

If you are looking at a book in its original language and an English translation both available for free online, and you are following along side by side, but want to see each sentence of the original on the top or bottom of the English translation,…
James
  • 1
  • 1
0
votes
1 answer

Windows command for memory utilization % for particular service

Use wmic to capture the percentage of cpu usage for a specific service, but wish the same to determine my memory usage, is it possible to add the same line ?: wmic path Win32_PerfFormattedData_PerfProc_Process get Name,PercentProcessorTime |…
0
votes
1 answer

Visual Studio 2013 Update 3 Process taking up 30% CPU for a long time after commit

VS2013 update 3 didn't hang before I had to exclude tons of files on a move. Is it doing this to anyone else? If so, how do we fix this? Thank you!
sojim
  • 492
  • 2
  • 6
  • 19
0
votes
4 answers

How to utilize my computation resources

I wrote a program to solve a complicated problem. This program is just a c# console application and doesn't do console.write until the computation part is finished, so output won't affect the performance. The program is like this: static void…
Frank
  • 7,235
  • 9
  • 46
  • 56
0
votes
0 answers

Limit spikes, flatten processor usage?

I have multiple instances of a Ruby script (running on Linux) that does some automated downloading and every 30 minutes it calls "ffprobe" to programmatically evaluate the video download. Now, during the downloading my processor is at 60%. However,…
Carlos F
  • 893
  • 2
  • 12
  • 30
0
votes
1 answer

Linux - Extract core utilization for a single process to a file

I am trying to figure out how to extract the cpu core utilization for a SINGLE process in linux and parse it. I know that I can get the overall core utilization via top and then press "1". I am already able to parse that. However, now I want to do…
0
votes
1 answer

Is there any easy way to use PowerCLI to sort ESX hosts based on their overall utilization?

I attempted to sort hosts using code that was similar to this (this may be slightly incorrect because I'm not currently at a box with PowerCLI installed): $hosts = Get-VMHost $SortedHosts = $hosts | Sort-Object CPUUsageMhz,MemoryUsageGB The problem…
EGr
  • 2,072
  • 10
  • 41
  • 61
0
votes
3 answers

Processor Utilization

Out of curiosity ... is it possible to have more than 100% utilization of the CPU in a multi-threaded environment?
Carlin
  • 11
0
votes
1 answer

Process utilizes more than one core?

Having a dual-core CPU, I notice (on the Windows Task Manager) that some processes can take more than 50% CPU utilization. Knowing that each process can be executed in one cpu core at any given time, I'm expecting that it will utilize maximum 1/n of…
demvas
  • 13
  • 3