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

GEODE-4300 Server logs warning message when protobuf client closes socket #1335

Closed
wants to merge 1 commit into from

Conversation

bschuchardt
Copy link
Contributor

Inhibit logging of a warning message on IOExceptions if the socket is
closed.

@upthewaterspout @WireBaron @PivotalSarge @galen-pivotal

Thank you for submitting a contribution to Apache Geode.

In order to streamline the review of the contribution we ask you
to ensure the following steps have been taken:

For all changes:

  • Is there a JIRA ticket associated with this PR? Is it referenced in the commit message?

  • Has your PR been rebased against the latest commit within the target branch (typically develop)?

  • Is your initial contribution a single, squashed commit?

  • Does gradlew build run cleanly?

  • Have you written or updated unit tests to verify your changes?

  • [na] If adding new dependencies to the code, are these dependencies licensed in a way that is compatible for inclusion under ASF 2.0?

Note:

Please ensure that once the PR is submitted, you check travis-ci for build issues and
submit an update to your PR as soon as possible. If you need help, please send an
email to dev@geode.apache.org.

…cket

Inhibit logging of a warning message on IOExceptions if the socket is
closed.
@@ -77,7 +77,9 @@ protected void doOneMessage() {
setClientDisconnectedException(e);
logger.debug("Encountered EOF while processing message: {}", e);
} catch (IOException | IncompatibleVersionException e) {
logger.warn(e);
if (!socket.isClosed()) { // GEODE-4300, IOException may be thrown thrown on EOF
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we need to put GEODE-4300 in the code since the commit comment also includes it?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We were actually complemented on doing this when VMWare audited the GemFire source base, but I understand where you're coming from.

Copy link
Contributor

@upthewaterspout upthewaterspout left a comment

Choose a reason for hiding this comment

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

I'm not necessary opposed to this change - but old client sends a message to close the connection, rather than just closing the socket. I think that might be why even an EOF exception would be unexpected in that case.

@PivotalSarge
Copy link
Contributor

@upthewaterspout Is your proposal to add a "goodbye" message to the protocol that the client sends to the server to indicate that it is safe to close the socket?

@upthewaterspout
Copy link
Contributor

@PivotalSarge - Or maybe have different logic for the protobuf server connection? I'm not really sure if this warning is useful for the old client, but it might be there to help people notice that their clients are crashing.

@bschuchardt bschuchardt deleted the feature/GEODE-4300 branch January 26, 2018 22:38
@bschuchardt
Copy link
Contributor Author

I've added GEODE-4401 to consider adding a CloseConnection message and I've pushed & closed this PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
4 participants