You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/01/05 06:32:16 UTC

[GitHub] [dolphinscheduler] xukiw opened a new issue #7810: [Bug] [HttpTask] It seems that the result returned by the request is not saved to varpool

xukiw opened a new issue #7810:
URL: https://github.com/apache/dolphinscheduler/issues/7810


   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues.
   
   
   ### What happened
   
   It seems that the result returned by the request is not saved to varpool,the handle method:
   public void handle() throws Exception {
   
           String threadLoggerInfoName = String.format(TASK_LOG_INFO_FORMAT, taskExecutionContext.getTaskAppId());
           Thread.currentThread().setName(threadLoggerInfoName);
   
           long startTime = System.currentTimeMillis();
           String formatTimeStamp = DateUtils.formatTimeStamp(startTime);
           String statusCode = null;
           String body = null;
   
           try (CloseableHttpClient client = createHttpClient();
                CloseableHttpResponse response = sendRequest(client)) {
               statusCode = String.valueOf(getStatusCode(response));
               body = getResponseBody(response);
               exitStatusCode = validResponse(body, statusCode);
               long costTime = System.currentTimeMillis() - startTime;
               logger.info("startTime: {}, httpUrl: {}, httpMethod: {}, costTime : {} milliseconds, statusCode : {}, body : {}, log : {}",
                       formatTimeStamp, httpParameters.getUrl(),
                       httpParameters.getHttpMethod(), costTime, statusCode, body, output);
           } catch (Exception e) {
               appendMessage(e.toString());
               exitStatusCode = -1;
               logger.error("httpUrl[" + httpParameters.getUrl() + "] connection failed:" + output, e);
               throw e;
           }
   
       }
   
   ### What you expected to happen
   
   Save the http response to varpool。
   
   ### How to reproduce
   
   Create a successor task after the HTTP task。
   
   ### Anything else
   
   _No response_
   
   ### Version
   
   2.0.1
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #7810: [Bug] [HttpTask] It seems that the result returned by the request is not saved to varpool

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #7810:
URL: https://github.com/apache/dolphinscheduler/issues/7810#issuecomment-1005418773


   Hi:
   * Thank you for your feedback, we have received your issue, Please wait patiently for a reply.
   * In order for us to understand your request as soon as possible, please provide detailed information、version or pictures.
   * If you haven't received a reply for a long time, you can subscribe to the developer's email,Mail subscription steps reference https://dolphinscheduler.apache.org/en-us/community/development/subscribe.html ,Then write the issue URL in the email content and send question to dev@dolphinscheduler.apache.org.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [dolphinscheduler] SbloodyS commented on issue #7810: [Bug] [HttpTask] It seems that the result returned by the request is not saved to varpool

Posted by GitBox <gi...@apache.org>.
SbloodyS commented on issue #7810:
URL: https://github.com/apache/dolphinscheduler/issues/7810#issuecomment-1005599253


   Hi. Do you want to use the response of the HTTP task request as the parameter of the next task?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org