- OpenDaylight Cookbook
- Mathieu Lemay Alexis de Talhou?t Jamie Goodyear Rashmi Pujar Mohamed El Serngawy Yrineu Rodrigues
- 212字
- 2021-07-02 21:38:39
How it works...
OpenDaylight clustering heavily relies on AKKA technology to provide the building blocks for the clustering components, especially for operations on remote shards. The main reason for using AKKA is because it suits the existing design of MD-SAL, as it is already based on the actor model.
OpenDaylight clustering components include:
- ClusteringConfiguration: The ClusteringConfiguration defines information about the members of the cluster, and what data they contain.
- ClusteringService: The ClusteringService reads the cluster configuration, resolves the member's name to its IP address/hostname and maintains the registration of the components that are interested in being notified of member status changes.
- DistributedDataStore: The DistributedDataStore is responsible for the implementation of the DOMStore, which replaces the InMemoryDataStore. It creates the local shard actors in accordance with the cluster configuration and creates the listener wrapper actors when a consumer registers a listener.
- Shard: Shard is a processor that contains some of the data in the system. A shard is an actor, communicating via messages. Those are very similar to the operations on the DOMStore interface. When a shard receives a message, it will log the event in a journal, which could then be used as a method to recover the state of the data store. This one would be maintained in an InMemoryDataStore object.
推薦閱讀
- Learning ROS for Robotics Programming(Second Edition)
- SOA實踐
- Learn to Create WordPress Themes by Building 5 Projects
- Android 9 Development Cookbook(Third Edition)
- C語言實驗指導(dǎo)及習(xí)題解析
- 軟件測試技術(shù)指南
- Mastering Git
- Visualforce Developer’s guide
- Kotlin開發(fā)教程(全2冊)
- Go語言編程
- Xcode 6 Essentials
- 嵌入式Linux C語言程序設(shè)計基礎(chǔ)教程
- PHP 8從入門到精通(視頻教學(xué)版)
- Node.js應(yīng)用開發(fā)
- PHP動態(tài)網(wǎng)站開發(fā)實踐教程