client.go 5.8 KB
Newer Older
D
dongzhihong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

15 16 17
package master

import (
H
Helin Wang 已提交
18
	"os"
19
	"time"
20 21

	"github.com/PaddlePaddle/Paddle/go/connection"
H
Helin Wang 已提交
22
	"github.com/PaddlePaddle/recordio"
23
	"github.com/coreos/etcd/clientv3"
H
Helin Wang 已提交
24
	log "github.com/sirupsen/logrus"
25 26 27 28
)

// Client is the client of the master server.
type Client struct {
29 30 31
	conn    *connection.Conn
	ch      chan record
	bufSize int
G
gongweibao 已提交
32 33 34 35 36
}

type record struct {
	r   []byte
	err error
37 38
}

39
// WithBuffer sets the client to buffer the training record.
40 41 42
//
// bufSize is the record buffer size. NextRecord will read from this
// buffer.
43 44 45 46 47
func WithBuffer(bufSize int) func(*Client) error {
	return func(c *Client) error {
		if bufSize <= 0 {
			return nil
		}
48
		c.bufSize = bufSize
49 50 51 52 53 54 55 56 57 58 59 60 61 62
		return nil
	}
}

// WithAddr sets the client to use fixed master address.
func WithAddr(addr string) func(c *Client) error {
	return func(c *Client) error {
		ch := make(chan string, 1)
		ch <- addr
		go c.monitorMaster(ch)
		return nil
	}
}

63 64 65 66
func retry(f func() error, dur time.Duration, count int) error {
	err := f()
	if err != nil {
		if count > 0 {
H
Helin Wang 已提交
67
			time.Sleep(dur)
68 69 70 71 72 73 74
			return retry(f, dur, count-1)
		}
		return err
	}
	return nil
}

75 76 77
// WithEtcd sets the client to use etcd for master discovery.
func WithEtcd(endpoints []string, timeout time.Duration) func(*Client) error {
	return func(c *Client) error {
78 79 80 81 82 83 84 85 86 87
		var cli *clientv3.Client
		f := func() error {
			var err error
			cli, err = clientv3.New(clientv3.Config{
				Endpoints:   endpoints,
				DialTimeout: timeout,
			})
			return err
		}
		err := retry(f, time.Second, 10)
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
		if err != nil {
			return err
		}

		ch := make(chan string, 1)
		a, err := GetKey(cli, DefaultAddrPath, timeout)
		if err != nil {
			return err
		}

		if a != "" {
			// Master is registered, send to the master address
			// channel.
			ch <- a
		}

		go watchKey(cli, DefaultAddrPath, ch)
		go c.monitorMaster(ch)
		return nil
	}
}

// NewClient creates a new Client.
func NewClient(opts ...func(*Client) error) (*Client, error) {
112 113
	c := &Client{}
	c.conn = connection.New()
114 115 116 117 118 119 120

	for _, opt := range opts {
		err := opt(c)
		if err != nil {
			return nil, err
		}
	}
121
	c.ch = make(chan record, c.bufSize)
122
	return c, nil
123 124
}

125 126 127 128 129 130
// StartGetRecords must be called at beginning of each pass
func (c *Client) StartGetRecords(passID int) {
	go c.getRecords(passID)
}

