Giter Club home page Giter Club logo

ether's Introduction

ether: Edge Topology Synthesizer

PyPI Version Python 3.7+

Ether is a Python tool to generate plausible edge infrastructure configurations. It arose from the need to evaluate edge computing systems in different infrastructure scenarios where no appropriate testbeds are available.

Use cases

Some of the uses cases for ether include

  • Evaluating resource allocation strategies
  • Creating topologies for network simulations
  • Infrastructure capacity planing

Examples

Code example

Creating a topology for an urban sensing scenario, similar to that of the Array of Things could look like this:

topology = Topology()

aot_node = IoTComputeBox(nodes=[nodes.rpi3, nodes.rpi3])
neighborhood = lambda size: SharedLinkCell(
    nodes=[
        [aot_node] * size,
        IoTComputeBox([nodes.nuc] + ([nodes.tx2] * size * 2))
    ],
    shared_bandwidth=500,
    backhaul=MobileConnection('internet_chix'))
city = GeoCell(
    5, nodes=[neighborhood], density=lognorm((0.82, 2.02)))
cloudlet = Cloudlet(
    5, 2, backhaul=FiberToExchange('internet_chix'))

topology.add(city)
topology.add(cloudlet)

We have pre-parameterized versions of these scenarios that can be readily used:

topology = Topology()
UrbanSensingTopology().materialize(topology)

Example usage

The following example shows how we used generated topology to evaluate the effect on uplink usage of different resource allocation strategies in an edge computing platform. The node-link diagram of the topology is augmented with a topographic attribute map (rpreiner/tam) that the data exchange in log bytes. The left part of the figure shows the baseline resource allocation strategy, the right part shows our improved strategy that takes data-locality into account. The visualization helps to see how much the backhaul network is relieved, and how data transfer is isolated into edge networks.

Comparing  a sub-community in a generated IIoT-scenario topology

Related publications

  1. Rausch, T., Lachner, C., Frangoudis, P. A., Raith, P., & Dustdar, S. (2020). Synthesizing Plausible Infrastructure Configurations for Evaluating Edge Computing Systems. In 3rd USENIX Workshop on Hot Topics in Edge Computing (HotEdge 20). USENIX Association. [Preprint]

ether's People

Contributors

thrau avatar praith-dsg avatar phip123 avatar a13r avatar jjnp avatar dependabot[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.