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

   ### 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
   
   
我的DynamoDB中的UserTable表的数据有100万条,我用AmazonDynamoDB-Source连接器读取,只能读到93条数据就结束了,这里可能是一个bug
   
   ***********************************************
              Job Statistic Information
   ***********************************************
   Start Time                : 2023-07-20 08:59:27
   End Time                  : 2023-07-20 08:59:31
   Total Time(s)             :                   3
   Total Read Count          :                  93
   Total Write Count         :                  93
   Total Failed Count        :                   0
   ***********************************************
   
   ### SeaTunnel Version
   
   2.3.2
   
   ### SeaTunnel Config
   
   ```conf
   env {
     execution.parallelism = 1
     job.mode = "BATCH"
   }
   
   source {
   Amazondynamodb {
     url = "https://dynamodb.us-east-1.amazonaws.com";
     region = "us-east-1"
     access_key_id = ""
     secret_access_key = ""
     table = "UserTable"
     schema = {
       fields {
         userID = string
       }
     }
     result_table_name = "source_table"
   }
   }
   
   transform {
     FieldMapper {
       source_table_name = "source_table"
       result_table_name = "transform_table"
       field_mapper = {
           userID=user_id
       }
     }
   }
   
   sink {
     Console {
       source_table_name = "transform_table"
     }
   }
   ```
   
   
   ### Running Command
   
   ```shell
   ../bin/seatunnel.sh  -e local --config ddb.template
   ```
   
   
   ### Error Exception
   
   ```log
   表的数据量是100w,只读取到93条数据
   
   2023-07-20 08:59:31,452 INFO  
org.apache.seatunnel.core.starter.seatunnel.command.ClientExecuteCommand - 
   ***********************************************
              Job Statistic Information
   ***********************************************
   Start Time                : 2023-07-20 08:59:27
   End Time                  : 2023-07-20 08:59:31
   Total Time(s)             :                   3
   Total Read Count          :                  93
   Total Write Count         :                  93
   Total Failed Count        :                   0
   ***********************************************
   ```
   
   
   ### Flink or Spark Version
   
   _No response_
   
   ### Java or Scala Version
   
   _No response_
   
   ### 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