Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel
Ezequiel Jadib 6b3df2c0b3
Update documentation links to point to new docs (#118)
6 years ago
..
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
1cac51aaa5
Merge pull request #119
6 years ago
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
6b3df2c0b3
Update documentation links to point to new docs (#118)
6 years ago
1cac51aaa5
Merge pull request #119
6 years ago
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
052a2e44c2
[CSharp] Update to BotBuilder 3.5.5
7 years ago
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
088c78b81b
[CSharp] CustomState with Azure DocumentDB
7 years ago
1cac51aaa5
Merge pull request #119
6 years ago

README.md

You have to be logged in to leave a comment. Sign In

Custom State API Bot Sample

A stateless sample bot tracking context of a conversation using a custom storage provider.

Deploy to Azure

Prerequisites

The minimum prerequisites to run this sample are:

  • The latest update of Visual Studio 2015. You can download the community version here for free.
  • The Bot Framework Emulator. To install the Bot Framework Emulator, download it from here. Please refer to this documentation article to know more about the Bot Framework Emulator.
  • The Azure DocumentDB Emulator. To install the Azure DocumentDB Emulator, download it from here. Please refer to this documentation article to know more about the Azure DocumentDB Emulator.

Code Highlights

The Bot Framework provides several ways of persisting data relative to a user or conversation. Behind the scenes the Bot Framework uses the Bot State Service for tracking context of a conversation. This allows the creation of stateless Bot web services so that they can be scaled.

There might be times when a custom storage wants to be used. Reasons for wanting this could be many, however the most common ones are:

  • Geographic Affinity: Users can create their storage service (e.g. Azure Tables or Azure DocumentDB) in regions geographically close to their other services, minimizing latencies and improving user experience
  • Geo-replication & Redundancy: Different storage services might provide varying degrees of redundancy, high availability, disaster recovery and geographic replication, which users might prefer (e.g. Azure Tables and Azure DocumentDB)
  • Data ownership / Compliance: Company policies and regulations may require the data to be in an account owned by the company
  • Leveraging data: Users may benefit from having their own data available for querying or feeding into other processes such as analytics, etc.

This bot is based on the State bot, with the addition that it uses a custom storage for tracking the context of a conversation. In this case, we are storing the bot state in DocumentDB by using the DocumentDbBotDataStore provided in the BotBuilder SDK Azure Extensions NuGet package.

Check out the creation and registration in the Autofac container of the DocumentDbBotDataStore in the Global.asax.cs. By default the DocumentDbBotDataStore will be created using the endpoint and auth key of the Azure DocumentDB Emulator. These settings are stored in the Web.config and can be edited to use your DocumentDB database.

Also, checkout the registration of the AzureModule, used to bundle up a set of required components

protected void Application_Start()
{
    Uri docDbServiceEndpoint = new Uri(ConfigurationManager.AppSettings["DocumentDbServiceEndpoint"]);
    string docDbEmulatorKey = ConfigurationManager.AppSettings["DocumentDbAuthKey"];

    var builder = new ContainerBuilder();

    builder.RegisterModule(new AzureModule(Assembly.GetExecutingAssembly()));

    var store = new DocumentDbBotDataStore(docDbServiceEndpoint, docDbEmulatorKey);
    builder.Register(c => store)
        .Keyed<IBotDataStore<BotData>>(AzureModule.Key_DataStore)
        .AsSelf()
        .SingleInstance();

    builder.Update(Conversation.Container);

    GlobalConfiguration.Configure(WebApiConfig.Register);
}

Outcome

The sample itself will behave exactly as the State bot with the difference that the bot state is being stored in DocumentDB.

After running the sample, go to the Azure DocumentDB Emulator Data Explorer to check the documents that were stored in DocumentDB. Different Documents are created depending on the bot store type being used.

The samples uses the three bot store types (UserData, ConversationData and PrivateConversationData), so three documents will appear in the DocumentDB collection.

Sample Outcome

Each of the documents contains the information related to the bot store type:

UserData ConversationData PrivateConversationData
Custom State - User Data Custom State - Conversation Data Custom State - Private Conversation Data

More Information

To get more information about how to get started in Bot Builder for .NET and State please review the following resources:

Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...