Hello, anyone here is using JdbcSink with Aurora P...
# random
a
Hello, anyone here is using JdbcSink with Aurora Postgres. The production load is expected to scale upto 90000 records per minute. the performance tests reveal that with 120 parallism and average 750 records per minute from each slot is not an issue. But I would like to know if any gotchas are missed before this is deployed
s
Yep, I have a job with parallelism of 4 doing ~10x of your rate when writing to Aurora Postgres
Use the following JDBC URL parameters if you can:
Copy code
assumeMinServerVersion=10.0&reWriteBatchedInserts=true
a
Wow with a parallelism of just 4. Seems like you have large sized nodes. Thanks for suggesting the rewrite configurations. I completely missed out using that