testground VS dettrace

Compare testground vs dettrace and see what are their differences.

testground

๐Ÿงช A platform for testing, benchmarking, and simulating distributed and p2p systems at scale. (by testground)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
testground dettrace
2 2
401 29
0.2% -
1.6 2.6
7 months ago over 3 years ago
Go C++
GNU General Public License v3.0 or later GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

testground

Posts with mentions or reviews of testground. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-02-11.

dettrace

Posts with mentions or reviews of dettrace. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-22.
  • Deterministic Linux for Controlled Testing and Software Bug-Finding
    5 projects | news.ycombinator.com | 22 Nov 2022
    Note that this is a follow-on project from the earlier Dettrace system, which was applied mainly to reproducible builds (as in the academic paper, https://dl.acm.org/doi/10.1145/3373376.3378519, and presented to the Debian Reproducible Builds summit):

    - https://github.com/dettrace/dettrace

    And one cool part of it is this Rust program instrumentation layer:

    - https://github.com/facebookexperimental/reverie

    It's good for building OS-emulator style projects or tracing tools.

  • Shadow Simlulator โ€“ run real applications over a simulated Internet topology
    11 projects | news.ycombinator.com | 19 Apr 2021
    We've started looking into eBPF a bit - IIUC eBPF by itself doesn't give us the ability to service or arbitrarily manipulate the traced process's syscalls.

    We have recently learned of an interesting technique that dettrace [1] uses of combining seccomp with an eBPF filter and ptrace. Instead of generating a ptrace-stop for every syscall (as we do now, using PTRACE_SYSEMU), they use a seccomp policy with an eBPF filter, s.t. a ptrace-stop is only generated for syscalls that violate the policy, allowing them to emulate the result of those syscalls. syscalls that don't violate the policy are allowed to execute natively, saving a lot of overhead.

    [1]: https://github.com/dettrace/dettrace

    This works great for them since they want to emulate a relatively small subset of syscalls. In our case we want to emulate most syscalls, so it's not as clear-cut of a win. We have found though that if we use an LD_PRELOAD'd shim in the target process to intercept syscalls and then service them via IPC, that's substantially faster than catching them with ptrace. That runs back into the problems with LD_PRELOAD in general of there being various ways of missing syscalls. but, we may be able to use that technique along with ptrace+seccomp+ebpf to intercept any syscalls that we'd otherwise miss. The seccomp technique would allow us to exempt the syscalls that our shim itself is making to do the IPC.

What are some alternatives?

When comparing testground and dettrace you can also consider the following projects:

shadow - Shadow is a discrete-event network simulator that directly executes real application code, enabling you to simulate distributed systems with thousands of network-connected processes in realistic and scalable private network experiments using your laptop, desktop, or server running Linux.

mininet - Emulator for rapid prototyping of Software Defined Networks

imunes - Integrated Multiprotocol Network Emulator/Simulator

core - Common Open Research Emulator

shadow-plugin-tor - A Shadow plug-in that runs the Tor anonymity software

garden - Automation for Kubernetes development and testing. Spin up production-like environments for development, testing, and CI on demand. Use the same configuration and workflows at every step of the process. Speed up your builds and test runs via shared result caching