Open sv3ndk opened 3 years ago
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project (if not, look below for help). Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).
:memo: Please visit https://cla.developers.google.com/ to sign.
Once you've signed (or fixed any issues), please reply here with @googlebot I signed it!
and we'll verify it.
ℹ️ Googlers: Go here for more info.
@googlebot I signed it!
@hongyegong , could you please have a quick look at this minor update and let me know what you think? Thanks
Hi all,
While experimenting with the Flink operator, I experienced some occasional glitches when the very first
curl
done by the job submitter hangs for a very long time before retrying, instead of the usual 5 seconds. It then eventually times out, although this long pause has an unnecessary impact on the deployment duration.I believe this happens when the job submitter calls
curl
before the job manager is even started, in which case we're getting connection timeout (after 120s) instead of an immediate "connection refused".After adding the
--connect-timeout 5
, all deployment continued to work successfully, and I never experienced again the hanging behaviour mentioned above.Let me know your thoughts