service.go 11.3 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 (
18 19 20
	"bytes"
	"compress/gzip"
	"encoding/gob"
21
	"errors"
22
	"math/rand"
23 24
	"os"
	"path/filepath"
25 26 27
	"sync"
	"time"

H
Helin Wang 已提交
28 29
	log "github.com/sirupsen/logrus"

30
	"github.com/PaddlePaddle/recordio"
31 32
)

33 34 35 36
const (
	dialTimeout = 5 * time.Second
)

37 38 39 40 41 42 43 44 45 46 47 48
// ErrAllTaskFailed occur when tasks are in done or failed state.
var ErrAllTaskFailed = errors.New("all task finished")

// ErrNoMoreAvailable occur when no task in todo and yet not all done or fail.
var ErrNoMoreAvailable = errors.New("no more available task")

// ErrPassBefore client side pass number does not match with master counter.
var ErrPassBefore = errors.New("pass number smaller than master")

// ErrPassAfter client side pass number does not match with master counter.
var ErrPassAfter = errors.New("pass number larger than master")

49 50 51 52
// Store is the interface for save and load the master state.
type Store interface {
	Save([]byte) error
	Load() ([]byte, error)
H
Helin Wang 已提交
53
	Shutdown() error
54 55 56 57 58 59 60 61
}

// Chunk is a chunk of data consisted of several data instances.
type Chunk struct {
	Path  string
	Index recordio.Index // chunk index
}

G
gongweibao 已提交
62 63 64 65 66 67
// TaskMeta is a struct which stores task's meta info.
type TaskMeta struct {
	ID    int
	Epoch int
}

68 69
// Task is the basic unit of data instances assigned to trainers.
type Task struct {
G
gongweibao 已提交
70
	Meta   TaskMeta
71 72 73 74
	Chunks []Chunk
}

type taskEntry struct {
G
gongweibao 已提交
75 76 77
	Task Task
	// A task fails if it's timeout or trainer reports it exits unnormally.
	NumFailure int
78 79 80 81 82 83
}

type taskQueues struct {
	Todo    []taskEntry
	Pending map[int]taskEntry // map from task ID to task entry
	Done    []taskEntry
G
gongweibao 已提交
84
	Failed  []taskEntry
85 86
}

87 88
// Service is the master server service.
type Service struct {
G
gongweibao 已提交
89 90 91 92
	chunksPerTask int
	timeoutDur    time.Duration
	failureMax    int
	store         Store
93

94 95 96 97 98 99 100 101
	ready    chan struct{}
	initDone bool

	mu         sync.Mutex
	taskQueues taskQueues
	currPass   int
	jobTasks   []taskEntry

102
	savingTrainer string
103 104
}

H
Helin Wang 已提交
105
func partition(chunks []Chunk, chunksPerTask int) []taskEntry {
106 107 108 109 110 111
	// generate uniq id across job using nanosecond + randint + counter
	// FIXME(typhoonzero): this is a workaround, use uuid
	randStart := rand.Int()
	counter := 0
	timestamp := time.Now().Nanosecond()
	id := timestamp + randStart + counter
H
Helin Wang 已提交
112 113
	if chunksPerTask <= 0 {
		chunksPerTask = 1
114 115 116 117 118
	}

	var result []taskEntry
	var cur taskEntry
	for i, c := range chunks {
H
Helin Wang 已提交
119
		if i%chunksPerTask == 0 && len(cur.Task.Chunks) > 0 {
G
gongweibao 已提交
120
			cur.Task.Meta.ID = id
121 122
			counter++
			id = timestamp + randStart + counter
123 124 125 126 127 128 129 130
			result = append(result, cur)
			cur.Task.Chunks = nil
		}

		cur.Task.Chunks = append(cur.Task.Chunks, c)
	}

	if len(cur.Task.Chunks) > 0 {
G
gongweibao 已提交
131
		cur.Task.Meta.ID = id
132 133 134 135 136 137 138
		result = append(result, cur)
	}

	return result
}

