@@ -26,10 +26,10 @@ use risingwave_meta_model::fragment::DistributionType;
26
26
use risingwave_meta_model:: object:: ObjectType ;
27
27
use risingwave_meta_model:: prelude:: { Actor , Fragment , Sink , StreamingJob } ;
28
28
use risingwave_meta_model:: {
29
- actor, actor_dispatcher, fragment, object, sink, source, streaming_job, table, ActorId ,
30
- ActorUpstreamActors , ConnectorSplits , DatabaseId , ExprContext , FragmentId , I32Array , JobStatus ,
31
- ObjectId , SchemaId , SinkId , SourceId , StreamNode , StreamingParallelism , TableId , VnodeBitmap ,
32
- WorkerId ,
29
+ actor, actor_dispatcher, database , fragment, object, sink, source, streaming_job, table,
30
+ ActorId , ActorUpstreamActors , ConnectorSplits , DatabaseId , ExprContext , FragmentId , I32Array ,
31
+ JobStatus , ObjectId , SchemaId , SinkId , SourceId , StreamNode , StreamingParallelism , TableId ,
32
+ VnodeBitmap , WorkerId ,
33
33
} ;
34
34
use risingwave_meta_model_migration:: { Alias , SelectStatement } ;
35
35
use risingwave_pb:: common:: PbActorLocation ;
@@ -90,6 +90,7 @@ pub struct StreamingJobInfo {
90
90
pub job_status : JobStatus ,
91
91
pub parallelism : StreamingParallelism ,
92
92
pub max_parallelism : i32 ,
93
+ pub resource_group : String ,
93
94
}
94
95
95
96
impl CatalogControllerInner {
@@ -728,6 +729,7 @@ impl CatalogController {
728
729
. select_only ( )
729
730
. column ( streaming_job:: Column :: JobId )
730
731
. join ( JoinType :: InnerJoin , streaming_job:: Relation :: Object . def ( ) )
732
+ . join ( JoinType :: InnerJoin , object:: Relation :: Database2 . def ( ) )
731
733
. column ( object:: Column :: ObjType )
732
734
. join ( JoinType :: LeftJoin , table:: Relation :: Object1 . def ( ) . rev ( ) )
733
735
. join ( JoinType :: LeftJoin , source:: Relation :: Object . def ( ) . rev ( ) )
@@ -750,6 +752,16 @@ impl CatalogController {
750
752
streaming_job:: Column :: Parallelism ,
751
753
streaming_job:: Column :: MaxParallelism ,
752
754
] )
755
+ . column_as (
756
+ Expr :: if_null (
757
+ Expr :: col ( (
758
+ streaming_job:: Entity ,
759
+ streaming_job:: Column :: SpecificResourceGroup ,
760
+ ) ) ,
761
+ Expr :: col ( ( database:: Entity , database:: Column :: ResourceGroup ) ) ,
762
+ ) ,
763
+ "resource_group" ,
764
+ )
753
765
. into_model ( )
754
766
. all ( & inner. db )
755
767
. await ?;
0 commit comments