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.

It's about following topic "Multiprogramming level (-gn server option)"

Quote from the article "When the number of tasks in the server Exceeds the multiprogramming level, the outstanding tasks must wait until a currently-running, or active task completes, by default its about 20 tasks"

I don't want that too many tasks in the queue... Where can I check whether the value has already been exceeded? Is it possible to find out the current number of tasks? I mean not the default I have already checked and currently stands at 20

asked 06 Jul '14, 05:57

pmiller's gravatar image

pmiller
206162024
accept rate: 37%

edited 06 Jul '14, 06:04


Exact answer to the question you asked: SELECT PROPERTY ( 'ActiveReq' )

Short answer: This query will tell you the number of server workers that are currently handling client-side requests (ActiveReq) and the number of requests that are currently queued up waiting for an available server worker (UnschReq)...

SELECT PROPERTY ( 'ActiveReq' ), PROPERTY ( 'UnschReq' );

PROPERTY('ActiveReq'),PROPERTY('UnschReq')
'20','12'

Long answer: Be wary of changing -gn. The default 20 was carefully chosen to be a good value under most conditions.

In particular, if you are having performance problems, and you notice that UnschReq is sometimes much larger than zero, do not expect that a larger -gn will always guarantee success.

Here is an example of a SQL Anywhere 10 database with 83 connections, 40 of which are extremely busy doing updates. The following Foxhound screenshot shows performance statistics (including ActiveReq and UnschReq) captured every 10 seconds with the most recent sample at the top.

The first test (at the bottom) used -gn 20, and the second test used -gn 40. The UnschReq value did drop almost to zero in the second test, but there was no significant change in either Latency or Throughput... in other words, UnschReq got better but the users didn't notice.

alt text

permanent link

answered 06 Jul '14, 09:33

Breck%20Carter's gravatar image

Breck Carter
32.5k5417261050
accept rate: 20%

edited 06 Jul '14, 11:00

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:

×10

question asked: 06 Jul '14, 05:57

question was seen: 6,522 times

last updated: 06 Jul '14, 11:00