// NewService creates a new service.
G
gongweibao 已提交
139
func NewService(store Store, chunksPerTask int, timeoutDur time.Duration, failureMax int) (*Service, error) {
140
	s := &Service{}
141
	s.chunksPerTask = chunksPerTask
142
	s.timeoutDur = timeoutDur
G
gongweibao 已提交
143
	s.failureMax = failureMax
144 145
	s.taskQueues = taskQueues{}
	s.taskQueues.Pending = make(map[int]taskEntry)
146
	s.ready = make(chan struct{})
147 148 149 150 151
	s.store = store
	recovered, err := s.recover()
	if err != nil {
		return nil, err
	}
152

153 154 155 156 157
	if recovered {
		// Recovered. Now the state is already initialized,
		// and the master is ready.
		s.initDone = true
		close(s.ready)
158
		log.Info("Master recovered from saved state.")
159
	}
160

161
	return s, nil
162 163
}

164 165 166 167 168 169
// recover recovers service state from etcd.
func (s *Service) recover() (bool, error) {
	state, err := s.store.Load()
	if err != nil {
		return false, err
	}
170

171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
	if state == nil {
		log.Infoln("No state exists, not recovered.")
		return false, nil
	}

	log.Infof("Loaded snapshot of size: %d bytes.", len(state))
	gr, err := gzip.NewReader(bytes.NewReader(state))
	if err != nil {
		return false, err
	}

	dec := gob.NewDecoder(gr)
	var tqs taskQueues
	err = dec.Decode(&tqs)
	if err != nil {
		return false, err
	}

	err = gr.Close()
	if err != nil {
		// Only close failed, recover actually succeed, so
		// just log error.
		log.Errorln(err)
	}

	s.taskQueues = tqs
	return true, nil
198 199
}

200
// snapshot *must* be called with s.mu being held.
201
func (s *Service) snapshot() error {
202
	// TODO(helin): etcd request has a size limit, so the snapshot
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
	// size is limited by the max request size. We should either
	// divide the snapshot into smaller chunks and save under
	// different keys, or configure the request size to be big
	// enough:
	// https://github.com/coreos/etcd/blob/2f84f3d8d8ed8f9537ab6ffa44a3a1c7eddfa9b1/embed/config.go#L44
	var buf bytes.Buffer
	gw := gzip.NewWriter(&buf)
	enc := gob.NewEncoder(gw)
	err := enc.Encode(s.taskQueues)
	if err != nil {
		return err
	}
	err = gw.Close()
	if err != nil {
		return err
	}

	state := buf.Bytes()
	log.Infof("Saving snapshot of size: %d bytes.", len(state))
	return s.store.Save(state)
223 224
}

H
Helin Wang 已提交
225
func readChunks(globPaths []string) ([]Chunk, error) {
226 227 228 229 230 231
	var chunks []Chunk
	var paths []string

	for _, s := range globPaths {
		match, err := filepath.Glob(s)
		if err != nil {
H
Helin Wang 已提交
232
			return nil, err
233 234 235 236 237
		}
		paths = append(paths, match...)
	}

	if len(paths) == 0 {
H
Helin Wang 已提交
238
		return nil, errors.New("no valid dataset specified")
239 240 241 242 243
	}

	for _, path := range paths {
		f, err := os.Open(path)
		if err != nil {
H
Helin Wang 已提交
244
			return nil, err
245 246 247 248
		}

		index, err := recordio.LoadIndex(f)
		if err != nil {
H
Helin Wang 已提交
249
			return nil, err
250 251 252
		}
		err = f.Close()
		if err != nil {
H
Helin Wang 已提交
253
			return nil, err
254 255 256
		}

		count := index.NumChunks()
257
		log.Infof("readChunks: file %s has %d chunks", path, count)
258 259 260 261 262 263 264 265 266
		for i := 0; i < count; i++ {
			chunk := Chunk{
				Path:  path,
				Index: *index.ChunkIndex(i),
			}
			chunks = append(chunks, chunk)
		}
	}

H
Helin Wang 已提交
267 268 269 270 271 272 273
	return chunks, nil
}

