1

Does anyone know why Keen.IO has the similar problem of Keen.IO hanging on read operation

var projectsetting = new ProjectSettingsProvider("project_key",
    masterKey: "master_key",
    writeKey: "write_key",
    readKey: "read_key");
var keenClient = new KeenClient(projectsetting);
var timeframe = Keen.Core.Query.QueryRelativeTimeframe.PreviousNHours(1);

var data = keenClient.QueryExtractResource("testcategory", timeframe);// Hangs here. 

I am only pulling approximately 1 hours worth of data and this should not take this long.

Anyone has any idea what is going on here.

Sanj
  • 3,770
  • 6
  • 26
  • 31
  • Are you able to run other operations, for example a simple count? – Josh Dzielak Nov 17 '14 at 20:31
  • I kind of figured the issues is with the SDK assemblies. The request does get sent out and does response however the .net SDK doesn't look like can handle this. I used fiddler to see what happens on the net .... bit of a shame..... – Sanj Nov 18 '14 at 01:11
  • @Sanj, not sure if you noticed in the answer below, but there's a Github issue for this problem at https://github.com/keenlabs/keen-sdk-net/issues/9 -- if you could help reproduce the problem, that would be very helpful. – genehack Nov 19 '14 at 18:54

1 Answers1

1

More information and investigation on this Github issue.

Josh Dzielak
  • 1,803
  • 17
  • 19