@coherentglobal/spark-execute-sdk 0.4.19 → 0.7.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -41,6 +41,8 @@ const config = {
41
41
  versionId: "uuid",
42
42
  type: "base64",
43
43
  binary: Blob | Base64 | BinaryUnit | Func(versionId), // a binary zipped file or a function the will get the zipped file
44
+ preventCleanup: true | false, // prevent model from being unload (default: false)
45
+ instance: int, // number of model instance (default: 1)
44
46
  metadata: {
45
47
  // Spark Model Metadata
46
48
  }
@@ -75,6 +77,8 @@ const config = {
75
77
  versionId: "uuid",
76
78
  type: "base64",
77
79
  binary: Blob | Base64 | BinaryUnit | Func(versionId), // a binary zipped file or a function the will get the zipped file
80
+ preventCleanup: true | false, // prevent model from being unload (default: false)
81
+ replica: int, // number of model instance (default: 1)
78
82
  metadata: {
79
83
  // Spark Model Metadata
80
84
  },