Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make it possible to time out TCP reads #2

Merged
merged 2 commits into from
Jul 23, 2019

Conversation

fhartwig
Copy link
Contributor

This line is responsible for the stale cache issue in adserver, because sometimes it ends up waiting for data that never comes. This change adds a timeout option to the stream type which will be used to SetReadDeadline on the underlying TCP connection before calls to Read.

Question: Adding this as a parameter to the constructor function for Stream changes the API of this library. An alternative approach would be to leave the constructors as they are and add a setter method on Stream that the user would need to call on an existing Stream instance. I'm not sure how much we care about backwards compatibility here, so which way should I do this?

@fhartwig
Copy link
Contributor Author

@pubnative/backend @bruwozniak Please have a look at this.

@alvelcom
Copy link
Contributor

alvelcom commented Jul 19, 2019

I'm not sure how much we care about backwards compatibility here, so which way should I do this?

It has 48 stars, but I guess it has no new users in the few past years. We're going to use standard mysql library anyway, let's not put a lot of effort into this one.

Copy link
Contributor

@kostyantyn kostyantyn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

An alternative approach would be to leave the constructors as they are and add a setter method on Stream that the user would need to call on an existing Stream instance

Unfortunately, in the current design, it won't be possible because of ConnectPlainHandshake function, which creates the stream and reads the first packets already. In this case, it won't be possible to respect the timeout for the initial read.

I think it's fine to extend the constructor as there are no promises to backward compatibility in this project yet. Actually would be good to denote in README that users must fix the commit of the package as new ones might be incompatible.

@fhartwig fhartwig merged commit 4af2b0d into pubnative:master Jul 23, 2019
@fhartwig fhartwig deleted the read-deadline branch July 23, 2019 09:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants