risingwave_meta_model/
worker_property.rs1use sea_orm::entity::prelude::*;
16use serde::{Deserialize, Serialize};
17
18use crate::WorkerId;
19
20#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
21#[sea_orm(table_name = "worker_property")]
22pub struct Model {
23 #[sea_orm(primary_key, auto_increment = false)]
24 pub worker_id: WorkerId,
25 pub parallelism: i32,
26 pub is_streaming: bool,
27 pub is_serving: bool,
28 pub is_unschedulable: bool,
29 pub internal_rpc_host_addr: Option<String>,
30 pub resource_group: Option<String>,
31}
32
33#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
34pub enum Relation {
35 #[sea_orm(
36 belongs_to = "super::worker::Entity",
37 from = "Column::WorkerId",
38 to = "super::worker::Column::WorkerId",
39 on_update = "NoAction",
40 on_delete = "Cascade"
41 )]
42 Worker,
43}
44
45impl Related<super::worker::Entity> for Entity {
46 fn to() -> RelationDef {
47 Relation::Worker.def()
48 }
49}
50
51impl ActiveModelBehavior for ActiveModel {}