SecurityManager in Flink

2024-03-06 Thread Kirti Dhar Upadhyay K via user
the way to set SecurityManager in Flink? Regards, Kirti Dhar

Re: SecurityManager in Flink

2024-03-06 Thread Yanfei Lei
null while > listing the files, hence skipping the permissions on directory. > > What is the way to set SecurityManager in Flink? > > > > Regards, > > Kirti Dhar > > -- Best, Yanfei

Re: SecurityManager in Flink

2024-03-06 Thread Hang Ruan
curityManager is coming as null while > listing the files, hence skipping the permissions on directory. > > What is the way to set SecurityManager in Flink? > > > > Regards, > > Kirti Dhar > > >

Re: SecurityManager in Flink

2024-03-06 Thread Gabor Somogyi
()); > for (FileStatus containedStatus : containedFiles) { > addSplitsForPath(containedStatus, fs, target); > } > > Debugging the issue found that, SecurityManager is coming as null while > listing the files, hence skipping the permissions on directory. > > What is the way to set SecurityManager in Flink? > > > > Regards, > > Kirti Dhar > > >

RE: SecurityManager in Flink

2024-03-06 Thread Kirti Dhar Upadhyay K via user
flink%2Fcore%2Ffs%2Flocal%2FLocalFileSystem.java%23L161C32-L161C38> Regards, Kirti Dhar From: Hang Ruan Sent: Wednesday, March 6, 2024 6:46 PM To: Kirti Dhar Upadhyay K Cc: User@flink.apache.org Subject: Re: SecurityManager in Flink Hi, Kirti. Could you please provide the stack trace of this

RE: SecurityManager in Flink

2024-03-06 Thread Kirti Dhar Upadhyay K via user
Subject: Re: SecurityManager in Flink Hi Kirti Dhar, What is your java version? I guess this problem may be related to FLINK-33309[1]. Maybe you can try adding "-Djava.security.manager" to the java options. [1] https://issues.apache.org/jira/browse/FLINK-33309 Kirti Dhar Upadhyay K v

RE: SecurityManager in Flink

2024-03-06 Thread Kirti Dhar Upadhyay K via user
try { System.setSecurityManager(flinkSecurityManager); } catch (Exception e) { … … Regards, Kirti Dhar From: Gabor Somogyi Sent: Wednesday, March 6, 2024 7:17 PM To: Kirti Dhar Upadhyay K Cc: User@flink.apache.org Subject: Re: SecurityManager in Flink Hi Kirti, Not sure what is the ex