Skip to content

Commit ad7c84a

Browse files
committed
[hotfix-36312][core] errorLimit设置默认值10000
1 parent 7c2555f commit ad7c84a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

core/src/main/java/com/dtstack/flink/sql/table/AbstractTableInfo.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ public abstract class AbstractTableInfo implements Serializable {
6868
* error data limit. Task will failed once {@link AbstractDtRichOutputFormat#outDirtyRecords}
6969
* count over limit. Default 1000L;
7070
*/
71-
private Long errorLimit = 0L;
71+
// TODO: 暂时默认值设置为10000,后面排期支持在产品上设置
72+
private Long errorLimit = 10000L;
7273

7374
public String[] getFieldTypes() {
7475
return fieldTypes;

0 commit comments

Comments
 (0)