Hi there,
I freshly started trying out foundationDB.
I set the locality_machineid for different processes to make fdb think that there are 3 machines.
However, after configure new single ssd
the reported redundancy mode is unknown, like the following
fdb> status
Using cluster file `/usr/local/etc/foundationdb/fdb.cluster’.
Configuration:
Redundancy mode - unknown
Storage engine - ssd-2
Coordinators - 3
Cluster:
FoundationDB processes - 3
Machines - 3
Memory availability - 5.7 GB per process on machine with least available
Fault Tolerance - 0 machines
Server time - 05/08/18 00:34:41
Data:
Replication health - (Re)initializing automatic data distribution
Moving data - unknown (initializing)
Sum of key-value sizes - unknown
Disk space used - 0 MB
Operating space:
Storage server - 358.9 GB free on most full server
Log server - 358.9 GB free on most full server
Workload:
Read rate - 11 Hz
Write rate - 0 Hz
Transactions started - 0 Hz
Transactions committed - 0 Hz
Conflict rate - 0 Hz
Backup and DR:
Running backups - 0
Running DRs - 0
If I ran ‘configure double’ in this case, it hangs and reports the database is unavailable.
This is my config file
[general]
cluster_file = /usr/local/etc/foundationdb/fdb.cluster
[fdbserver]
command = /Users/me/psnl/3rdparty/apple/foundationdb/bin/fdbserver
public_address = 127.0.0.1:$ID
listen_address = 127.0.0.1:$ID
datadir = /Users/me/var/lib/foundationdb/data/$ID
logdir = /Users/me/var/log/foundationdb/
[fdbserver.9000]
locality_machineid = fdb9000
[fdbserver.9001]
locality_machineid = fdb9001
[fdbserver.9002]
locality_machineid = fdb9002
Did I miss configured anything ? THanks