To see the current values used by a running server ...
SHOW VARIABLES;
You can modify it further like any query:
SHOW VARIABLES LIKE '%pool%';
Or query the information schema with something like...
SELECT @@variable_name
or...
SELECT variable_name,
variable_value
FROM performance_schema.global_variables
WHERE variable_name LIKE '%pool%';
To see the values that a server uses based on its compiled-in defaults and any option files that it reads...
mysqld --verbose --help
To see the values that a server uses based on only its compiled-in defaults, ignoring any option files...
mysqld --no-defaults --verbose --help
SET GLOBAL parameter=value;
To make the change permanent you should also update /etc/my.cnf