opendaylight

Integrate ODL with Jaeger or Zipkin

好久不见. 提交于 2019-12-20 06:33:52
问题 I am trying to integrate an ODL application with Jaeger or Zipkin to trace the logs. Jaeger worked with fine with a Java Application, but doesn't work with ODL. I get NoClassDefError even though I added the bundles: install -s wrap:mvn:org.apache.thrift/libthrift/0.12.0 install -s wrap:mvn:io.jaegertracing/jaeger-core/0.35.4 install -s wrap:mvn:io.jaegertracing/jaeger-thrift/0.35.4 install -s wrap:mvn:io.opentracing/opentracing-api/0.31.0 install -s wrap:mvn:io.opentracing/opentracing-util/0

Using OpenDaylight starter archetype does not work

£可爱£侵袭症+ 提交于 2019-12-20 03:09:59
问题 Trying to follow the opendaylight developer tutorial to get an initial hello world application running on the controller, however running the command mvn archetype:generate -DarchetypeGroupId=org.opendaylight.controller -DarchetypeArtifactId=opendaylight-startup-archetype \ -DarchetypeRepository=https://nexus.opendaylight.org/content/repositories/public/ \ -DarchetypeCatalog=https://nexus.opendaylight.org/content/repositories/public/archetype-catalog.xml Results in an error No plugin found

Using OpenDaylight starter archetype does not work

吃可爱长大的小学妹 提交于 2019-12-20 03:09:19
问题 Trying to follow the opendaylight developer tutorial to get an initial hello world application running on the controller, however running the command mvn archetype:generate -DarchetypeGroupId=org.opendaylight.controller -DarchetypeArtifactId=opendaylight-startup-archetype \ -DarchetypeRepository=https://nexus.opendaylight.org/content/repositories/public/ \ -DarchetypeCatalog=https://nexus.opendaylight.org/content/repositories/public/archetype-catalog.xml Results in an error No plugin found

Is opendaylight a dead project?

匆匆过客 提交于 2019-12-13 09:48:56
问题 Anyone knows what is going in ODL project? In my opinion, it is like a dead project because of the following reasons: 1- Some of the sub-project are not active anymore but you can still find documents about them. For example, how can I use DIDM in Oxygen release for HP switches? I couldn't install it because it is not available anymore. What is the alternative? 2- I think dlux is also not available in Flourine release anymore. Any ideas? Thanks, 回答1: No, OpenDaylight is very much active -

Install odl-restconf in custom karaf distribution

蹲街弑〆低调 提交于 2019-12-13 07:18:56
问题 I have a custom karaf installation. I want to do a feature:install odl-restconf. for doing this i have done a feature:repo-add of feature file available in the below location https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/org/opendaylight/controller/features-restconf/1.3.0-SNAPSHOT/ After this i have made entries in karaf org.ops4j.pax.url.mvn.cfg file and added the below url as part of maven repo http://nexus.opendaylight.org/content/repositories@id=public, \ http:

How does Multiple shards per module support works in ODL nitrogen

懵懂的女人 提交于 2019-12-13 04:44:42
问题 The module-shards.conf file mentions the following : For Helium we support only one shard per module. Beyond Helium we will support more than 1 Have ODL Nitrogen and trying to use "module-shards.conf" like the following : module-shards = [ { name = "default" shards = [ { name="default1" replicas = [ "member-1" ] }, { name="default2" replicas = [ "member-1" ] } ] } ] That seems to be working as karaf shows the 2 shards successfully created for the same module "default". But how the data is

Why eman project is dropped from opendaylight oxygen release. Any specific reason for it to be droppped? [closed]

你离开我真会死。 提交于 2019-12-13 03:49:57
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed last year . Can anyone please tell me why eman project was dropped from opendaylight Oxygen release. Or is there any other feature which can do the same job as done by eman. 回答1: The eman project along with some other projects lost their contributors and are no longer actively maintained by

How to exclude module name in leaf value of Identityref during ODL validation?

痴心易碎 提交于 2019-12-13 03:22:54
问题 I have YANG model and JSON object which will be verified by ODL (see bellow). I need to exclude module name from JSON to verify. When I exclude module name from identityref ("type": "center-car-sale-type:sedan") and send only identityref name ("type": "sedan") ODL throw exception that this identityref is not found. I want to send object without module name because "module name" + "identityref name" leads to mix metadata and instance. How can I set up ODL validation to avoid module name in

is it possible to use OSGI with spring boot microservices? Please tell me in detail

北城余情 提交于 2019-12-13 03:15:00
问题 I want to use ODL framework for SDN development, in that internally OSGI framework is used to (karaf). Apart from that i want to use spring boot and spring cloud to achieve cloud services also. It is possible to use these all framework as a single unit. and how we can achieve this please tell. 回答1: This questions is somewhat overly broad and generic, but I'll try to answer it anyway making two assumptions: If you want to use Spring Boot / Cloud "in-process", that is within ODL/ Karaf, then

How to connect Opendaylight to Mininet?

自闭症网瘾萝莉.ら 提交于 2019-12-12 22:32:42
问题 I've been working in a simple Hello World project to learn the basics for Opendaylight (I was following this tutorial). Now I want to connect this build of the controller to a network topology defined by Mininet but this is not working. I read that this may be due to I haven't installed odl-l2switch but when I type feature:list --installed the bundle doesn't appear and when I type feature:install odl-l2switch it doesn't appear neither. Perhaps it is because the way I created the project: mvn