func (c *Client) getRecords(passID int) {
H
Helin Wang 已提交
131
	for {
132
		t, err := c.getTask(passID)
H
Helin Wang 已提交
133
		if err != nil {
134 135 136 137 138 139 140 141 142 143 144 145
			if err.Error() == ErrPassBefore.Error() ||
				err.Error() == ErrNoMoreAvailable.Error() ||
				err.Error() == ErrAllTaskFailed.Error() {
				c.ch <- record{nil, err}
				break
			}
			if err.Error() == ErrPassAfter.Error() {
				// wait util last pass finishes
				time.Sleep(time.Second * 3)
				continue
			}
			log.Errorf("getTask error: %s", err)
H
Helin Wang 已提交
146 147 148
		}

		for _, chunk := range t.Chunks {
149 150 151
			f, e := os.Open(chunk.Path)
			if e != nil {
				log.Errorln(e)
H
Helin Wang 已提交
152 153 154 155 156
				continue
			}

			s := recordio.NewRangeScanner(f, &chunk.Index, -1, -1)
			for s.Scan() {
G
gongweibao 已提交
157
				c.ch <- record{s.Record(), nil}
H
Helin Wang 已提交
158 159
			}

160
			if s.Err() != nil {
G
gongweibao 已提交
161
				c.ch <- record{nil, s.Err()}
H
Helin Wang 已提交
162
				log.Errorln(err, chunk.Path)
163 164
			}

H
Helin Wang 已提交
165 166
			err = f.Close()
			if err != nil {
H
Helin Wang 已提交
167
				log.Errorln(err)
H
Helin Wang 已提交
168 169
			}
		}
170 171 172 173

		// We treat a task as finished whenever the last data
		// instance of the task is read. This is not exactly
		// correct, but a reasonable approximation.
H
Helin Wang 已提交
174 175 176 177
		err = c.taskFinished(t.Meta.ID)
		if err != nil {
			log.Errorln(err)
		}
H
Helin Wang 已提交
178 179 180
	}
}

181
func (c *Client) monitorMaster(addrCh <-chan string) {
182
	lastMaster := ""
183
	for curMaster := range addrCh {
H
Helin Wang 已提交
184
		// connect to the new address once address changed.
185 186 187 188
		if curMaster != lastMaster {
			if curMaster == "" {
				err := c.conn.Close()
				if err != nil {
H
Helin Wang 已提交
189
					log.Errorln(err)
190 191 192 193
				}
			} else {
				err := c.conn.Connect(curMaster)
				if err != nil {
H
Helin Wang 已提交
194
					log.Errorln(err)
195 196 197 198 199 200 201 202 203 204 205 206

					// connect to addr failed, set
					// to last known addr in order
					// to retry next time.
					curMaster = lastMaster
				}
			}
		}
		lastMaster = curMaster
	}
}

207 208 209 210
// SetDataset sets dataset to dispatch for the master server.
//
// SetDataset can be call multiple times at one pass. But only the first call
// will be honored.
211
//
212
// After all tasks are done, another call of SetDataset will start another pass.
213
func (c *Client) SetDataset(globPaths []string) error {
214 215
	err := c.conn.Call("Service.SetDataset", globPaths, nil)
	return err
216 217
}

H
Helin Wang 已提交
218
// getTask gets a new task from the master server.
219
func (c *Client) getTask(passID int) (Task, error) {
220
	var t Task
221
	err := c.conn.Call("Service.GetTask", passID, &t)
222 223 224 225
	return t, err
}

// TaskFinished tells the master server a task is finished.
H
Helin Wang 已提交
226
func (c *Client) taskFinished(taskID int) error {
227
	return c.conn.Call("Service.TaskFinished", taskID, nil)
228
}
H
Helin Wang 已提交
229

G
gongweibao 已提交
230
// TaskFailed tell the master server as task is failed.
G
gongweibao 已提交
231
func (c *Client) taskFailed(meta TaskMeta) error {
G
gongweibao 已提交
232
	return c.conn.Call("Service.TaskFailed", meta, nil)
G
gongweibao 已提交
233 234
}

H
Helin Wang 已提交
235 236
// NextRecord returns next record in the dataset.
//
H
Helin Wang 已提交
237
// NextRecord will block until the next record is available. It is
H
Helin Wang 已提交
238
// thread-safe.
G
gongweibao 已提交
239 240 241
func (c *Client) NextRecord() ([]byte, error) {
	r := <-c.ch
	return r.r, r.err
H
Helin Wang 已提交
242
}
243 244 245 246 247 248 249 250

// RequestSaveModel requests the master server to approve the caller
// to save the model.
func (c *Client) RequestSaveModel(trainerID string, blockDur time.Duration) (bool, error) {
	var need bool
	err := c.conn.Call("Service.RequestSaveModel", SaveModelRequest{TrainerID: trainerID, BlockDur: blockDur}, &need)
	return need, err
}