commit | 89e3d23d2b865d1f94c3f5d31c792ffe33d01311 | [log] [tgz] |
---|---|---|
author | Miguel Borges de Freitas <miguel-r-freitas@alticelabs.com> | Wed Oct 20 17:12:02 2021 +0100 |
committer | Pier Luigi Ventre <pier@opennetworking.org> | Tue Oct 26 17:52:13 2021 +0000 |
tree | ab451ecdd1d61744db7246e5ac44d24f6dadd95d | |
parent | b7921b2b1c3c36ddbd3e2b9d4a2944875602970e [diff] |
[P4Runtime] Make sure write requests contain the codec failure reason The submit() method of p4 WriteRequestImpl is returning an empty response if there are no update messages. However, one of the reasons for updates to be empty is the fact the catch block in appendToRequestMsg is reached due to some invalid usage of the p4runtime contract. In such situations, not only the user doesn't know why the request is failing (absence of logging in ONOS) but the responseBuilder which contains the failure is also not propagated. As a result, a future call to P4RuntimeWriteClient.WriteResponse.isSuccess() will return true (as if the request actually succeeded) and .all() will also not contain the failedResponse appended during the CodecException. Added a test to illustrate the issue. Change-Id: I0acfd3b34b3ed1db2d91f91fed08f9d00800dda4
ONOS is the only SDN controller platform that supports the transition from legacy “brown field” networks to SDN “green field” networks. This enables exciting new capabilities, and disruptive deployment and operational cost points for network operators.
The following packages are required:
ONOS is built with Bazel, an open-source build tool developed by Google. We suggest downloading and installing Bazel using the official instructions.
The minimum required Bazel version is 1.0.0
$ git clone https://gerrit.onosproject.org/onos
$ cd onos $ cat << EOF >> ~/.bash_profile export ONOS_ROOT="`pwd`" source $ONOS_ROOT/tools/dev/bash_profile EOF $ . ~/.bash_profile
$ cd $ONOS_ROOT
$ bazel build onos
To run ONOS locally on the development machine, simply run the following command:
$ bazel run onos-local [-- [clean] [debug]]
Or simpler one, if you have added the ONOS developer environment to your bash profile:
$ ok [clean] [debug]
The above command will create a local installation from the ONOS tarbal (re-building if necessary) and will start the ONOS server in the background. In the foreground, it will display a continuous view of the ONOS (Apache Karaf) log file. Options following the double-dash (–) are passed through to the ONOS Apache Karaf and can be omitted. Here, the clean
option forces a clean installation, removing any state from previous executions. The debug
option means that the default debug port 5005 will be available for attaching a remote debugger.
To access ONOS UI, use a browser to open:
Or simpler, use the onos-gui localhost
command.
The default username and password is onos
/rocks
.
To attach to the ONOS CLI console, run:
$ onos localhost
To run ONOS unit tests, including code Checkstyle validation, run the following command:
$ bazel query 'tests(//...)' | xargs bazel test
Or better yet, to run code Checkstyle and all unit tests use the following convenience alias:
$ ot
ONOS code is hosted and maintained using Gerrit.
Code on GitHub is only a mirror. The ONOS project does NOT accept code through pull requests on GitHub.
To contribute to ONOS, please refer to Sample Gerrit Workflow. It should include most of the things you'll need to get your contribution started!
For more information, please check out our wiki page or mailing lists:
ONOS (Open Network Operating System) is published under Apache License 2.0
YourKit supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications. YourKit is the creator of YourKit Java Profiler, YourKit .NET Profiler and YourKit YouMonitor.