Skip to content

Commit

Permalink
Shrink max row count to 50000 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
BTheunissen authored Aug 17, 2023
1 parent a578899 commit bc6d68a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion target_clickhouse/sinks.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ClickhouseSink(SQLSink):
"""clickhouse target sink class."""

connector_class = ClickhouseConnector
MAX_SIZE_DEFAULT = 100000
MAX_SIZE_DEFAULT = 50000

@property
def max_size(self) -> int:
Expand Down

0 comments on commit bc6d68a

Please sign in to comment.