"description":"Storage type. Defaults to MySQL if available, else SQLite.",
"enum":[
"MySQL",
"SQLite"
],
"type":"string"
},
"private-tmpfs":{
"description":"Size of private tmpfs mount to store the database. See filesystems/tmpfs.txt in Linux documentation. Use only for testing.",
"type":"string"
...
...
@@ -126,24 +118,56 @@
"description":"List of bindings to test when running the test suite.",
"type":"array"
},
"storage-type":{
"description":"Storage type. Required when several types are configured and you select which one to use via 'node!' parameter. Defaults to whatever is configured ('sqlite' or 'mysql'), else MySQL if available, else SQLite.",
"enum":[
"MySQL",
"SQLite"
],
"type":"string"
},
"sqlite":{
"description":"Storage backend configuration.",
"properties":{
"relaxed-writes":{
"description":"When enabled, sets synchronous = OFF and journal_mode = MEMORY - RTFM, those options are dangerous.",
"default":false,
"type":"boolean"
}
},
"additionalProperties":{
"description":"See NEO documentation for the list of supported settings.",
"type":[
"number",
"string"
]
},
"type":"object"
},
"mysql":{
"description":"Dictionary containing parameters for MySQL.",
"default":{},
"description":"MariaDB server configuration.",
"properties":{
"relaxed-writes":{
"description":"When enabled, sets innodb_flush_log_at_trx_commit = 0, innodb_flush_method = nosync, innodb_doublewrite = 0 and sync_frm = 0 - RTFM, those options are dangerous",
"description":"When enabled, sets innodb_flush_log_at_trx_commit = 0, innodb_flush_method = nosync, innodb_doublewrite = 0 and sync_frm = 0 - RTFM, those options are dangerous.",
"default":false,
"type":"boolean"
}
},
"additionalProperties":{
"description":"To configure important parameters like innodb_buffer_pool_size, rocksdb_block_cache_size, etc.",
"type":"string"
"description":"To configure parameters like innodb_buffer_pool_size, rocksdb_block_cache_size, etc.",
"type":[
"number",
"string"
]
},
"type":"object"
},
"engine":{
"description":"Configures storage engine, currently only InnoDB and RocksDB are supported. Defaults to NEO's default.",
"description":"[MySQL only] For NEO, this is a creation-time parameter and it defaults to NEO's default. For mysqld, this sets plugins to load and it defaults to load all.",
"description":"Activate or inactivate Tx transmission and Rx reception. When inactive RU does no radio.",
"type":"string",
"enum":["ACTIVE","INACTIVE"],
"enum":[
"ACTIVE",
"INACTIVE"
],
"default":"INACTIVE"
},
"cpri_link":{
"title":"CPRI link settings",
"options":{
"dependencies":{
"ru_link_type":"cpri"
}
},
"type":"object",
"required":[
"sdr_dev",
...
...
@@ -78,13 +70,23 @@
"mapping":{
"title":"Mapping method of AxCs on the CPRI",
"type":"string",
"enum":["standard","hw","spread","bf1"]
"enum":[
"standard",
"hw",
"spread",
"bf1"
]
},
"mult":{
"title":"CPRI line bit rate multipler",
"description":"Select the CPRI line bit rate in terms of multiple of option 1 (614.4 Mbps). E.g set 4 for option 3, 8 for option 5 and 16 for option 7",