A single new feature: the new log-structured metadata store implementation, described in the presentation from Moscow Highload'2025 (check it out [here](https://vitastor.io/en/docs/#talks-and-presentations)). It's now the default store for new OSDs. The support for the old store is also left in place, you can still choose it for new OSDs with `vitastor-disk prepare --meta_format 2`. OSDs from previous versions with the old store format will also continue to operate just like before.
25 lines
529 B
JSON
25 lines
529 B
JSON
{
|
|
"name": "vitastor-mon",
|
|
"version": "3.0.0",
|
|
"description": "Vitastor SDS monitor service",
|
|
"main": "mon-main.js",
|
|
"scripts": {
|
|
"lint": "eslint *.js lp_optimizer/*.js scripts/*.js"
|
|
},
|
|
"author": "Vitaliy Filippov",
|
|
"license": "UNLICENSED",
|
|
"dependencies": {
|
|
"antietcd": "^1.1.3",
|
|
"sprintf-js": "^1.1.2",
|
|
"ws": "^7.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.0.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-node": "^11.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
}
|
|
}
|