Releases: nathanschwarz/meteor-cluster
2.3.0 - compatibility bump to meteor 2.4 due to meteor breaking changes
- the package is now only compatible for
meteor@^2.4
- replaced
_ensureIndex
bycreateIndex
(#14)
2.2.0
Added autoInitialize
field in the MasterCluster
options :
an optional parameter that controls whether the system will automatically initialize the cluster's polling for jobs when the MasterCluster
is created. Default is set to true
.
2.1.9
Added keepAlive
field to the Cluster config.
keepAlive: String | Int
:
- 'always' : never shuts down workers even when no jobs are available.
- 'default' : shuts down workers when no jobs are available.
- Int : value in ms : shuts down workers if no jobs are available after the delay.
Rightly set, this enables to avoid shutdown / startup delays and resources consumptions.
2.1.8
Added the logs
field in the cluster config object.
Default value is set to 'all'
.
You can disable the worker logs with logs: 'error'
.
v2.1.7
reverse a change made for v2.1.6
leading to messages being sent to the worker before it was ready.
v2.1.6
Patched memory leak when using recurring tasks.
Updated the documentation about recurring tasks.
no breaking changes.
v2.1.4
Patched Error due to undefined option object in the Cluster Constructor: force the value to the default option.
v2.1.0
breaking changes :
- removed
closeIPC
from ipc callback.
updated package tests and documentation accordingly.
v2.0.1
- added IPC feature.
- added test suite.
- updated documentation.
- rebased code for more readability.
No breaking changes.