homjay666 opened a new issue, #5172:
URL: https://github.com/apache/seatunnel/issues/5172

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22bug%22)
 and found no similar issues.
   
   
   ### What happened
   
   [SOURCE][HTTP] poll_interval_ms is disabled
   
![image](https://github.com/apache/seatunnel/assets/64208216/3226d78d-83f4-475c-8f99-de88ecd1ae14)
   
   
   
   ### SeaTunnel Version
   
   2.3.2
   
   ### SeaTunnel Config
   
   ```conf
   env {
     execution.parallelism = 1
     job.mode = "STREAMING"
   
     # #execution.checkpoint.interval = 10000
     # #execution.checkpoint.data-uri = 
"hdfs://bigdata101:8020/tmp/seatunnel/checkpoint"
   }
   
   
   source {
   Http {
     url = "http://XXX:12347/bigdata/data?id=2";
     method = "GET"
     result_table_name = "http_table"
     format = "json"
     content_field = "$.data.*"
     schema = {
       fields {
         courtName = string
         courtAreaCode = string
         courtBuildDate = string
         courtId = int
       }
     }
     # https://seatunnel.apache.org/docs/2.3.2/connector-v2/source/Http
     # TODO 轮询间隔毫秒 失效,Github提交issue
     poll_interval_ms = 50000
    }
   }
   
   
   transform {
     FieldMapper {
       source_table_name = "http_table"
       result_table_name = "kafka_table"
       field_mapper = {
         courtName = courtName
         courtAreaCode = courtAreaCode
         courtBuildDate = courtBuildDate
         courtId = courtId
       }
     }
   }
   
   sink {
      kafka {
          source_table_name = "kafka_table"
          topic = "zhj_flow_seatunnel"
          bootstrap.servers = "bigdata101:9092,bigdata102:9092,bigdata103:9092"
      }
   }
   ```
   
   
   ### Running Command
   
   ```shell
   NO
   ```
   
   
   ### Error Exception
   
   ```log
   NO
   ```
   
   
   ### Zeta or Flink or Spark Version
   
   NO
   
   ### Java or Scala Version
   
   NO
   
   ### Screenshots
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [X] 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: [email protected]

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

Reply via email to