2.1.1 • Published 3 years ago

tfork v2.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

tfork

this project was fork the package of cfork.

we found cfork can not fork different worker by env

cluster fork and restart easy way.

  • Easy fork with worker file path
  • Handle worker restart, even it was exit unexpected.
  • Auto error log process uncaughtException event
  • set envs, worker count is length of envs ,and every worker's env different. if worker was exit because of configFile, will not refork.

Install

$ npm install tfork --save

Usage

Example

const tfork = require('tfork');
const util = require('util');

new tfork({
  exec: '/your/app/worker.js',
  count: require('os').cpus().length,
}, callback())
// or tfork('./config.json')
// callback() is optional
.start()
.on('fork', worker => {
  console.warn(`new worker was started`)
.on('disconnect', worker => {
  console.warn(`worker will  disconnect`);
})
.on('exit', (worker, code, signal) => {
  
  console.error(`${worker.process.pid}`)
  })


.on('unexpectedExit', (worker, code, signal) => {
  // logger what you want
})

// emit when reach refork times limit
.on('reachReforkLimit', () => {
  // do what you want
}).getWorkers()
// return all workers

// if you do not listen to this event
// cfork will listen it and output the error message to stderr
process.on('uncaughtException', err => {
  // do what you want
});

Options

options can be an object or a file/dir(config path), you can edit content of your config file and it will work 1 minute later

  • exec : exec file path
  • args : exec arguments
  • count : fork worker nums, default is os.cpus().length
  • duration: default is 60000, one minute (so, the refork times < limit / duration)
  • env: attach some environment variable key-value pairs to the worker / slave process, default to an empty object.
  • evns: if you want every worker has different env config ,you can set this field, default is [].example, envs:{name:1},{name:2}
  • clusterModel:
    • 'both':every worker has same evn config
    • 'each':every worker has different evn config
  • callback: when the worker was exit ,callback will be wake up

License

(The MIT License)

Copyright (c) 2014 - 2017 node-modules and other contributors

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2.1.1

3 years ago

2.1.0

3 years ago

2.0.15

3 years ago

2.0.16

3 years ago

2.0.13

3 years ago

2.0.14

3 years ago

2.0.11

3 years ago

2.0.7

3 years ago

2.0.12

3 years ago

2.0.6

3 years ago

2.0.9

3 years ago

2.0.10

3 years ago

2.0.8

3 years ago

2.0.19

3 years ago

2.0.17

3 years ago

2.0.18

3 years ago

2.0.5

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.4

3 years ago

2.0.1

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

1.9.9

3 years ago

1.9.8

3 years ago

1.9.7

3 years ago

1.9.6

3 years ago

1.9.5

3 years ago

1.9.4

3 years ago

1.9.3

3 years ago

1.9.2

3 years ago

2.0.0

3 years ago

1.9.1

3 years ago

1.9.0

3 years ago