// SetDataset sets dataset to dispatch for the master server.
//
// SetDataset can be call multiple times. But only the first call will
// be honored.
274
func (s *Service) SetDataset(globPaths []string, _ *int) error {
H
Helin Wang 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287
	if len(globPaths) == 0 {
		return errors.New("no dataset specified")
	}

	s.mu.Lock()
	defer s.mu.Unlock()
	if s.initDone {
		// Already initialized. All trainer will call
		// SetDataset, but we only handle the first one. Treat
		// other calls as successful but do nothing.
		return nil
	}

H
Helin Wang 已提交
288
	chunks, err := readChunks(globPaths)
H
Helin Wang 已提交
289 290 291 292
	if err != nil {
		return err
	}

293 294
	s.jobTasks = partition(chunks, s.chunksPerTask)
	s.taskQueues.Todo = s.jobTasks
295

H
Helin Wang 已提交
296
	err = s.snapshot()
297
	if err != nil {
H
Helin Wang 已提交
298
		log.Errorln(err)
299 300 301
		return err
	}
	close(s.ready)
H
Helin Wang 已提交
302
	s.initDone = true
303 304 305
	return nil
}

306 307
// processFailedTask retry s.failureMax times for failed task.
// return true if all task are done or failed.
G
gongweibao 已提交
308 309
func (s *Service) processFailedTask(t taskEntry, epoch int) {
	if t.Task.Meta.Epoch != epoch {
G
gongweibao 已提交
310 311 312 313 314 315 316 317 318 319 320 321
		// new epoch, task launched after the
		// schedule of this timeout check or failed status report.
		return
	}

	defer func() {
		err := s.snapshot()
		if err != nil {
			log.Errorln(err)
		}
	}()

G
gongweibao 已提交
322
	delete(s.taskQueues.Pending, t.Task.Meta.ID)
G
gongweibao 已提交
323

G
gongweibao 已提交
324 325 326
	t.NumFailure++
	if t.NumFailure > s.failureMax {
		log.Warningf("Task %v failed %d times, discard.", t.Task, t.NumFailure)
G
gongweibao 已提交
327 328 329 330
		s.taskQueues.Failed = append(s.taskQueues.Failed, t)
		return
	}

331
	log.Warningf("Task %v failed %d times, re-dispatch.", t.Task, t.NumFailure)
G
gongweibao 已提交
332
	s.taskQueues.Todo = append(s.taskQueues.Todo, t)
333
	return
G
gongweibao 已提交
334 335
}

H
Helin Wang 已提交
336 337 338 339 340 341 342 343 344 345
func (s *Service) checkTimeoutFunc(taskID int, epoch int) func() {
	return func() {
		s.mu.Lock()
		defer s.mu.Unlock()

		t, ok := s.taskQueues.Pending[taskID]
		if !ok {
			return
		}

G
gongweibao 已提交
346
		s.processFailedTask(t, epoch)
H
Helin Wang 已提交
347 348 349
	}
}

H
Helin Wang 已提交
350 351 352 353 354 355 356 357 358 359
// must be called with lock held.
func (s *Service) logFields() log.Fields {
	return log.Fields{
		"todoLen":    len(s.taskQueues.Todo),
		"pendingLen": len(s.taskQueues.Pending),
		"doneLen":    len(s.taskQueues.Done),
		"failedLen":  len(s.taskQueues.Failed),
	}
}

360
// GetTask gets a new task from the service.
361 362
// passID is the client side pass count
func (s *Service) GetTask(passID int, task *Task) error {
363 364 365 366
	select {
	case <-s.ready:
	}

367 368
	s.mu.Lock()
	defer s.mu.Unlock()
369 370 371 372 373 374 375 376
	if passID < s.currPass {
		return ErrPassBefore
	}
	if passID > s.currPass {
		// Client may get run to pass after master when one client faster than the
		// other
		return ErrPassAfter
	}
377 378

	if len(s.taskQueues.Todo) == 0 {
379 380 381
		if len(s.taskQueues.Done) == 0 && len(s.taskQueues.Pending) == 0 {
			log.WithFields(s.logFields()).Warningln("All tasks failed, may start next pass")
			return ErrAllTaskFailed
382
		}
383 384
		log.WithFields(s.logFields()).Warningln("No more available task.")
		return ErrNoMoreAvailable
385 386 387
	}

	t := s.taskQueues.Todo[0]
G
gongweibao 已提交
388
	t.Task.Meta.Epoch++
389
	s.taskQueues.Todo = s.taskQueues.Todo[1:]
G
gongweibao 已提交
390
	s.taskQueues.Pending[t.Task.Meta.ID] = t
391 392 393 394 395
	err := s.snapshot()
	if err != nil {
		return err
	}

396
	*task = t.Task
G
gongweibao 已提交
397
	log.WithFields(s.logFields()).Infof("Task #%v dispatched.", t.Task.Meta)
398

G
gongweibao 已提交
399
	time.AfterFunc(s.timeoutDur, s.checkTimeoutFunc(t.Task.Meta.ID, t.Task.Meta.Epoch))
400 401 402 403
	return nil
}

