commit | f3593a89733e0447da8df8f8498db4aa830bbb07 | [log] [tgz] |
---|---|---|
author | khenaidoo <knursimu@ciena.com> | Fri Jun 01 16:41:31 2018 -0400 |
committer | khenaidoo Nursimulu <knursimu@ciena.com> | Mon Jun 04 13:26:28 2018 +0000 |
tree | bf14a7050038ac8466378334ee1a84de0fded9b4 | |
parent | 253461fdac252f1e0939d67dc1083e6b66906c5f [diff] |
[VOL-909] Add support to add and remove individual flows in voltha core. This update implements the logic in the voltha core to populate only newly added flows or newly deleted flows to the adapters. In order for adapters to take advantage of that capability, the adapter needs to set the accepts_add_remove_flow_updates flag to True when registering their supported device types and also implements the remove_from_flow_table() and add_to_flow_table() methods. Example of these can be found in the ponsim adapter. The above methods in the ponsim adapters (one and olt) are not fully implemented as that would require a change in the actual ponsim devices (a Jira will be raised to follow-up this work). Also, since these methods are not implemented in the ponsim adapters then the accepts_add_remove_flow_updates flag is set to False for now (the code was tested locally by setting that flag to True and ensure the implemented logic works). Additional work will eventually be required to optimized the flow decomposer logic to decompose only newly added or deleted flows. This work will be performed as part of the voltha 2.0 effort. Please enter the commit message for your changes. Lines starting Change-Id: I567771610f65aa0dde30eee9013c11218d1b9158
Voltha aims to provide a layer of abstraction on top of legacy and next generation access network equipment for the purpose of control and management. Its initial focus is on PON (GPON, EPON, NG PON 2), but it aims to go beyond to eventually cover other access technologies (xDSL, Docsis, G.FAST, dedicated Ethernet, fixed wireless).
Key concepts of Voltha:
Control and management in the access network space is a mess. Each access technology brings its own bag of protocols, and on top of that vendors have their own interpretation/extension of the same standards. Compounding the problem is that these vendor- and technology specific differences ooze way up into the centralized OSS systems of the service provider, creating a lot of inefficiencies.
Ideally, all vendor equipment for the same access technology should provide an identical interface for control and management. Moreover, there shall be much higher synergies across technologies. While we wait for vendors to unite, Voltha provides an increment to that direction, by confining the differences to the locality of access and hiding them from the upper layers of the OSS stack.
While we are still at the early phase of development, you can check out the BUILD.md file to see how you can build it, run it, test it, etc.
Contributions, small and large, are welcome. Minor contributions and bug fixes are always welcome in form of pull requests. For larger work, the best is to check in with the existing developers to see where help is most needed and to make sure your solution is compatible with the general philosophy of Voltha.