chen0623-bak commented on issue #5370:
URL: https://github.com/apache/seatunnel/issues/5370#issuecomment-1706212132

   I think he can work normally
   I use `express` as the server for quick testing
   
![image](https://github.com/apache/seatunnel/assets/77488507/be1c2e37-76a7-469c-9947-67eb2fbcba93)
   
   And the results were obtained normally
   
![image](https://github.com/apache/seatunnel/assets/77488507/64ccad83-0920-47b8-97d7-34c8d712fc65)
   
   
   this my conf
   ```
   env {
       job.mode = "STREAMING"
       execution.parallelism = 1
   }
   source {
       Http {
       poll_interval_ms = 100000
       url = "http://192.168.195.248:3000";
       method = "GET"
       format = "json"
       json_field = {
         finish_main_code = "$.data[*].finishMainCode"
         finish_code = "$.data[*].finishCode"
         texture = "$.data[*].texture"
         green_level = "$.data[*].greenLevel"
         create_date = "$.data[*].createDate"
         last_update_date = "$.data[*].lastUpdateDate"
         sale_state = "$.data[*].saleState"
         permission_name = "$.data[*].finishPermissions[*].permissionName"
         permission_code = "$.data[*].finishPermissions[*].permissionCode"
       }
       schema = {
         fields {
           finish_main_code = string
           finish_code = string
           texture = string
           green_level = string
           create_date = string
           last_update_date = string
           sale_state = string
           permission_name = string
           permission_code = string
         }
       }
     }
   }
   sink {
       Console{}
   }
   transform{}
   ```
   >I found that when I set poll_interval_ms=5000
   >But he didn't output every 5 seconds as expected
   >It's just crazy printing
   >I think it should be a bug
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to