admin_startStateMigration
The startStateMigration is an administrative method that starts a state migration and removes old state/storage trie nodes. This can save the storage space of a Klaytn node. The method returns an error if it fails to start a state migration, or null if it succeeds to start. NOTE: After the state migration, the node cannot serve APIs with previous states.
JSONRPC: admin_startStateMigration
Request
- application/json
Body
method stringrequired
Default value: admin_startStateMigration
Method name
id int64required
Default value: 1
Request ID, Random or Auto incrementation
jsonrpc stringrequired
Default value: 2.0
JSON-RPC Version (2.0)
params array
Responses
- 200
null if the state migration has started, or an error message if not.
- application/json
- Schema
- Example (from schema)
Schema
jsonrpc stringrequired
Default value: 2.0
id int64required
error
object
result string
null if the state migration has started, or an error message if not.
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": null
}
- curl
- python
- nodejs
- java
- CURL
curl -L -X POST 'http://localhost:8551/admin/startStateMigration' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"method": "admin_startStateMigration",
"id": 1,
"jsonrpc": "2.0",
"params": [
null
]
}'
ResponseClear