Re: How to verify if checkpoints are asynchronous or sync

2020-01-08 Thread RKandoji
I evaluated performance by looking at the number of input records processed over 10min and 30mins duration. Thanks, R On Wed, Jan 8, 2020 at 2:21 AM Congxian Qiu wrote: > If you want to figure out the performance problem, maybe async-profile[1] > can be helpful > [1] https://github.com/jvm-prof

Re: How to verify if checkpoints are asynchronous or sync

2020-01-07 Thread Congxian Qiu
If you want to figure out the performance problem, maybe async-profile[1] can be helpful [1] https://github.com/jvm-profiling-tools/async-profiler Best, Congxian William C 于2020年1月8日周三 上午11:37写道: > Hallo > > on 2020/1/8 11:31, RKandoji wrote: > > I'm running my job on a EC2 instance with 32 cor

Re: How to verify if checkpoints are asynchronous or sync

2020-01-07 Thread William C
Hallo on 2020/1/8 11:31, RKandoji wrote: I'm running my job on a EC2 instance with 32 cores and according to the documentation I tried to use as many task slots the number of cores, numOfTaskSlots=32 and parallelism=32. But I noticed that the performance is slightly degrading when I'm using 32

Re: How to verify if checkpoints are asynchronous or sync

2020-01-07 Thread RKandoji
cord the >> sync/async duration time, maybe it can also satisfy your requirements. >> >> Best, >> Zhijiang >> >> ---------------------- >> From:RKandoji >> Send Time:2020 Jan. 8 (Wed.) 10:23 >> To:William C >> Cc:user

Re: How to verify if checkpoints are asynchronous or sync

2020-01-07 Thread Congxian Qiu
- > From:RKandoji > Send Time:2020 Jan. 8 (Wed.) 10:23 > To:William C > Cc:user > Subject:Re: How to verify if checkpoints are asynchronous or sync > > Thanks for the reply. > I will check and enable debug logs specifically for the class that > contains this log

Re: How to verify if checkpoints are asynchronous or sync

2020-01-07 Thread Zhijiang
jiang -- From:RKandoji Send Time:2020 Jan. 8 (Wed.) 10:23 To:William C Cc:user Subject:Re: How to verify if checkpoints are asynchronous or sync Thanks for the reply. I will check and enable debug logs specifically for the class that contains this log. But in general logs are already too huge and I'm

Re: How to verify if checkpoints are asynchronous or sync

2020-01-07 Thread RKandoji
Thanks for the reply. I will check and enable debug logs specifically for the class that contains this log. But in general logs are already too huge and I'm trying to suppress some of them, so wondering if there is any other way? Thanks, RKandoji On Tue, Jan 7, 2020 at 7:50 PM William C wrote:

Re: How to verify if checkpoints are asynchronous or sync

2020-01-07 Thread William C
Can you enable debug log to check with that? regards. on 2020/1/8 6:36, RKandoji wrote: But I'm curious if there is way to verify if the checkpoints are happening asynchronously or synchronously.

How to verify if checkpoints are asynchronous or sync

2020-01-07 Thread RKandoji
Hi, I'm using Flink 1.9, BlinkPlanner and rocksDB for backend with checkpointing enabled. I understand that checkpointing is async by default for RocksDB. But I'm curious if there is way to verify if the checkpoints are happening asynchronously or synchronously. Please let me know. Thanks, RKan