Concurrent Queries

Note the Virtuoso docker container environment variable settings take the form of VIRT_SECTION_KEY=VALUE as per Virtuoso Docker Reference Guide, thus params you refer to should be:

VIRT_PARAMETERS_SERVERTHREADS
VIRT_PARAMETERS_MAXCLIENTCONNECTIONS
VIRT_HTTPSERVER_MAXCLIENTCONNECTIONS

ie he Key name does no have any underscores in it as is as per in the INI file and be be in upper, lower or mixed case.

In Virtuoso the ServerThreads and MaxClientConnection keys are the same thing the former being the original name and retained as an alias for the latter such that either work.

With regards to the Virtuoso ServerThreads/MaxClientConnection keys these represent these operating system and not CPUs threads, for which there is not a one to one relationship. The operating system can allocate more OS threads for use than CPUs threads , thus you can see the ServerThreads/MaxClientConnection keys large then the number of CPU threads setting to something closer to the number of concurrent connections expected. Noting that in the case of the commercially licensed Virtuoso product , each connections requires a thread and consumes a license point, which would also limit the number of concurrent connections that can be made.

In terms of concurrent queries Virtuoso has Vectored Execution and Query Parallelization support to aid with the parallel/concurrent execution of queries with a number of INI file params in the documentation for controlling this behaviour.