Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure DocumentDB Owner resource does not exist

I having the same error icrosoft.Azure.Documents.DocumentClientException: Message: {"Errors":["Owner resource does not exist"]} , this is my scenario. When I deployed my webapp to Azure and try to get some document from docDb it throws this error. The docdb exists in azure and contains the document that i looking for.

The weird is that from my local machine(running from VS) this works fine. I'm using the same settings in Azure and local. Somebody have and idea about this.

Thanks

like image 964
user1301722 Avatar asked Apr 21 '17 20:04

user1301722


2 Answers

Owner resource does not exist

occurs when you have given a wrong database name.

For example, while reading a document with client.readDocument(..), where the client is DocumentClient instance, the database name given in docLink is wrong.

like image 185
Manohar Reddy Poreddy Avatar answered Sep 21 '22 13:09

Manohar Reddy Poreddy


This error for sure appears to be related to reading a database/collection/document which does not exist. I got the same exact error for a database that did exist but I input the name as lower case, this error appears to happen regardless of your partition key.

The best solution I could come up with for now is to wrap the

var response = await client.ReadDocumentAsync(UriFactory.CreateDocumentUri(database, collection, "documentid")); 

call in a try catch, not very elegant and I would much rather the response comes back with some more details but this is Microsoft for ya.

Something like the below should do the trick.

                Model myDoc = null;                  try                 {                     var response = await client.ReadDocumentAsync(UriFactory.CreateDocumentUri(database, collection, document));                     myDoc = (Model )(dynamic)response.Resource;                 }                 catch { }                   if (myDoc != null)                 {                    //do your work here                 } 

That is to get a better idea of the error then create the missing resource so you dont get the error anymore.

A few resources I had to go through before coming to this conclusion: https://github.com/DamianStanger/DocumentDbDemo

Azure DocumentDB Read Document Resource Not Found

like image 32
Louie Bacaj Avatar answered Sep 19 '22 13:09

Louie Bacaj