The ALTER STORAGE UNIT
syntax is used to alter storage units for the currently selected logical database.
AlterStorageUnit ::=
'ALTER' 'STORAGE' 'UNIT' storageUnitDefinition (',' storageUnitDefinition)*
storageUnitDefinition ::=
storageUnitName '(' ('HOST' '=' hostName ',' 'PORT' '=' port ',' 'DB' '=' dbName | 'URL' '=' url) ',' 'USER' '=' user (',' 'PASSWORD' '=' password)? (',' propertiesDefinition)?')'
storageUnitName ::=
identifier
hostname ::=
string
port ::=
int
dbName ::=
string
url ::=
string
user ::=
string
password ::=
string
propertiesDefinition ::=
'PROPERTIES' '(' key '=' value (',' key '=' value)* ')'
key ::=
string
value ::=
literal
use
command to
select a database;ALTER STORAGE UNIT
is not allowed to change the real data source associated with this storageUnit (determined by host, port and db);ALTER STORAGE UNIT
will switch the connection pool. This operation may affect the ongoing business, please use it with
caution;PROPERTIES
is optional, used to customize connection pool properties, key
must be the same as the connection pool
property name.ALTER STORAGE UNIT ds_0 (
HOST=127.0.0.1,
PORT=3306,
DB=db_0,
USER=root,
PASSWORD=root
);
ALTER STORAGE UNIT ds_1 (
HOST=127.0.0.1,
PORT=3306,
DB=db_1,
USER=root,
PASSWORD=root
PROPERTIES("maximumPoolSize"=10)
);
ALTER STORAGE UNIT ds_2 (
URL="jdbc:mysql://127.0.0.1:3306/db_2?serverTimezone=UTC&useSSL=false&allowPublicKeyRetrieval=true",
USER=root,
PASSWORD=root,
PROPERTIES("maximumPoolSize"=10,"idleTimeout"="30000")
);
ALTER
, STORAGE
, UNIT
, HOST
, PORT
, DB
, USER
, PASSWORD
, PROPERTIES
, URL