Skip to content

Latest commit

 

History

History
114 lines (93 loc) · 5.47 KB

documentdb-mongodb-mongochef.md

File metadata and controls

114 lines (93 loc) · 5.47 KB
title description keywords services author manager editor documentationcenter ms.assetid ms.service ms.workload ms.tgt_pltfrm ms.devlang ms.topic ms.date ms.author
Use MongoChef with an Azure DocumentDB account with protocol support for MongoDB | Microsoft Docs
Learn how to use MongoChef with a DocumentDB account with protocol support for MongoDB, now available for preview.
mongochef
documentdb
AndrewHoh
jhubbard
352c5fb9-8772-4c5f-87ac-74885e63ecac
documentdb
data-services
na
na
article
11/29/2016
anhoh

Use MongoChef with a DocumentDB account with protocol support for MongoDB

To connect to an Azure DocumentDB account with protocol support for MongoDB using MongoChef, you must:

Create the connection in MongoChef

To add your DocumentDB account with protocol support for MongoDB to the MongoChef connection manager, perform the following steps.

  1. Retrieve your DocumentDB with protocol support for MongoDB connection information using the instructions here.

    Screen shot of the connection string blade

  2. Click Connect to open the Connection Manager, then click New Connection

    Screen shot of the MongoChef connection manager

  3. In the New Connection window, on the Server tab, enter the HOST (FQDN) of the DocumentDB account with protocol support for MongoDB and the PORT.

    Screen shot of the MongoChef connection manager server tab

  4. In the New Connection window, on the Authentication tab, choose Authentication Mode Standard (MONGODB-CR or SCARM-SHA-1) and enter the USERNAME and PASSWORD. Accept the default authentication db (admin) or provide your own value.

    Screen shot of the MongoChef connection manager authentication tab

  5. In the New Connection window, on the SSL tab, check the Use SSL protocol to connect check box and the Accept server self-signed SSL certificates radio button.

    Screen shot of the MongoChef connection manager SSL tab

  6. Click the Test Connection button to validate the connection information, click OK to return to the New Connection window, and then click Save.

    Screen shot of the MongoChef test connection window

Use MongoChef to create a database, collection, and documents

To create a database, collection, and documents using MongoChef, perform the following steps.

  1. In Connection Manager, highlight the connection and click Connect.

    Screen shot of the MongoChef connection manager

  2. Right click the host and choose Add Database. Provide a database name and click OK.

    Screen shot of the MongoChef Add Database option

  3. Right click the database and choose Add Collection. Provide a collection name and click Create.

    Screen shot of the MongoChef Add Collection option

  4. Click the Collection menu item, then click Add Document.

    Screen shot of the MongoChef Add Document menu item

  5. In the Add Document dialog, paste the following and then click Add Document.

     {
     "_id": "AndersenFamily",
     "lastName": "Andersen",
     "parents": [
            { "firstName": "Thomas" },
            { "firstName": "Mary Kay"}
     ],
     "children": [
        {
            "firstName": "Henriette Thaulow", "gender": "female", "grade": 5,
            "pets": [{ "givenName": "Fluffy" }]
        }
     ],
     "address": { "state": "WA", "county": "King", "city": "seattle" },
     "isRegistered": true
     }
    
  6. Add another document, this time with the following content.

     {
     "_id": "WakefieldFamily",
     "parents": [
         { "familyName": "Wakefield", "givenName": "Robin" },
         { "familyName": "Miller", "givenName": "Ben" }
     ],
     "children": [
         {
             "familyName": "Merriam",
              "givenName": "Jesse",
             "gender": "female", "grade": 1,
             "pets": [
                 { "givenName": "Goofy" },
                 { "givenName": "Shadow" }
             ]
         },
         {
             "familyName": "Miller",
              "givenName": "Lisa",
              "gender": "female",
              "grade": 8 }
     ],
     "address": { "state": "NY", "county": "Manhattan", "city": "NY" },
     "isRegistered": false
     }
    
  7. Execute a sample query. For example, search for families with the last name 'Andersen' and return the parents and state fields.

    Screen shot of Mongo Chef query results

Next steps

  • Explore DocumentDB with protocol support for MongoDB samples.