I use this config:
{
"autoDeploy": true, (Also I have tried false value)
"readQuorum": 1,
"writeQuorum": "majority",
"executionMode": "undefined",
"readYourWrites": true,
"newNodeStrategy": "static",
"servers": {
"*": "master"
},
"clusters": {
"internal": {
},
"class_01": {
"servers": ["n01"]
},
"class_02": {
"servers": ["n01","n02"]
},
"class_03": {
"servers": ["n03"]
},
"*": {
"servers": ["<NEW_NODE>"]
}
}
}
Does anyone use something like this config and could use this query: Select from Class (not Select from class_01 or Select from class_02 ...)
As I read "Read records", it is possible to use Select from Class. But I can't use it.
Even if I run Select from cluster:class_03 from n01 I won't have response (I will get error)
If I run Select from cluster:class_01 from n01 I will get the result.
What should I do? (FYI: My orientdb version is 2.2.33)