var query = bucket.CreateQuery("MyDoc", "by_asOf").Key(@"/Date(1440129600000-0400)/").ConnectionTimeout(100000);
var results = bucket.Query<string>(query);
After about 20seconds the query returns with 0 results and StatusCode = ServiceUnavailable.
The Exception property reads “The operation has timed out”.
The StackTrace on the Exception shows StackTrace = " at System.Net.HttpWebRequest.GetResponse()\r\n at Couchbase.Views.ViewClient.Execute[T](IViewQuery query) in c:\Users\jmorris\repos\temp\couchbase-net-client\Src\Couchbase\Views\ViewClient.cs:line 92"
Does anyone know what timeout setting I need to update?
I also tried to increase the operationLifespan in my config file but still received the error.