You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2020/01/29 21:21:50 UTC

[GitHub] [airflow] larryzhu2018 commented on a change in pull request #7141: [AIRFLOW-6544] add log_id to end_of_log mark log record

larryzhu2018 commented on a change in pull request #7141: [AIRFLOW-6544] add log_id to end_of_log mark log record
URL: https://github.com/apache/airflow/pull/7141#discussion_r372636506
 
 

 ##########
 File path: airflow/utils/log/es_task_handler.py
 ##########
 @@ -255,7 +256,9 @@ def close(self):
 
         # Mark the end of file using end of log mark,
         # so we know where to stop while auto-tailing.
-        self.handler.stream.write(self.end_of_log_mark)
+        if self.write_stdout:
+            print()
+        self.handler.emit(logging.makeLogRecord({'msg': self.end_of_log_mark}))
 
 
 Review comment:
   > Hi @larryzhu2018 for your description:
   > ![image](https://user-images.githubusercontent.com/8662365/72946940-52353080-3d35-11ea-9c3b-47996b94f47f.png)
   > 
   > It looks like you have `write_stdout` as `true`, in fact, my pr: #7199 fixed the always `true` for `write_stdout`. could you please test the case when `write_stdout` is `False`.
   [larryzhu2018]: the test case I have in the PR, test_close_with_log_id, is setting write_stdout to False so please check.
   > 
   > Our set up is:
   > `write_stdout` is `False`
   > `json` is `False`
   > `END_OF_LOG_MARK = u'\u0004\n'`
   > 
   > This is what we see in the Kibana
   > ![image](https://user-images.githubusercontent.com/8662365/72947738-d8eb0d00-3d37-11ea-8eac-d341a2c66163.png)
   > 
   > I remember if the `end_of_log` is wrapped in a `logging.makeLogRecord` it will start with
   > 
   > ![image](https://user-images.githubusercontent.com/8662365/72947783-033cca80-3d38-11ea-9fc2-a31429464412.png)
   
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services