Remove c
article thumbnail

Zero Configuration Service Mesh with On-Demand Cluster Discovery

The Netflix TechBlog

The abstractions that Eureka provides for this are Virtual IPs (VIPs) for insecure communication, and Secure VIPs (SVIPs) for secure. If service A needs to talk to clusters B and C, then you need to define clusters B and C as part of A’s proxy config. It’s been a great experience working with you all on this.

Traffic 229
article thumbnail

Using Generative AI to Build Generative AI

O'Reilly

On April 24, OReilly Media will be hosting Coding with AI: The End of Software Development as We Know It a live virtual tech conference spotlighting how AI is already supercharging developers, boosting productivity, and providing real value to their organizations.

Code 84
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

article thumbnail

bpftrace (DTrace 2.0) for Linux 2018

Brendan Gregg

more capable, and built from the ground up for the modern era of the eBPF virtual machine. eBPF was created by Alexei Starovoitov while at PLUMgrid (he's now at Facebook) as a generic in-kernel virtual machine, with software defined networks as the primary use case. It's shaping up to be a DTrace version 2.0: Attaching 2 probes. ^C

C++ 105
article thumbnail

The Speed of Time

Brendan Gregg

CLI tools The Cassandra systems were EC2 virtual machine (Xen) instances. Note that Ubuntu also has a frame to show entry into vDSO (virtual dynamic shared object). As (C) looked like a kernel rebuild, I started with (D) and (E). ## 5. I also rewrote this in C and called gettimeofday(2) directly: $ cat gettimeofdaybench.c.

Speed 103
article thumbnail

What programming languages does HammerDB use and why does it matter?

HammerDB

To benchmark a database we introduce the concept of a Virtual User. For HammerDB both TPROC-C and TPROC-H run all of their workloads on the database being tested in SQL. The following is an example from TPROC-C from SQL Server. TPROC-C however is derived from the TPC-C specification and requires application logic around the SQL.

article thumbnail

HammerDB v4.2 New Features Pt1: MariaDB Build and Test Example with the CLI

HammerDB

adds full support for MariaDB in both the GUI as shown: And in the CLI as a separate database from MySQL, this post describes a setup and test for MariaDB using the CLI on Linux as an example running the TPROC-C workload. dbset db maria dbset bm TPC-C diset connection maria_socket /tmp/mariadb10234.sock HammerDB v4.2 linux-x86_64.tar.gz

Testing 58
article thumbnail

Finding Table Differences on Nullable Columns Using MySQL Generated Columns

Percona

from -> sbtest1 a left join -> sbtest2 b using (k,c,pad) -> where b.id from -> sbtest2 a left join -> sbtest1 b using (k,c,pad) -> where b.id Both tables have the same number of rows. is null union -> select "sbtest2",a.* sec) As you can see, column k is NULL.

C++ 66