Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

Hi folks,

I see in Sybase Central, on Overview panel, the following information on Statistics frame:

"The current number of uncompleted I/Os issued by the server: 38 The number of requests waiting to be fulfilled: 1"

What does this information mean???? I did not find any explanation on documentatio.

Thanks!

asked 29 May '13, 01:47

Roger's gravatar image

Roger
1265510
accept rate: 0%


The CurrIO property (current number of file I/Os that were issued by the server but haven't yet completed) is not reliable due to a known problem.

At least, it was an acknowledged problem as of Tue, Nov 8, 2011 (in a private email) and I've heard nothing since.

For that reason, CurrIO property, displayed under the title "Active I/O", was removed from Version 2 of Foxhound; there's no point displaying a statistic that has little relationship with reality.

At some point, the problem will surely be fixed, and subsequent releases of Foxhound will start displaying it for target databases running on servers built on or after the fix was made.

For the record, here are a couple of ancient trouble reports...


Sun, Jun 1, 2008 at 8:44 AM

For some time I have noticed wildly high values of CurrIO... it grows by leaps and bounds, stays high for hours and hours even when there's no activity, and remains unaffected by checkpoints.

None of which bothers me per se, other than shouting out "I am a meaningless statistic!"... or am I missing something?

SELECT @@VERSION, DB_PROPERTY ( 'CurrIO' ) AS CurrIO, DB_PROPERTY ( 'DiskRead' ) AS DiskRead, DB_PROPERTY ( 'DiskWrite' ) AS DiskWrite; @@VERSION,CurrIO,DiskRead,DiskWrite '11.0.0.1083 Panorama Beta','219007','17166','296'


11/07/2011 06:24 AM

As of 12.0.1.3298 the CurrIO statistic still regularly reports bogus values
like 40, 80, 101, 120 (growing) for an idle server.

As such, it is pretty much useless.

Sadly, the Help still talks about watching CurrIO as if it's going to tell you something meaningful:

When hardware resources are a limiting factor

permanent link

answered 29 May '13, 15:39

Breck%20Carter's gravatar image

Breck Carter
32.5k5417261050
accept rate: 20%

edited 29 May '13, 15:44

Hi Roger,

The value beside "The current number of uncompleted I/Os issued by the server" is the database property 'CurrIO' which is the sum of the read and write requests sent to the OS (usually hard drive access requests) that have not yet completed.

The value beside "The number of requests waiting to be fulfilled" is the 'UnschReq' server property which describes the number of requests that are currently queued waiting for a server worker thread.

Information on accessing other server properties can be found here

Information on accessing other database properties can be found here

permanent link

answered 29 May '13, 15:08

Mikel%20Rychliski's gravatar image

Mikel Rychliski
2.1k1641
accept rate: 32%

Thank you guys!

I understood the CurrIO statistic is not reliable. Ok.

About the "The number of requests waiting to be fulfilled", can I do anything to solve the problem of queue of server worker thread?

Thanks! Roger

permanent link

answered 29 May '13, 16:17

Roger's gravatar image

Roger
1265510
accept rate: 0%

Roger -

Which version of SQL Anywhere are you using? Newer versions should automatically increase the number of workers to handle a higher volume of requests. It's important to note that if system resources are scarce SQL Anywhere will not increase the number of workers, to prevent them from competing over resources with each other. The command:

"SELECT value FROM sa_eng_properties() WHERE PropName='MultiProgrammingLevel';"

will show the current number of workers. The default value at startup is 20, the default max is 80. Here are instructions for changing these values:

http://dcx.sybase.com/index.html#sa160/en/dbadmin/running-s-3713576.html

Although if SQL Anywhere is not creating new workers, it's probably for a good reason, you may not have sufficient RAM or CPU time

(29 May '13, 17:15) Mikel Rychliski
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×275
×21

question asked: 29 May '13, 01:47

question was seen: 4,194 times

last updated: 29 May '13, 17:15