Sponsored Content
Operating Systems Solaris How to predict system performance? Post 302321150 by Neo on Saturday 30th of May 2009 02:00:46 PM
Old 05-30-2009
Quote:
Originally Posted by 68topls
Well I would start off by looking at the application and database requirements. IE How big will the database be. Is it read only or read write, How many users, How many simultaneous users, what hardware are they running on ,etc. Probably the easiest way is to look at the development or test environment and take into account the additional resources needed. Things I've learned..... Always predict worse than you actually think (15%) and include a caveat. 8)
This is not "prediction". What you describe is planning.

The original poster asked about predicting system performance (using automated tools).

-----Post Update-----

Quote:
Originally Posted by System Shock
Maybe I'm reading this wrong, but when you say "Perfom/predict", you are talking about the application named Perform, right? If that is so, Perform can do that for you, or at the very least give you all the data you'd need to make an assessment.
There are hundreds of applications on the Internet named "Perform" ... To discuss a particular application, please post the link.

Thanks.
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

System Performance Tool

Could someone point me in the correct direction or web link containing instructions for installing the System Performance Tool (aka STP) software on an IBM-AIX version 4.? machine. My client has the software (that came from their original server) on a 3" floppy. Thanks! (1 Reply)
Discussion started by: Pam
1 Replies

2. UNIX for Dummies Questions & Answers

/client_local/ and system performance

I'm running Solaris 8 on a Sun ULTRA 5(SPARC II CPU, 270 MHz) with 64 Mb of RAM. The machine is very, very slow even doing normal tasks such as reading mail....... I'm nearly afraid to ask it to do some real work....... On checking out the machine(which I only received last week from our IT... (1 Reply)
Discussion started by: Kanu77
1 Replies

3. Programming

predict the output

Predict output of the following program: void func() { int a; a+=17; } int main(void) { char s = "hello\n"; func(); printf("%s",s); return 0; } run program in linux : (8 Replies)
Discussion started by: hareesh
8 Replies

4. Shell Programming and Scripting

Script for system performance

I need to prepare script which will run as background process ever 30 mins to collect the following information 1. Memory usage. 2. CPU usage. 3. Number processors running. 4. System resource (CPU and Memory) used by each process. 5. Number of sessions logged PLEASE HELP ME OUT FROM THIS ... (2 Replies)
Discussion started by: vastare
2 Replies

5. Linux

system performance

Anyone know how to fetch the system performance information by the function except the system command? These information includes CPU load,memory usage,network load,disk capacity,etc. (5 Replies)
Discussion started by: Frank2004
5 Replies

6. Solaris

How I can get System Performance on Solaris

Hi All, Can someone help me out knowing all commands for getting system performance on Solaris machines. Thanks in advance, Yagami Light. (5 Replies)
Discussion started by: Yagami
5 Replies

7. HP-UX

system performance

hi every body i want to check system performance i usually use glance,top,sar and swapinfo but i confused in something so i need explanation about memory issue first i want check the memory usage i used glance i found this parameter so i need one shows me the differences between these... (2 Replies)
Discussion started by: maxim42
2 Replies

8. Solaris

System performance

Hi I need to know the system performance : # echo "::memstat" | mdb -k Page Summary Pages MB %Tot ------------ ---------------- ---------------- ---- Kernel 358022 2797 9% ZFS File Data 2427072 18961 59% Anon 1096938 8569 27% Exec and libs 12020 93 0% Page cache 73859 577 2% Free... (4 Replies)
Discussion started by: dimitris
4 Replies
svm-predict(1)							   User Manuals 						    svm-predict(1)

NAME
svm-predict - make predictions based on a trained SVM model file and test data SYNOPSIS
svm-predict [ -b probability_estimates ] [ -q ] test_data model_file [ output_file ] DESCRIPTION
svm-predict uses a Support Vector Machine specified by a given input model_file to make predictions for each of the samples in test_data The format of this file is identical to the training_data file used in svm_train(1) and is just a sparse vector as follows: <label> <index1>:<value1> <index2>:<value2> . . . . . . There is one sample per line. Each sample consists of a target value (label or regression target) followed by a sparse representation of the input vector. All unmentioned coordinates are assumed to be 0. For classification, <label> is an integer indicating the class label (multi-class is supported). For regression, <label> is the target value which can be any real number. For one-class SVM, it's not used so can be any number. Except using precomputed kernels (explained in another section), <index>:<value> gives a feature (attribute) value. <index> is an integer starting from 1 and <value> is a real number. Indices must be in an ASCENDING order. If you have label data avail- able for testing then you can enter these values in the test_data file. If they are not available you can just enter 0 and will not know real accuracy for the SVM directly, however you can still get the results of its prediction for the data point. If output_file is given, it will be used to specify the filename to store the predicted results, one per line, in the same order as the test_data file. OPTIONS
-b probability-estimates probability_estimates is a binary value indicating whether to calculate probability estimates when training the SVC or SVR model. Values are 0 or 1 and defaults to 0 for speed. -q quiet mode; suppress messages to stdout. FILES
training_set_file must be prepared in the following simple sparse training vector format: <label> <index1>:<value1> <index2>:<value2> . . . . . . There is one sample per line. Each sample consist of a target value (label or regression target) followed by a sparse representation of the input vector. All unmentioned coordinates are assumed to be 0. For classification, <label> is an integer indicating the class label (multi-class is supported). For regression, <label> is the target value which can be any real number. For one-class SVM, it's not used so can be any number. Except using precomputed kernels (explained in another section), <index>:<value> gives a feature (attribute) value. <index> is an integer starting from 1 and <value> is a real number. Indices must be in an ASCENDING order. ENVIRONMENT
No environment variables. DIAGNOSTICS
None documented; see Vapnik et al. BUGS
Please report bugs to the Debian BTS. AUTHOR
Chih-Chung Chang, Chih-Jen Lin <cjlin@csie.ntu.edu.tw>, Chen-Tse Tsai <ctse.tsai@gmail.com> (packaging) SEE ALSO
svm-train(1), svm-scale(1) Linux MAY 2006 svm-predict(1)
All times are GMT -4. The time now is 12:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy