-
-
Notifications
You must be signed in to change notification settings - Fork 400
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
topology: Added support for VPP running in docker container #1857
base: master
Are you sure you want to change the base?
Conversation
Can one of the admin review this patch ? |
21 similar comments
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
Can one of the admin review this patch ? |
run tests |
run skydive-functional-tests-backend-orientdb |
Code compilation is working for me (using "make") , "make fmt" is also success (i'm using VM with ubuntu 18.04, go 1.11) and elastic search failure is some test timeout problem (not sure about the cause). |
@fgschwan First, thanks a lot for this pull request. Our CI is using Go 1.10.3 - which has different
|
@fgschwan Indeed. I just updated our Jenkins with your change. Sorry for the delay, we were a bit busy those 2 last weeks. We will give a proper review of your PR this week for sure. |
run skydive-functional-tests-backend-elasticsearch |
run skydive-functional-tests-backend-orientdb |
@fgschwan I took a pretty long to review your PR, sorry about that. I actually spent quite a long time trying things :-) My concern was that we would kinda have 2 different VPP probes : one that uses govpp, the other one using the CLI. I also tried to simplify the code that handles the links between the VPP node and the interfaces, and the links between the memifs (using Linker and MetadataIndexerLinker https://github.com/skydive-project/skydive/blob/master/graffiti/graph/linker.go and https://github.com/skydive-project/skydive/blob/master/graffiti/graph/indexer.go). But I don't see the point in delaying the merging of your PR, I'll push a PR with the refactoring later and add you as a reviewer, if it's ok for you. That being said, I have one remark with the PR. It's a bit odd to have a With this change, all the related VPP code would be in |
@lebauce Thank you for your review.
I don't think that we can ignore VPP version, because govpp is using binary API of VPP and that can change from version to version. You probably can compile it, but actual communication with VPP for those binary API that changes may fail.
Yes, please add me as reviewer to your refactoring.
The docker.go was meant as library for all subprobes, but there was only one subprobe (the VPP subprobe). So i left it inside the VPP subprobe. The only other place that i can put this file without getting cyclic dependency is topology/probes/docker and that seems odd to because it is for subprobes only.
This seems like a nice idea. Maybe easily breakable if someone changes docker probe code in some way and not knowing dependency in vpp probe, but that could be manageable by using tests. Also i checked the subprobe API if this is possible. All thing except https://github.com/skydive-project/skydive/pull/1857/files#diff-01d2cbebb5fe6a69afd9cd490e4791d6R39 are graph related and this one thing that is not is used to grab mounted volumes from docker to see whether memif interfaces are referring to the same physical socket file. This can be managed i.e. by docker probe exposing volume mount information in metadata (don't know if it does right know or not).
I thought about using docker client provided from docker probe (to vpp subprobe), but there was no goroutine-safety (thread-safety) guarantee about the docker client and i was running docker "exec" concurrently in multiple goroutines due to performance. Ideally, the move to use govpp would probably solve performance issues that i tracked down to docker client (too many docker client calls for many docker containers). I would also allow us to get rid of docker client. I already discussed govpp usage in the end of #1857 (comment) . Using govpp could also unify vpp probe and docker vpp-subprobe code to use the same code for grabbing data from VPP. The only problem is that different version of VPP have different binary API (most thing doesn't change between version but some do) |
I checked with govpp people what is the current state and future plans for handling differences in VPP versions. There are actually 2 binary API, one for handling configuration and on for statistics (2 different unix socket files). The important one (configuration binary api = get/set config values) currently needs to have generated structs from binary API json files from VPP. The statistic API needed in past generated structs as the configuration API, but now it works differently. It is more generic and without generated structs. To make binary api call you fill string name of method you want to call and values as parameters. Then govpp finds it in binary API definition files of VPP (json files) and tries to make the proper format for call to VPP. Of course if you try to call unsupported/dropped/modified API part of VPP, it will fail. But it will fail dynamically in runtime and not in compilation time. This gives more power to user of govpp, because with generation of struct any change in API invalidated usage of govpp for running VPP (version mismatch). With this approach, if API mismatch happens in part of API that is not used at all, everything works. As i mentioned earlier, this is approach is currently only in statistic binary API and some day it will be available for configuration binary API. So in the end, different VPP versions will still need to be handled, but it won't be that difficult as to have generated structs for all supported VPP versions and properly switch between them. |
Can one of the admins verify this patch ? |
22 similar comments
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
Can one of the admins verify this patch ? |
This pull request extends docker topology by information from VPP running inside docker container:
Motivation for given topology extensions is this topology case:
host/node -> veth tunnel -> VPP (first docker container) -> memif tunnel -> VPP (second docker container) -> memif tunnel -> VPP (third docker container) -> veth tunnel -> host/node
Relation to existing VPP probe:
The existing VPP probe is communicating with VPP installed on host/node. My PR is detecting VPP inside docker containers. The existing VPP probe is using govpp, but i use for simplicity VPP CLI due to additional docker client layer.