// TaskFinished tell the service that a task is finished.
404
func (s *Service) TaskFinished(taskID int, dummy *int) error {
405 406 407 408
	select {
	case <-s.ready:
	}

409 410 411 412 413
	s.mu.Lock()
	defer s.mu.Unlock()

	t, ok := s.taskQueues.Pending[taskID]
	if !ok {
H
Helin Wang 已提交
414
		log.WithFields(s.logFields()).Warningln("Pending task #%d not found.", taskID)
G
gongweibao 已提交
415
		return nil
416 417 418
	}

	// task finished, reset timeout
G
gongweibao 已提交
419
	t.NumFailure = 0
420 421
	s.taskQueues.Done = append(s.taskQueues.Done, t)
	delete(s.taskQueues.Pending, taskID)
422

H
Helin Wang 已提交
423
	log.WithFields(s.logFields()).Infof("Task #%d finished.", taskID)
424 425 426 427 428 429 430 431
	if len(s.taskQueues.Todo) == 0 && len(s.taskQueues.Pending) == 0 {
		// increase master side pass count if all tasks finished
		s.currPass++
		s.taskQueues.Todo = s.jobTasks
		s.taskQueues.Done = []taskEntry{}
		// TODO(typhoonzero): deal with failed tasks
		s.taskQueues.Failed = []taskEntry{}
		log.WithFields(s.logFields()).Warningf("all task finished, add new pass data, newpass: %d.", s.currPass)
432 433
	}

H
Helin Wang 已提交
434 435 436 437 438
	err := s.snapshot()
	if err != nil {
		log.Errorln(err)
	}
	return err
439
}
G
gongweibao 已提交
440

G
gongweibao 已提交
441
// TaskFailed tells the service that a task is failed.
442
func (s *Service) TaskFailed(meta TaskMeta, dummy *int) error {
G
gongweibao 已提交
443 444 445 446 447 448 449
	select {
	case <-s.ready:
	}

	s.mu.Lock()
	defer s.mu.Unlock()

G
gongweibao 已提交
450
	t, ok := s.taskQueues.Pending[meta.ID]
G
gongweibao 已提交
451
	if !ok {
G
gongweibao 已提交
452
		log.WithFields(s.logFields()).Warningln("TaskFailed:Pending task #%v not found.", t.Task.Meta)
G
gongweibao 已提交
453
		return nil
G
gongweibao 已提交
454 455
	}

G
gongweibao 已提交
456
	s.processFailedTask(t, meta.Epoch)
G
gongweibao 已提交
457 458
	return nil
}
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497

// SaveModelRequest is the request for saving model
type SaveModelRequest struct {
	TrainerID string
	BlockDur  time.Duration
}

// RequestSaveModel requests the master server to approve the caller
// to save the model.
func (s *Service) RequestSaveModel(req SaveModelRequest, need *bool) error {
	s.mu.Lock()
	defer s.mu.Unlock()

	if req.TrainerID == "" {
		return errors.New("trainer id is empty")
	}

	if s.savingTrainer == "" {
		*need = true
	} else {
		if req.TrainerID == s.savingTrainer {
			// save trainer asked to save model again
			*need = true
		} else {
			*need = false
		}
	}

	if *need {
		s.savingTrainer = req.TrainerID
		time.AfterFunc(req.BlockDur, func() {
			s.mu.Lock()
			s.savingTrainer = ""
			s.mu.Unlock()
		})
	}

	return nil
}