liugddx commented on PR #3847: URL: https://github.com/apache/incubator-seatunnel/pull/3847#issuecomment-1387322180
The following is the result of my test fake-console. ``` # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ###### ###### This config file is a demonstration of streaming processing in seatunnel config ###### env { # You can set engine configuration here execution.parallelism = 1 job.mode = "BATCH" checkpoint.interval = 5000 #execution.checkpoint.data-uri = "hdfs://localhost:9000/checkpoint" } source { # This is a example source plugin **only for test and demonstrate the feature source plugin** FakeSource { result_table_name = "fake" row.num = 2500000 parallelism = 4 schema = { fields { name = "string" age = "int" } } } } transform { } sink { console { source_table_name="fake" } } ``` - disruptor *********************************************** Job Statistic Information *********************************************** Start Time : 2023-01-18 23:55:57 End Time : 2023-01-18 23:57:31 Total Time(s) : 94 Total Read Count : 10000000 Total Write Count : 10000000 Total Failed Count : 0 *********************************************** - blockingQueue *********************************************** Job Statistic Information *********************************************** Start Time : 2023-01-18 23:52:13 End Time : 2023-01-18 23:54:08 Total Time(s) : 114 Total Read Count : 10000000 Total Write Count : 10000000 Total Failed Count : 0 *********************************************** Efficiency increased by 17.5%. [(114 -94)%114 * 100% = 17.5%]. -- 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]
