Skip to content

Instantly share code, notes, and snippets.

View stevekuznetsov's full-sized avatar

Steve Kuznetsov stevekuznetsov

  • Microsoft
  • United States
  • 03:13 (UTC -06:00)
View GitHub Profile
@stevekuznetsov
stevekuznetsov / changefeeds.go
Last active March 10, 2022 22:37
Investigating CockroachDB Changefeed Behavior
package main
import (
"context"
"encoding/json"
"fmt"
"math/rand"
"sort"
"strings"
"sync"
@stevekuznetsov
stevekuznetsov / contention.go
Last active April 29, 2022 00:27
CRDB Contention Reproducer
package main
import (
"context"
"flag"
"fmt"
"net/url"
"strings"
"sync"
"time"
package apiserver
import (
"context"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
certificatesv1 "k8s.io/api/certificates/v1"
corev1 "k8s.io/api/core/v1"