Skip to content

Releases: nathanschwarz/meteor-cluster

2.3.0 - compatibility bump to meteor 2.4 due to meteor breaking changes

14 Apr 15:21
Compare
Choose a tag to compare
  • the package is now only compatible for meteor@^2.4
  • replaced _ensureIndex by createIndex (#14)

2.2.0

17 Dec 10:05
Compare
Choose a tag to compare

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

09 Nov 14:34
Compare
Choose a tag to compare

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

22 Feb 12:21
Compare
Choose a tag to compare

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

19 Feb 14:41
Compare
Choose a tag to compare

reverse a change made for v2.1.6 leading to messages being sent to the worker before it was ready.

v2.1.6

19 Feb 12:41
Compare
Choose a tag to compare

Patched memory leak when using recurring tasks.
Updated the documentation about recurring tasks.
no breaking changes.

v2.1.4

16 Feb 20:23
Compare
Choose a tag to compare

Patched Error due to undefined option object in the Cluster Constructor: force the value to the default option.

v2.1.0

21 Jan 11:25
Compare
Choose a tag to compare

breaking changes :

  • removed closeIPC from ipc callback.

updated package tests and documentation accordingly.

v2.0.1

21 Jan 10:44
Compare
Choose a tag to compare
  • added IPC feature.
  • added test suite.
  • updated documentation.
  • rebased code for more readability.

No breaking changes.