[ 
https://issues.apache.org/jira/browse/FLINK-10295?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16633815#comment-16633815
 ] 

ASF GitHub Bot commented on FLINK-10295:
----------------------------------------

zentol commented on a change in pull request #6754: [FLINK-10295] Add support 
of passing jar arguments as list of separate strings in REST API
URL: https://github.com/apache/flink/pull/6754#discussion_r221550646
 
 

 ##########
 File path: 
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/utils/JarHandlerUtils.java
 ##########
 @@ -26,13 +36,42 @@
 import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 
+import static 
org.apache.flink.runtime.rest.handler.util.HandlerRequestUtils.fromRequestBodyOrQueryParameter;
+import static 
org.apache.flink.runtime.rest.handler.util.HandlerRequestUtils.getQueryParameter;
+import static 
org.apache.flink.shaded.guava18.com.google.common.base.Strings.emptyToNull;
+
 /**
  * Utils for jar handlers.
  *
  * @see org.apache.flink.runtime.webmonitor.handlers.JarRunHandler
  * @see org.apache.flink.runtime.webmonitor.handlers.JarPlanHandler
  */
 public class JarHandlerUtils {
+       /** Parse program arguments in jar run or plan request. */
+       public static <R extends JarRequestBody, M extends MessageParameters> 
List<String> getProgramArgs(
+               HandlerRequest<R , M> request, Logger log) throws 
RestHandlerException {
+               JarRequestBody requestBody = request.getRequestBody();
+               List<String> programArgs = tokenizeArguments(
+                       fromRequestBodyOrQueryParameter(
+                               emptyToNull(requestBody.getProgramArguments()),
+                               () -> getQueryParameter(request, 
ProgramArgsQueryParameter.class),
+                               null,
+                               log));
+               List<String> programArgsList = fromRequestBodyOrQueryParameter(
+                       requestBody.getProgramArgumentsList(),
+                       () -> 
request.getQueryParameter(ProgramArgsListQueryParameter.class),
+                       null,
+                       log);
+               if (requestBody.getProgramArgumentsList() != null) {
 
 Review comment:
   compare against `programArgsList` instead?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Tokenisation of Program Args resulting in unexpected results
> ------------------------------------------------------------
>
>                 Key: FLINK-10295
>                 URL: https://issues.apache.org/jira/browse/FLINK-10295
>             Project: Flink
>          Issue Type: Bug
>          Components: REST, Webfrontend
>    Affects Versions: 1.5.0, 1.6.0, 1.7.0
>            Reporter: Gaurav Singhania
>            Assignee: Andrey Zagrebin
>            Priority: Blocker
>              Labels: pull-request-available
>             Fix For: 1.7.0
>
>         Attachments: sample_request.txt
>
>
> We were upgrading from Flink 1.4 to 1.6. At present we have a jar which takes 
> all the details to run the job as program args against a jarid, including sql 
> query and kafka details. In version 1.5 the program args are tokenised as a 
> result single quote (') and double quote(") are stripped from the arguments. 
> This results in malformed args.
> Attached a sample request for reference.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to