|
@ -53,9 +53,10 @@ func (t *Topology) loadConfiguration(configurationFile string) error { |
|
|
b, e := ioutil.ReadFile(configurationFile) |
|
|
b, e := ioutil.ReadFile(configurationFile) |
|
|
if e == nil { |
|
|
if e == nil { |
|
|
t.configuration, e = NewConfiguration(b) |
|
|
t.configuration, e = NewConfiguration(b) |
|
|
} |
|
|
|
|
|
return e |
|
|
return e |
|
|
} |
|
|
} |
|
|
|
|
|
return nil |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
func (t *Topology) Lookup(vid storage.VolumeId) []*DataNode { |
|
|
func (t *Topology) Lookup(vid storage.VolumeId) []*DataNode { |
|
|
for _, vl := range t.replicaType2VolumeLayout { |
|
|
for _, vl := range t.replicaType2VolumeLayout { |
|
|