Hi,

Using ververica platform to deploy flink jobs, found that it is not
supporting application deployment mode.
Just want to check if it is expected.

Below is a brief  of how the main method has been composed.


class Job1 {
    public void execute(){
        StreamExecutingEnvironemnt env = ...

        env.execute("Job 1");
    }
}

class Job2 {
    public void execute(){
        StreamExecutingEnvironemnt env = ...

        env.execute("Job 2");
    }
}


class Main {

    public static void main(string[] args) {
    new Job1().execute();
    new Job2().execute();
    }
}

Does this make any difference?

TIA
-- 
A.Narasimha Swamy

Reply via email to