@flyteorg/flyteidl 1.13.4 → 1.13.6
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/package.json
CHANGED
|
@@ -42,8 +42,8 @@ message BlobMetadata {
|
|
|
42
42
|
// A simple byte array with a tag to help different parts of the system communicate about what is in the byte array.
|
|
43
43
|
// It's strongly advisable that consumers of this type define a unique tag and validate the tag before parsing the data.
|
|
44
44
|
message Binary {
|
|
45
|
-
bytes value = 1;
|
|
46
|
-
string tag = 2;
|
|
45
|
+
bytes value = 1; // Serialized data (MessagePack) for supported types like Dataclass, Pydantic BaseModel, and untyped dict.
|
|
46
|
+
string tag = 2; // The serialization format identifier (e.g., MessagePack). Consumers must define unique tags and validate them before deserialization.
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
// A strongly typed schema that defines the interface of data retrieved from the underlying storage medium.
|
|
@@ -4,6 +4,8 @@ package flyteidl.plugins;
|
|
|
4
4
|
|
|
5
5
|
option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
|
|
6
6
|
|
|
7
|
+
import "flyteidl/core/tasks.proto";
|
|
8
|
+
|
|
7
9
|
// RayJobSpec defines the desired state of RayJob
|
|
8
10
|
message RayJob {
|
|
9
11
|
// RayClusterSpec is the cluster template to run the job
|
|
@@ -35,6 +37,8 @@ message HeadGroupSpec {
|
|
|
35
37
|
// Optional. RayStartParams are the params of the start command: address, object-store-memory.
|
|
36
38
|
// Refer to https://docs.ray.io/en/latest/ray-core/package-ref.html#ray-start
|
|
37
39
|
map<string, string> ray_start_params = 1;
|
|
40
|
+
// Pod Spec for the ray head pod
|
|
41
|
+
core.K8sPod k8s_pod = 2;
|
|
38
42
|
}
|
|
39
43
|
|
|
40
44
|
// WorkerGroupSpec are the specs for the worker pods
|
|
@@ -50,4 +54,6 @@ message WorkerGroupSpec {
|
|
|
50
54
|
// Optional. RayStartParams are the params of the start command: address, object-store-memory.
|
|
51
55
|
// Refer to https://docs.ray.io/en/latest/ray-core/package-ref.html#ray-start
|
|
52
56
|
map<string, string> ray_start_params = 5;
|
|
57
|
+
// Pod Spec for ray worker pods
|
|
58
|
+
core.K8sPod k8s_pod = 6;
|
|
53
59
|
}
|