-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Log around config.FromConnStr to diagnose slow DNS SRV resolution #6255
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think having slow DNS is relatively common.
But we actually do this in many places, usually at startup or DB startup:
sync_gateway/base/dcp_client.go
Line 323 in 5c7673e
connStrError := agentConfig.FromConnStr(connStr) |
And anywhere a cluster connection is established (bootstrap) https://github.com/couchbase/gocb/blob/da582ed180ca768052410105b5e4d4394f80e674/client.go#L105
I think having any logging for this is fine, but it will not be comprehensive.
rest/server_context.go
Outdated
@@ -41,6 +41,9 @@ const kStatsReportInterval = time.Hour | |||
const kDefaultSlowQueryWarningThreshold = 500 // ms | |||
const KDefaultNumShards = 16 | |||
|
|||
// fromConnStrWarningThreshold determines the amount of time it should take before we warn about parsing a connstr (mostly for DNS SRV resolution) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I
// fromConnStrWarningThreshold determines the amount of time it should take before we warn about parsing a connstr (mostly for DNS SRV resolution) | |
// fromConnStrWarningThreshold determines the amount of time it should take before we warn about parsing a connstr (mostly for DNS resolution) |
I think there's other DNS resolution and the call happens to check if SRV records are there but it can do other things.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you need to address the comments, I think this would be helpful enough for users and it's not worth putting more time in it.
Didn't see the other method used as it was on a different type - a text search instead of AST search found it :) |
config.FromConnStr
performs SRV DNS lookups, which under some circumstances can cause slow startup times for Sync Gateway.Log around this function to diganose and log at warning when it takes longer than 10 seconds.
Pre-review checklist
fmt.Print
,log.Print
, ...)base.UD(docID)
,base.MD(dbName)
)docs/api
Integration Tests