Giter Site home page Giter Site logo

Comments (10)

dkropachev avatar dkropachev commented on September 23, 2024 1

Reason for this leak is the that golang maps are not shrinking when you do delete on them.
Under the hood, for tracking inflight tokens it is using u64set from go-set which is based on map.
key for which is every token gemini is addressing, no wonder it is leaking memory.
Solution would be to use something like shrinking-map instead

from gemini.

dkropachev avatar dkropachev commented on September 23, 2024

It looks like a golang issue, but I can't reproduce it, here is the test I'am using:

package main

import (
	"github.com/scylladb/go-set/u64set"
	"math/rand"
	"sync"
)

// syncU64set is an InFlight implementation protected by a sync.RWLock
type syncU64set struct {
	pks *u64set.Set
	mu  *sync.RWMutex
}

func newSyncU64set() *syncU64set {
	return &syncU64set{
		pks: u64set.New(),
		mu:  &sync.RWMutex{},
	}
}

func (s *syncU64set) Delete(v uint64) {
	s.mu.Lock()
	defer s.mu.Unlock()
	s.pks.Remove(v)
}

func (s *syncU64set) AddIfNotPresent(v uint64) bool {
	s.mu.RLock()
	if s.pks.Has(v) {
		s.mu.RUnlock()
		return false
	}
	s.mu.RUnlock()
	return s.addIfNotPresent(v)
}

func (s *syncU64set) addIfNotPresent(v uint64) bool {
	s.mu.Lock()
	defer s.mu.Unlock()
	if s.pks.Has(v) {
		// double check
		return false
	}
	s.pks.Add(v)
	return true
}

func AddDeleteInParallel(flight *syncU64set, wg *sync.WaitGroup) {
	for i := uint64(1); i < 1000; i++ {
		switch rand.Intn(1) {
		case 0:
			flight.Delete(uint64(rand.Intn(10000)))
		case 1:
			flight.AddIfNotPresent(uint64(rand.Intn(10000)))
		}
	}
	wg.Done()
}

func RunTest() {
	flight := newSyncU64set()
	var wg sync.WaitGroup

	for i := 1; i < 100000; i++ {
		wg.Add(1)
		go AddDeleteInParallel(flight, &wg)
	}
	defer wg.Wait()

}

func main() {
	defer RunTest()
}

from gemini.

yarongilor avatar yarongilor commented on September 23, 2024

Reproduced in 5.0.0 similarly with an error in map_faststr.go:96. The loader got coredump and Gemini reported a SIGSEV

2022-06-29 16:34:38.266: (CoreDumpEvent Severity.ERROR) period_type=one-time event_id=cede2b33-c42a-49fb-aad4-ecde0e0c2f4e node=Node gemini-with-nemesis-3h-normal-5-0-loader-node-b58cd479-1 [54.160.18.255 | 10.0.2.188] (seed: False)

2022-06-29 17:05:10.550: (GeminiStressEvent Severity.ERROR) period_type=end event_id=2b48d1e7-93b3-4819-a088-456b8833ef5c duration=1h1m37s: node=Node gemini-with-nemesis-3h-normal-5-0-loader-node-b58cd479-1 [54.160.18.255 | 10.0.2.188] (seed: False) gemini_cmd=/$HOME/gemini -d --duration 3h --warmup 30m -c 50 -m mixed -f --non-interactive --cql-features normal --max-mutation-retries 5 --max-mutation-retries-backoff 500ms --async-objects-stabilization-attempts 5 --async-objects-stabilization-backoff 500ms --replication-strategy "{'class': 'SimpleStrategy', 'replication_factor': '3'}" --oracle-replication-strategy "{'class': 'SimpleStrategy', 'replication_factor': '1'}" --test-cluster=10.0.3.234,10.0.2.224,10.0.1.146 --outfile /home/centos/gemini_result_8b6062ef-7352-46c5-9187-cbea49954641.log --seed 34 --oracle-cluster=10.0.2.33
result=Exit code: 2
Command output: ['}', '{"L":"INFO","T":"2022-06-29T16:03:37.560Z","N":"generator","M":"starting partition key generation loop"}']
errors=['Command error: unexpected fault address 0x0\nfatal error: fault\n[signal SIGSEGV: segmentation violation code=0x80 addr=0x0 pc=0x414100]\n\ngoroutine 833 [running]:\nruntime.throw(0xbeba86, 0x5)\n\t/usr/lib/golang/src/runtime/panic.go:1116 +0x72 fp=0xc014e59238 sp=0xc014e59208 pc=0x437b92\nruntime.sigpanic()\n\t/usr/lib/golang/src/runtime/signal_unix.go:749 +0x405 fp=0xc014e59268 sp=0xc014e59238 pc=0x44e105\nruntime.mapaccess1_faststr(0xb3b100, 0xc09bfa9650, 0xc0003343dc, 0x3, 0xc3a2559450)\n\t/usr/lib/golang/src/runtime/map_faststr.go:96 +0x320 fp=0xc014e592d8 sp=0xc014e59268 pc=0x414100\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2559450, 0x0, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc09bfa9650, 0xc3a1aab360, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0xe5 fp=0xc014e59378 sp=0xc014e592d8 pc=0x8c8465\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc16583d000, 0x8f0, 0x900, 0xc02678a1e0, 0xc024176ac0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105 fp=0xc014e59418 sp=0xc014e59378 pc=0x8c8205\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239 fp=0xc014e597b0 sp=0xc014e59418 pc=0x8ca0f9\ngithub.com/scylladb/gemini/store.(*delegatingStore).Check(0xc0002013b0, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, 0xc02678a1e0, 0xc024176ac0, 0x1, 0x1, 0xc009a40080, ...)\n\t<autogenerated>:1 +0x105 fp=0xc014e59870 sp=0xc014e597b0 pc=0x8cb745\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc014e59d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc800, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd fp=0xc014e59b18 sp=0xc014e59870 pc=0xab25bd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296 fp=0xc014e59d30 sp=0xc014e59b18 pc=0xaafe96\nmain.job.func1(0xc000216398, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b fp=0xc014e59f78 sp=0xc014e59d30 pc=0xabb57b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028dc20)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59 fp=0xc014e59fd0 sp=0xc014e59f78 pc=0x72e159\nruntime.goexit()\n\t/usr/lib/golang/src/runtime/asm_amd64.s:1374 +0x1 fp=0xc014e59fd8 sp=0xc014e59fd0 pc=0x46fde1\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 1 [semacquire, 7 minutes]:\nsync.runtime_Semacquire(0xc00037e1f0)\n\t/usr/lib/golang/src/runtime/sema.go:56 +0x45\nsync.(*WaitGroup).Wait(0xc00037e1e8)\n\t/usr/lib/golang/src/sync/waitgroup.go:130 +0x65\ngolang.org/x/sync/errgroup.(*Group).Wait(0xc00037e1e0, 0xc0187d1180, 0xc1d700)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:40 +0x31\nmain.run(0x1052460, 0xc0001ac800, 0x0, 0x1f, 0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/root.go:306 +0x14a5\ngithub.com/spf13/cobra.(*Command).execute(0x1052460, 0xc0000c2010, 0x1f, 0x1f, 0x1052460, 0xc0000c2010)\n\t/home/penberg/go/pkg/mod/github.com/spf13/[email protected]/command.go:762 +0x47c\ngithub.com/spf13/cobra.(*Command).ExecuteC(0x1052460, 0x4a, 0xc000107f78, 0x406325)\n\t/home/penberg/go/pkg/mod/github.com/spf13/[email protected]/command.go:852 +0x2fe\ngithub.com/spf13/cobra.(*Command).Execute(...)\n\t/home/penberg/go/pkg/mod/github.com/spf13/[email protected]/command.go:800\nmain.main()\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/main.go:29 +0x31\n\ngoroutine 38 [IO wait]:\ninternal/poll.runtime_pollWait(0x7f631288bda0, 0x72, 0x0)\n\t/usr/lib/golang/src/runtime/netpoll.go:222 +0x55\ninternal/poll.(*pollDesc).wait(0xc000070718, 0x72, 0x0, 0x0, 0xbed933)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:87 +0x45\ninternal/poll.(*pollDesc).waitRead(...)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:92\ninternal/poll.(*FD).Accept(0xc000070700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_unix.go:394 +0x1fc\nnet.(*netFD).accept(0xc000070700, 0x60afd70126ea8443, 0x0, 0x0)\n\t/usr/lib/golang/src/net/fd_unix.go:172 +0x45\nnet.(*TCPListener).accept(0xc00000d200, 0x62bc8035, 0xc00009adf8, 0x48e9e6)\n\t/usr/lib/golang/src/net/tcpsock_posix.go:139 +0x32\nnet.(*TCPListener).Accept(0xc00000d200, 0xc00009ae48, 0x18, 0xc000082480, 0x70d5cc)\n\t/usr/lib/golang/src/net/tcpsock.go:261 +0x65\nnet/http.(*Server).Serve(0xc0002b2000, 0xcc7640, 0xc00000d200, 0x0, 0x0)\n\t/usr/lib/golang/src/net/http/server.go:2937 +0x266\nnet/http.(*Server).ListenAndServe(0xc0002b2000, 0xc0002b2000, 0x8)\n\t/usr/lib/golang/src/net/http/server.go:2866 +0xb7\nnet/http.ListenAndServe(...)\n\t/usr/lib/golang/src/net/http/server.go:3120\nmain.run.func1()\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/root.go:172 +0xb5\ncreated by main.run\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/root.go:170 +0x391\n\ngoroutine 103 [select]:\ngithub.com/gocql/gocql.(*writeCoalescer).writeFlusher(0xc0000bf860, 0x30d40)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:834 +0x165\ncreated by github.com/gocql/gocql.newWriteCoalescer\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:739 +0x125\n\ngoroutine 40 [select, 37 minutes]:\ngithub.com/gocql/gocql.(*eventDebouncer).flusher(0xc0001dc820)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/events.go:39 +0xb5\ncreated by github.com/gocql/gocql.newEventDebouncer\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/events.go:27 +0xe7\n\ngoroutine 41 [select, 37 minutes]:\ngithub.com/gocql/gocql.(*eventDebouncer).flusher(0xc0001dc8c0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/events.go:39 +0xb5\ncreated by github.com/gocql/gocql.newEventDebouncer\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/events.go:27 +0xe7\n\ngoroutine 19 [IO wait]:\ninternal/poll.runtime_pollWait(0x7f631288be88, 0x72, 0xcbe980)\n\t/usr/lib/golang/src/runtime/netpoll.go:222 +0x55\ninternal/poll.(*pollDesc).wait(0xc000070898, 0x72, 0xcbe900, 0x100c4b0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:87 +0x45\ninternal/poll.(*pollDesc).waitRead(...)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:92\ninternal/poll.(*FD).Read(0xc000070880, 0xc00034d000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_unix.go:159 +0x1a5\nnet.(*netFD).Read(0xc000070880, 0xc00034d000, 0x1000, 0x1000, 0xc000229bd8, 0x405f5c, 0xc0001a2a80)\n\t/usr/lib/golang/src/net/fd_posix.go:55 +0x4f\nnet.(*conn).Read(0xc0001863a0, 0xc00034d000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/net.go:182 +0x8e\nbufio.(*Reader).Read(0xc000181740, 0xc00034e828, 0x1, 0x9, 0x28, 0x0, 0xc3942ff4a0)\n\t/usr/lib/golang/src/bufio/bufio.go:227 +0x222\nio.ReadAtLeast(0xcbc920, 0xc000181740, 0xc00034e828, 0x1, 0x9, 0x1, 0x121c751500000000, 0xc000229d00, 0x40e658)\n\t/usr/lib/golang/src/io/io.go:314 +0x87\nio.ReadFull(...)\n\t/usr/lib/golang/src/io/io.go:333\ngithub.com/gocql/gocql.readHeader(0xcbc920, 0xc000181740, 0xc00034e828, 0x9, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, ...)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/frame.go:449 +0x99\ngithub.com/gocql/gocql.(*Conn).recv(0xc00034e7e0, 0xcc9e40, 0xc00018d800, 0x0, 0x0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:613 +0xfd\ngithub.com/gocql/gocql.(*Conn).serve(0xc00034e7e0, 0xcc9e40, 0xc00018d800)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:530 +0x45\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:290 +0x155\n\ngoroutine 20 [select]:\ngithub.com/gocql/gocql.(*Conn).heartBeat(0xc00034e7e0, 0xcc9e40, 0xc00018d800)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:570 +0x145\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:291 +0x18b\n\ngoroutine 45 [select]:\ngithub.com/gocql/gocql.(*writeCoalescer).writeFlusher(0xc000181980, 0x30d40)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:834 +0x165\ncreated by github.com/gocql/gocql.newWriteCoalescer\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:739 +0x125\n\ngoroutine 46 [IO wait]:\ninternal/poll.runtime_pollWait(0x7f631288bcb8, 0x72, 0xcbe980)\n\t/usr/lib/golang/src/runtime/netpoll.go:222 +0x55\ninternal/poll.(*pollDesc).wait(0xc000212198, 0x72, 0xcbe900, 0x100c4b0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:87 +0x45\ninternal/poll.(*pollDesc).waitRead(...)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:92\ninternal/poll.(*FD).Read(0xc000212180, 0xc00011a000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_unix.go:159 +0x1a5\nnet.(*netFD).Read(0xc000212180, 0xc00011a000, 0x1000, 0x1000, 0xc00009bbd8, 0x405f5c, 0xc0001a2f00)\n\t/usr/lib/golang/src/net/fd_posix.go:55 +0x4f\nnet.(*conn).Read(0xc0000bc090, 0xc00011a000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/net.go:182 +0x8e\nbufio.(*Reader).Read(0xc0000beb40, 0xc0000d0828, 0x1, 0x9, 0x28, 0x0, 0xc3942ff340)\n\t/usr/lib/golang/src/bufio/bufio.go:227 +0x222\nio.ReadAtLeast(0xcbc920, 0xc0000beb40, 0xc0000d0828, 0x1, 0x9, 0x1, 0x1c8d529500000000, 0xc00009bd00, 0x40e658)\n\t/usr/lib/golang/src/io/io.go:314 +0x87\nio.ReadFull(...)\n\t/usr/lib/golang/src/io/io.go:333\ngithub.com/gocql/gocql.readHeader(0xcbc920, 0xc0000beb40, 0xc0000d0828, 0x9, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, ...)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/frame.go:449 +0x99\ngithub.com/gocql/gocql.(*Conn).recv(0xc0000d07e0, 0xcc9e40, 0xc0000c0740, 0x0, 0x0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:613 +0xfd\ngithub.com/gocql/gocql.(*Conn).serve(0xc0000d07e0, 0xcc9e40, 0xc0000c0740)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:530 +0x45\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:290 +0x155\n\ngoroutine 47 [select]:\ngithub.com/gocql/gocql.(*Conn).heartBeat(0xc0000d07e0, 0xcc9e40, 0xc0000c0740)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:570 +0x145\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:291 +0x18b\n\ngoroutine 65 [select]:\ngithub.com/gocql/gocql.(*controlConn).heartBeat(0xc00018d7c0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/control.go:70 +0x13e\ncreated by github.com/gocql/gocql.(*controlConn).connect\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/control.go:259 +0x1cd\n\ngoroutine 25 [select]:\ngithub.com/gocql/gocql.(*writeCoalescer).writeFlusher(0xc0000bf260, 0x30d40)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:834 +0x165\ncreated by github.com/gocql/gocql.newWriteCoalescer\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:739 +0x125\n\ngoroutine 26 [IO wait]:\ninternal/poll.runtime_pollWait(0x7f631288bbd0, 0x72, 0xcbe980)\n\t/usr/lib/golang/src/runtime/netpoll.go:222 +0x55\ninternal/poll.(*pollDesc).wait(0xc000118118, 0x72, 0xcbe900, 0x100c4b0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:87 +0x45\ninternal/poll.(*pollDesc).waitRead(...)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:92\ninternal/poll.(*FD).Read(0xc000118100, 0xc00036d000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_unix.go:159 +0x1a5\nnet.(*netFD).Read(0xc000118100, 0xc00036d000, 0x1000, 0x1000, 0xc00009fbd8, 0x405f5c, 0xc000082a80)\n\t/usr/lib/golang/src/net/fd_posix.go:55 +0x4f\nnet.(*conn).Read(0xc0001863c0, 0xc00036d000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/net.go:182 +0x8e\nbufio.(*Reader).Read(0xc000181bc0, 0xc00034eca8, 0x1, 0x9, 0x28, 0x0, 0xc3942fedc0)\n\t/usr/lib/golang/src/bufio/bufio.go:227 +0x222\nio.ReadAtLeast(0xcbc920, 0xc000181bc0, 0xc00034eca8, 0x1, 0x9, 0x1, 0x1d2b969a00000000, 0xc00009fd00, 0x40e658)\n\t/usr/lib/golang/src/io/io.go:314 +0x87\nio.ReadFull(...)\n\t/usr/lib/golang/src/io/io.go:333\ngithub.com/gocql/gocql.readHeader(0xcbc920, 0xc000181bc0, 0xc00034eca8, 0x9, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, ...)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/frame.go:449 +0x99\ngithub.com/gocql/gocql.(*Conn).recv(0xc00034ec60, 0xcc9e40, 0xc00018d9c0, 0x0, 0x0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:613 +0xfd\ngithub.com/gocql/gocql.(*Conn).serve(0xc00034ec60, 0xcc9e40, 0xc00018d9c0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:530 +0x45\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:290 +0x155\n\ngoroutine 15 [select]:\ngithub.com/gocql/gocql.(*Session).reconnectDownedHosts(0xc000358380, 0xdf8475800)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/session.go:306 +0x1f5\ncreated by github.com/gocql/gocql.(*Session).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/session.go:257 +0x6c7\n\ngoroutine 16 [select]:\ngithub.com/gocql/gocql.(*eventDebouncer).flusher(0xc0000646e0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/events.go:39 +0xb5\ncreated by github.com/gocql/gocql.newEventDebouncer\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/events.go:27 +0xe7\n\ngoroutine 81 [select, 37 minutes]:\ngithub.com/gocql/gocql.(*eventDebouncer).flusher(0xc000064780)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/events.go:39 +0xb5\ncreated by github.com/gocql/gocql.newEventDebouncer\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/events.go:27 +0xe7\n\ngoroutine 27 [select]:\ngithub.com/gocql/gocql.(*Conn).heartBeat(0xc00034ec60, 0xcc9e40, 0xc00018d9c0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:570 +0x145\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:291 +0x18b\n\ngoroutine 104 [IO wait]:\ninternal/poll.runtime_pollWait(0x7f631288b830, 0x72, 0xcbe980)\n\t/usr/lib/golang/src/runtime/netpoll.go:222 +0x55\ninternal/poll.(*pollDesc).wait(0xc000070b98, 0x72, 0xcbe900, 0x100c4b0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:87 +0x45\ninternal/poll.(*pollDesc).waitRead(...)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:92\ninternal/poll.(*FD).Read(0xc000070b80, 0xc000120000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_unix.go:159 +0x1a5\nnet.(*netFD).Read(0xc000070b80, 0xc000120000, 0x1000, 0x1000, 0xc000228bd8, 0x405f5c, 0xc0001a3680)\n\t/usr/lib/golang/src/net/fd_posix.go:55 +0x4f\nnet.(*conn).Read(0xc0000bc0b0, 0xc000120000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/net.go:182 +0x8e\nbufio.(*Reader).Read(0xc0000bf740, 0xc0000d0ca8, 0x1, 0x9, 0x28, 0x0, 0xc3942ff1e0)\n\t/usr/lib/golang/src/bufio/bufio.go:227 +0x222\nio.ReadAtLeast(0xcbc920, 0xc0000bf740, 0xc0000d0ca8, 0x1, 0x9, 0x1, 0xb70996e00000000, 0xc000228d00, 0x40e658)\n\t/usr/lib/golang/src/io/io.go:314 +0x87\nio.ReadFull(...)\n\t/usr/lib/golang/src/io/io.go:333\ngithub.com/gocql/gocql.readHeader(0xcbc920, 0xc0000bf740, 0xc0000d0ca8, 0x9, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, ...)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/frame.go:449 +0x99\ngithub.com/gocql/gocql.(*Conn).recv(0xc0000d0c60, 0xcc9e40, 0xc0000c0cc0, 0x0, 0x0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:613 +0xfd\ngithub.com/gocql/gocql.(*Conn).serve(0xc0000d0c60, 0xcc9e40, 0xc0000c0cc0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:530 +0x45\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:290 +0x155\n\ngoroutine 63 [runnable]:\ninternal/poll.runtime_pollWait(0x7f631288bae8, 0x77, 0xc00024a300)\n\t/usr/lib/golang/src/runtime/netpoll.go:222 +0x55\ninternal/poll.(*pollDesc).wait(0xc037cdcf98, 0x77, 0xcc9e00, 0xc02c3aac00, 0xc037cdcf80)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:87 +0x45\ninternal/poll.(*pollDesc).waitWrite(...)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:96\ninternal/poll.(*FD).WaitWrite(...)\n\t/usr/lib/golang/src/internal/poll/fd_unix.go:508\nnet.(*netFD).connect(0xc037cdcf80, 0xcc9ec0, 0xc02c3aac00, 0x0, 0x0, 0xcbda60, 0xc3a24194a0, 0x0, 0x0, 0x0, ...)\n\t/usr/lib/golang/src/net/fd_unix.go:141 +0x25c\nnet.(*netFD).dial(0xc037cdcf80, 0xcc9ec0, 0xc02c3aac00, 0xcccb40, 0x0, 0xcccb40, 0xc3a0b73530, 0x0, 0xcbd601, 0xc32ef15708)\n\t/usr/lib/golang/src/net/sock_posix.go:149 +0x108\nnet.socket(0xcc9ec0, 0xc02c3aac00, 0xbea934, 0x3, 0x2, 0x1, 0x0, 0x0, 0xcccb40, 0x0, ...)\n\t/usr/lib/golang/src/net/sock_posix.go:70 +0x1c5\nnet.internetSocket(0xcc9ec0, 0xc02c3aac00, 0xbea934, 0x3, 0xcccb40, 0x0, 0xcccb40, 0xc3a0b73530, 0x1, 0x0, ...)\n\t/usr/lib/golang/src/net/ipsock_posix.go:141 +0x145\nnet.(*sysDialer).doDialTCP(0xc037cdcf00, 0xcc9ec0, 0xc02c3aac00, 0x0, 0xc3a0b73530, 0xb40460, 0x1090af0, 0x0)\n\t/usr/lib/golang/src/net/tcpsock_posix.go:65 +0xc5\nnet.(*sysDialer).dialTCP(0xc037cdcf00, 0xcc9ec0, 0xc02c3aac00, 0x0, 0xc3a0b73530, 0x46ff07, 0x40573d, 0x60)\n\t/usr/lib/golang/src/net/tcpsock_posix.go:61 +0xd7\nnet.(*sysDialer).dialSingle(0xc037cdcf00, 0xcc9ec0, 0xc02c3aac00, 0xcc2c80, 0xc3a0b73530, 0x0, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/dial.go:580 +0x5e5\nnet.(*sysDialer).dialSerial(0xc037cdcf00, 0xcc9ec0, 0xc02c3aac00, 0xc1da705610, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/dial.go:548 +0x152\nnet.(*Dialer).DialContext(0xc02c3aaae0, 0xcc9e40, 0xc000072f40, 0xbea934, 0x3, 0xc159b31340, 0xf, 0x0, 0x0, 0x0, ...)\n\t/usr/lib/golang/src/net/dial.go:425 +0x6e5\ngithub.com/gocql/gocql.(*Session).dialWithoutObserver(0xc000294700, 0xcc9e40, 0xc000072f40, 0xc0002d2780, 0xc000070900, 0xcbce20, 0xc000072fc0, 0xa, 0x1092160, 0x7a8c00)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:216 +0x122\ngithub.com/gocql/gocql.(*Session).dial(0xc000294700, 0xcc9e40, 0xc000072f40, 0xc0002d2780, 0xc000070900, 0xcbce20, 0xc000072fc0, 0x0, 0xcbd620, 0xc3a1aabbd0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:180 +0xc5\ngithub.com/gocql/gocql.(*Session).connect(...)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:169\ngithub.com/gocql/gocql.(*controlConn).reconnect(0xc000072fc0, 0xcbd101)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/control.go:368 +0x2d8\ngithub.com/gocql/gocql.(*controlConn).heartBeat(0xc000072fc0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/control.go:95 +0x205\ncreated by github.com/gocql/gocql.(*controlConn).connect\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/control.go:259 +0x1cd\n\ngoroutine 105 [select]:\ngithub.com/gocql/gocql.(*Conn).heartBeat(0xc0000d0c60, 0xcc9e40, 0xc0000c0cc0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:570 +0x145\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:291 +0x18b\n\ngoroutine 119 [select]:\ngithub.com/gocql/gocql.(*Conn).heartBeat(0xc00034efc0, 0xcc9e40, 0xc00018dc00)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:570 +0x145\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:291 +0x18b\n\ngoroutine 117 [select]:\ngithub.com/gocql/gocql.(*writeCoalescer).writeFlusher(0xc0002053e0, 0x30d40)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:834 +0x165\ncreated by github.com/gocql/gocql.newWriteCoalescer\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:739 +0x125\n\ngoroutine 114 [select]:\ngithub.com/gocql/gocql.(*writeCoalescer).writeFlusher(0xc000205380, 0x30d40)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:834 +0x165\ncreated by github.com/gocql/gocql.newWriteCoalescer\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:739 +0x125\n\ngoroutine 115 [IO wait]:\ninternal/poll.runtime_pollWait(0x7f631288b660, 0x72, 0xcbe980)\n\t/usr/lib/golang/src/runtime/netpoll.go:222 +0x55\ninternal/poll.(*pollDesc).wait(0xc000118398, 0x72, 0xcbe900, 0x100c4b0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:87 +0x45\ninternal/poll.(*pollDesc).waitRead(...)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:92\ninternal/poll.(*FD).Read(0xc000118380, 0xc000256000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_unix.go:159 +0x1a5\nnet.(*netFD).Read(0xc000118380, 0xc000256000, 0x1000, 0x1000, 0xc000384bd8, 0x405f5c, 0xc00024a600)\n\t/usr/lib/golang/src/net/fd_posix.go:55 +0x4f\nnet.(*conn).Read(0xc00020c108, 0xc000256000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/net.go:182 +0x8e\nbufio.(*Reader).Read(0xc000205140, 0xc000250708, 0x1, 0x9, 0x28, 0x0, 0xc397eff4a0)\n\t/usr/lib/golang/src/bufio/bufio.go:227 +0x222\nio.ReadAtLeast(0xcbc920, 0xc000205140, 0xc000250708, 0x1, 0x9, 0x1, 0xc83e21d00000000, 0xc000384d00, 0x40e658)\n\t/usr/lib/golang/src/io/io.go:314 +0x87\nio.ReadFull(...)\n\t/usr/lib/golang/src/io/io.go:333\ngithub.com/gocql/gocql.readHeader(0xcbc920, 0xc000205140, 0xc000250708, 0x9, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, ...)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/frame.go:449 +0x99\ngithub.com/gocql/gocql.(*Conn).recv(0xc0002506c0, 0xcc9e40, 0xc00020a940, 0x0, 0x0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:613 +0xfd\ngithub.com/gocql/gocql.(*Conn).serve(0xc0002506c0, 0xcc9e40, 0xc00020a940)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:530 +0x45\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:290 +0x155\n\ngoroutine 118 [IO wait]:\ninternal/poll.runtime_pollWait(0x7f631288b748, 0x72, 0xcbe980)\n\t/usr/lib/golang/src/runtime/netpoll.go:222 +0x55\ninternal/poll.(*pollDesc).wait(0xc000118298, 0x72, 0xcbe900, 0x100c4b0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:87 +0x45\ninternal/poll.(*pollDesc).waitRead(...)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:92\ninternal/poll.(*FD).Read(0xc000118280, 0xc00036f000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_unix.go:159 +0x1a5\nnet.(*netFD).Read(0xc000118280, 0xc00036f000, 0x1000, 0x1000, 0xc000381bd8, 0x405f5c, 0xc000082d80)\n\t/usr/lib/golang/src/net/fd_posix.go:55 +0x4f\nnet.(*conn).Read(0xc0001863e8, 0xc00036f000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/net.go:182 +0x8e\nbufio.(*Reader).Read(0xc000370600, 0xc00034f008, 0x1, 0x9, 0x28, 0x0, 0xc39ce64b00)\n\t/usr/lib/golang/src/bufio/bufio.go:227 +0x222\nio.ReadAtLeast(0xcbc920, 0xc000370600, 0xc00034f008, 0x1, 0x9, 0x1, 0x39b8a4f200000000, 0xc000381d00, 0x40e658)\n\t/usr/lib/golang/src/io/io.go:314 +0x87\nio.ReadFull(...)\n\t/usr/lib/golang/src/io/io.go:333\ngithub.com/gocql/gocql.readHeader(0xcbc920, 0xc000370600, 0xc00034f008, 0x9, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, ...)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/frame.go:449 +0x99\ngithub.com/gocql/gocql.(*Conn).recv(0xc00034efc0, 0xcc9e40, 0xc00018dc00, 0x0, 0x0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:613 +0xfd\ngithub.com/gocql/gocql.(*Conn).serve(0xc00034efc0, 0xcc9e40, 0xc00018dc00)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:530 +0x45\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:290 +0x155\n\ngoroutine 116 [select]:\ngithub.com/gocql/gocql.(*Conn).heartBeat(0xc0002506c0, 0xcc9e40, 0xc00020a940)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:570 +0x145\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:291 +0x18b\n\ngoroutine 121 [select]:\ngithub.com/gocql/gocql.(*Session).reconnectDownedHosts(0xc000294700, 0xdf8475800)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/session.go:306 +0x1f5\ncreated by github.com/gocql/gocql.(*Session).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/session.go:257 +0x6c7\n\ngoroutine 146 [syscall, 37 minutes]:\nos/signal.signal_recv(0x0)\n\t/usr/lib/golang/src/runtime/sigqueue.go:147 +0x9d\nos/signal.loop()\n\t/usr/lib/golang/src/os/signal/signal_unix.go:23 +0x25\ncreated by os/signal.Notify.func1.1\n\t/usr/lib/golang/src/os/signal/signal.go:150 +0x45\n\ngoroutine 75 [select]:\ngithub.com/gocql/gocql.(*writeCoalescer).writeFlusher(0xc000370ea0, 0x30d40)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:834 +0x165\ncreated by github.com/gocql/gocql.newWriteCoalescer\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:739 +0x125\n\ngoroutine 76 [IO wait]:\ninternal/poll.runtime_pollWait(0x7f631288b578, 0x72, 0xcbe980)\n\t/usr/lib/golang/src/runtime/netpoll.go:222 +0x55\ninternal/poll.(*pollDesc).wait(0xc000118498, 0x72, 0xcbe900, 0x100c4b0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:87 +0x45\ninternal/poll.(*pollDesc).waitRead(...)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:92\ninternal/poll.(*FD).Read(0xc000118480, 0xc00037d000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_unix.go:159 +0x1a5\nnet.(*netFD).Read(0xc000118480, 0xc00037d000, 0x1000, 0x1000, 0xc000382bd8, 0x405f5c, 0xc0001a3c80)\n\t/usr/lib/golang/src/net/fd_posix.go:55 +0x4f\nnet.(*conn).Read(0xc0001863f0, 0xc00037d000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/net.go:182 +0x8e\nbufio.(*Reader).Read(0xc000370c00, 0xc00034f128, 0x1, 0x9, 0x28, 0x0, 0xc39ce649a0)\n\t/usr/lib/golang/src/bufio/bufio.go:227 +0x222\nio.ReadAtLeast(0xcbc920, 0xc000370c00, 0xc00034f128, 0x1, 0x9, 0x1, 0x1a0b993700000000, 0xc000382d00, 0x40e658)\n\t/usr/lib/golang/src/io/io.go:314 +0x87\nio.ReadFull(...)\n\t/usr/lib/golang/src/io/io.go:333\ngithub.com/gocql/gocql.readHeader(0xcbc920, 0xc000370c00, 0xc00034f128, 0x9, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, ...)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/frame.go:449 +0x99\ngithub.com/gocql/gocql.(*Conn).recv(0xc00034f0e0, 0xcc9e40, 0xc00018dc40, 0x0, 0x0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:613 +0xfd\ngithub.com/gocql/gocql.(*Conn).serve(0xc00034f0e0, 0xcc9e40, 0xc00018dc40)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:530 +0x45\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:290 +0x155\n\ngoroutine 77 [select]:\ngithub.com/gocql/gocql.(*Conn).heartBeat(0xc00034f0e0, 0xcc9e40, 0xc00018dc40)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:570 +0x145\ncreated by github.com/gocql/gocql.(*Conn).init\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/conn.go:291 +0x18b\n\ngoroutine 802 [runnable]:\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558eb0, 0x0, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc079c32750, 0xc3a127d9a0, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x138\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc06520c000, 0xb4c, 0xc00, 0xc019f22a00, 0xc01ea90260, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc014d6fd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc620, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x784c32, 0xc0000bf6e0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d2c0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 784 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5de7c70, 0xc0f120c800, 0x2604, 0x2800, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5de7c70, 0xb04d60, 0xc0f0fd6d20, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5de7c70, 0xc0855b3328, 0x6, 0xc0855b3358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0855b3328, 0x6, 0xc0855b3358, 0x1, 0x1, 0xc0855b3328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a30fc410, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0f0f5af00, 0xc3a30fc410, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc082902800, 0x884, 0x900, 0xc01e9541e0, 0xc01abb0370, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc0855b3d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc5e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0xc0000c1b00, 0xcbd601)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d180)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 147 [select, 37 minutes]:\nmain.run.func2(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/root.go:259 +0xe5\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc00037e1e0, 0xc000072000)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 124 [runnable]:\nmath/big.nat.bytes(0xc159bacfc8, 0x1, 0x1, 0xc159bad070, 0x8, 0x8, 0x0)\n\t/usr/lib/golang/src/math/big/nat.go:1482 +0xe5\nmath/big.(*Int).Bytes(...)\n\t/usr/lib/golang/src/math/big/int.go:454\ngithub.com/gocql/gocql.encBigInt2C(0xc000380a88, 0xb6ee60, 0xc15a324700, 0x0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/marshal.go:1122 +0x308\ngithub.com/gocql/gocql.marshalBigInt(0xcca300, 0xc00000c9e0, 0xb6ee60, 0xc15a324700, 0xc000380b28, 0x40bd25, 0xb49be0, 0xb6ee60, 0x469b01)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/marshal.go:575 +0x9b0\ngithub.com/gocql/gocql.marshalVarint(0xcca300, 0xc00000c9e0, 0xb6ee60, 0xc15a324700, 0x0, 0xc15a324700, 0xb6ee60, 0xc15a324700, 0xc000380bc8)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/marshal.go:678 +0x96\ngithub.com/gocql/gocql.Marshal(0xcca300, 0xc00000c9e0, 0xb6ee60, 0xc15a324700, 0xb6ee60, 0xc15a324700, 0xc000294178, 0x0, 0x0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/marshal.go:96 +0xb0e\ngithub.com/gocql/gocql.Marshal(0xcca300, 0xc00000c9e0, 0xbe2ee0, 0xc15a3246c0, 0x1, 0x0, 0x0, 0x0, 0x0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/marshal.go:58 +0x226\ngithub.com/scylladb/gemini.(*RoutingKeyCreator).CreateRoutingKey(0xc000380e38, 0xc00032a240, 0xc004dbe180, 0x3, 0x4, 0x0, 0x0, 0xc004dbe180, 0xc1db4fad10, 0xc0001a0f40)\n\t/home/penberg/go/src/github.com/scylladb/gemini/routing_key.go:49 +0x1d6\ngithub.com/scylladb/gemini.hash(0xc000380e38, 0xc00032a240, 0xc004dbe180, 0x3, 0x4, 0x297cb41926c91b66)\n\t/home/penberg/go/src/github.com/scylladb/gemini/generator.go:165 +0x5a\ngithub.com/scylladb/gemini.(*Generator).start.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/generator.go:138 +0x197\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc000216330, 0xc000188020)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 125 [select, 7 minutes]:\nmain.(*Pump).Start(0xc000188000, 0xcc9e40, 0xc00020a1c0, 0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/pump.go:43 +0x132\nmain.run.func3(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/root.go:276 +0x67\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc00037e1e0, 0xc000216360)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 126 [select, 7 minutes]:\nmain.sampleStatus(0xcc9e40, 0xc00020a1c0, 0xc000370000, 0xc000232048, 0xc002ca8000, 0x1, 0x1, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/status.go:93 +0x17c\nmain.run.func4(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/root.go:281 +0xa5\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc00037e1e0, 0xc000072040)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 718 [runnable]:\nstrings.(*Builder).grow(...)\n\t/usr/lib/golang/src/strings/builder.go:68\nstrings.(*Builder).Grow(...)\n\t/usr/lib/golang/src/strings/builder.go:82\nstrings.Join(0xc3a1aaa140, 0x5, 0x5, 0xbea63a, 0x3, 0x2, 0xc130ad8180)\n\t/usr/lib/golang/src/strings/strings.go:434 +0x4e7\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc07cdc9000, 0x884, 0x900, 0xc02522d5e0, 0xc01fc60d40, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:33 +0x18b\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc01d971d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc3a0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3836373464363836, 0x3935333366343037)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028c460)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 759 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5de76c0, 0xc0c936a000, 0x3a06, 0x4000, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5de76c0, 0xb04d60, 0xc101eef580, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5de76c0, 0xc005887328, 0x6, 0xc005887358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc005887328, 0x6, 0xc005887358, 0x1, 0x1, 0xc005887328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a25584b0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0c9321b30, 0xc3a25584b0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0417c1800, 0x884, 0x900, 0xc01db72b40, 0xc0151fc4f0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc005887d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67540, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3133353738363033, 0x6534353731363834)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf0e0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 776 [runnable]:\nfmt.(*pp).free(0xc1d5840750)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc2fb4b3328, 0x6, 0xc2fb4b3358, 0x1, 0x1, 0xc2fb4b3328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc39f249c20, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc1400e10e0, 0xc39f249c20, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc13459f800, 0x884, 0x900, 0xc02522d720, 0xc01fc611b0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc2fb4b3d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc4e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x784c32, 0xc0000bf6e0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028cc80)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 704 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5360340, 0xc07b8fb800, 0x41bc, 0x4800, 0xc000000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5360340, 0xb04d60, 0xc03266be40, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5360340, 0xc0b4a0b328, 0x6, 0xc0b4a0b358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0b4a0b328, 0x6, 0xc0b4a0b358, 0x1, 0x1, 0xc0b4a0b328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2dfe0a0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0968b39b0, 0xc3a2dfe0a0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0f7ade000, 0x884, 0x900, 0xc0271c9a40, 0xc0165cbc10, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc0b4a0bd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad673e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc01bb2b020)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000ceaa0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 781 [runnable]:\nfmt.(*pp).free(0xc1d616cc30)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc0b4a11328, 0x6, 0xc0b4a11358, 0x1, 0x1, 0xc0b4a11328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558190, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0d6325bc0, 0xc3a2558190, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc20ea54000, 0xc25, 0x1000, 0xc01e439220, 0xc02ce6d0f0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc0b4a11d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc580, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x56614d6935765169, 0x53755855674f6c6f)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028cfa0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 769 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d57f2a90, 0xc0fee4c800, 0x36bc, 0x3800, 0xc300000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d57f2a90, 0xb04d60, 0xc0fee90840, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d57f2a90, 0xc0b4a0f328, 0x6, 0xc0b4a0f358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0b4a0f328, 0x6, 0xc0b4a0f358, 0x1, 0x1, 0xc0b4a0f328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aab680, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0fee88330, 0xc3a1aab680, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc081324800, 0x884, 0x900, 0xc01e955cc0, 0xc0137faa70, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc0b4a0fd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc400, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc014c1a720)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028c820)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 783 [runnable]:\nfmt.(*pp).free(0xc1d58ec4e0)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc02dad7328, 0x6, 0xc02dad7358, 0x1, 0x1, 0xc02dad7328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127db30, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0a2da7440, 0xc3a127db30, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1e89b6000, 0xc89, 0x1000, 0xc01e6c4b40, 0xc05753af60, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc02dad7d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc5c0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d0e0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 715 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d527e1a0, 0xc0c71a2000, 0x3fcc, 0x4000, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d527e1a0, 0xb04d60, 0xc0c7186840, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d527e1a0, 0xc0b4a0d328, 0x6, 0xc0b4a0d358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0b4a0d328, 0x6, 0xc0b4a0d358, 0x1, 0x1, 0xc0b4a0d328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aab9f0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0c705fec0, 0xc3a1aab9f0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc188d28000, 0xcf5, 0x1000, 0xc03707bc20, 0xc00ac31480, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc0b4a0dd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc300, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc014c1a720)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028c0a0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 717 [runnable]:\nfmt.(*pp).printArg(0xc1d589c1a0, 0xb0d7e0, 0xc13f9df008, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:677 +0x70f\nfmt.(*pp).doPrintf(0xc1d589c1a0, 0xc008e03328, 0x6, 0xc008e03358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc008e03328, 0x6, 0xc008e03358, 0x1, 0x1, 0xc008e03328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a25593b0, 0x1, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc13f9dccf0, 0xc3a127d9f0, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0b780d800, 0x823, 0x900, 0xc01e955360, 0xc02ca30b90, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc008e03d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc380, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc050d6b800)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028c320)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 780 [runnable]:\nfmt.(*fmt).fmtInteger(0xc1d62bfb10, 0x34, 0xa, 0x7600000d00, 0xbf4897, 0x11)\n\t/usr/lib/golang/src/fmt/format.go:194 +0x5ba\nfmt.(*pp).fmtBytes(0xc1d62bfad0, 0xc1065c8000, 0x3e0a, 0x4000, 0xc000000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:485 +0x477\nfmt.(*pp).printArg(0xc1d62bfad0, 0xb04d60, 0xc1065c07e0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d62bfad0, 0xc03ffa5328, 0x6, 0xc03ffa5358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc03ffa5328, 0x6, 0xc03ffa5358, 0x1, 0x1, 0xc03ffa5328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558b40, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc1065c2060, 0xc3a2558b40, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc080d9e000, 0xb4c, 0xc00, 0xc01ea7aaa0, 0xc0520bc890, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc03ffa5d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc560, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028cf00)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 701 [semacquire, 7 minutes]:\nsync.runtime_Semacquire(0xc05542b810)\n\t/usr/lib/golang/src/runtime/sema.go:56 +0x45\nsync.(*WaitGroup).Wait(0xc05542b808)\n\t/usr/lib/golang/src/sync/waitgroup.go:130 +0x65\ngolang.org/x/sync/errgroup.(*Group).Wait(0xc05542b800, 0xc01ac30280, 0xcc9e40)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:40 +0x31\nmain.job(0xcc9e40, 0xc00020a1c0, 0xc1d728, 0x32, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:159 +0x506\nmain.run.func6(0x0, 0xc035576240)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/root.go:303 +0x118\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc00037e1e0, 0xc0187d1110)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 757 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc24b546000, 0xcf5, 0x1000, 0xc019f22fa0, 0xc0250e6390, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc00a495d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67500, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc008cc6900)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cef00)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 753 [runnable]:\nfmt.(*fmt).fmtInteger(0xc1d6329d80, 0x34, 0xa, 0x7600000a00, 0xbf4897, 0x11)\n\t/usr/lib/golang/src/fmt/format.go:194 +0x5ba\nfmt.(*pp).fmtBytes(0xc1d6329d40, 0xc104e5a000, 0x427c, 0x4800, 0xc000000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:485 +0x477\nfmt.(*pp).printArg(0xc1d6329d40, 0xb04d60, 0xc0bc960d20, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d6329d40, 0xc087787328, 0x6, 0xc087787358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc087787328, 0x6, 0xc087787358, 0x1, 0x1, 0xc087787328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a30fc370, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0c64895c0, 0xc3a30fc370, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0c00a3800, 0x7b5, 0x900, 0xc01ea7a000, 0xc0137fac20, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc087787d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67420, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc052ef7680)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cebe0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 755 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d6036340, 0xc0987faa00, 0x32a2, 0x3500, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d6036340, 0xb04d60, 0xc034ef69c0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d6036340, 0xc014e89328, 0x6, 0xc014e89358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc014e89328, 0x6, 0xc014e89358, 0x1, 0x1, 0xc014e89328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2dfe140, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0987ef440, 0xc3a2dfe140, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0c3a1a000, 0xef1, 0x1000, 0xc030074aa0, 0xc01f846bf0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc014e89d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad674a0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc008cc6900)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cedc0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 702 [semacquire, 7 minutes]:\nsync.runtime_Semacquire(0xc0534057b0)\n\t/usr/lib/golang/src/runtime/sema.go:56 +0x45\nsync.(*WaitGroup).Wait(0xc0534057a8)\n\t/usr/lib/golang/src/sync/waitgroup.go:130 +0x65\ngolang.org/x/sync/errgroup.(*Group).Wait(0xc0534057a0, 0xc01abc8640, 0xcc9e40)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:40 +0x31\nmain.job(0xcc9e40, 0xc00020a1c0, 0xc1d728, 0x32, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:159 +0x506\nmain.run.func6(0x0, 0xc04b40cfc0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/root.go:303 +0x118\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc00037e1e0, 0xc0187d1180)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 782 [runnable]:\nfmt.(*pp).free(0xc1d5841450)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc0378e7328, 0x6, 0xc0378e7358, 0x1, 0x1, 0xc0378e7328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aaae10, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc11345bb90, 0xc3a1aaae10, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc11542a000, 0xbb0, 0xc00, 0xc01e955220, 0xc02ca30a50, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc0378e7d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc5a0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x336f557a3964336d, 0x794f4d4b6432516f)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d040)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 770 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5d48000, 0xc0beb0a000, 0x2a30, 0x2a80, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5d48000, 0xb04d60, 0xc0496b0360, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5d48000, 0xc000103328, 0x6, 0xc000103358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc000103328, 0x6, 0xc000103358, 0x1, 0x1, 0xc000103328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aabb80, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0615f0630, 0xc3a1aabb80, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1bd51a000, 0xc25, 0x1000, 0xc019f22320, 0xc01ebba190, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc000103d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc420, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc007c94240)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028c8c0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 756 [runnable]:\nfmt.(*pp).free(0xc1d6328c30)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc013325328, 0x6, 0xc013325358, 0x1, 0x1, 0xc013325328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aaba90, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc11b1f3560, 0xc3a1aaba90, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1ed64a000, 0xd52, 0x1000, 0xc019c42280, 0xc0515e8d20, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc013325d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad674e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc0151a13e0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cee60)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 771 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5de7a00, 0xc09b444800, 0x37ca, 0x3800, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5de7a00, 0xb04d60, 0xc01b93b1e0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5de7a00, 0xc004853328, 0x6, 0xc004853358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc004853328, 0x6, 0xc004853358, 0x1, 0x1, 0xc004853328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127de50, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc09b42cd80, 0xc3a127de50, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1f96b8000, 0xcf5, 0x1000, 0xc019c421e0, 0xc0515e8c80, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc004853d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc440, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0xc000216398, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028c960)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 775 [runnable]:\nfmt.(*pp).free(0xc1d5bea680)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc022e95328, 0x6, 0xc022e95358, 0x1, 0x1, 0xc022e95328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558910, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc13c219e30, 0xc3a2558910, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc164091800, 0x8f0, 0x900, 0xc027b14aa0, 0xc05ab34620, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc022e95d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc4c0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028cbe0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 754 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d56d00d0, 0xc0b6508000, 0x3fee, 0x4000, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d56d00d0, 0xb04d60, 0xc0b65005e0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d56d00d0, 0xc0276cf328, 0x6, 0xc0276cf358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0276cf328, 0x6, 0xc0276cf358, 0x1, 0x1, 0xc0276cf328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127db80, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0b642f7a0, 0xc3a127db80, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0a2116000, 0xbb0, 0xc00, 0xc01e9552c0, 0xc02ca30af0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc0276cfd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67440, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc007c94240)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000ced20)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 777 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d51b20d0, 0xc0ed942a00, 0x3308, 0x3500, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d51b20d0, 0xb04d60, 0xc0ed92adc0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d51b20d0, 0xc0005b3328, 0x6, 0xc0005b3358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0005b3328, 0x6, 0xc0005b3358, 0x1, 0x1, 0xc0005b3328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127df40, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0ed906a50, 0xc3a127df40, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc16ba4a000, 0x8f0, 0x900, 0xc01e438fa0, 0xc04c292320, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc0005b3d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc500, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x1090af0, 0x30)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028cd20)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 703 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc2b6644000, 0x11d0, 0x1400, 0xc01e955c20, 0xc0137fa9d0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc032487d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad673c0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc04b40cfc0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000ce460)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 779 [runnable]:\nfmt.(*pp).printArg(0xc1d5a5b040, 0xb0d7e0, 0xc05e02e018, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:677 +0x70f\nfmt.(*pp).doPrintf(0xc1d5a5b040, 0xc014d6b328, 0x6, 0xc014d6b358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc014d6b328, 0x6, 0xc014d6b358, 0x1, 0x1, 0xc014d6b328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a30fc460, 0x1, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc09adba6c0, 0xc3a1aabb30, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc23aa3c000, 0xcf5, 0x1000, 0xc01e6c48c0, 0xc02d4e8ab0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc014d6bd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc540, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3d4d747356765642, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028ce60)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 772 [runnable]:\nfmt.(*pp).printArg(0xc1d60371e0, 0xb0d7e0, 0xc16ac1f1d0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:677 +0x70f\nfmt.(*pp).doPrintf(0xc1d60371e0, 0xc0276d3328, 0x6, 0xc0276d3358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0276d3328, 0x6, 0xc0276d3358, 0x1, 0x1, 0xc0276d3328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2dfe410, 0x1, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc16aaddd70, 0xc3a25587d0, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0b7800000, 0x823, 0x900, 0xc019f239a0, 0xc0250e77b0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc0276d3d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc460, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x7a425a7037436b4f)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028ca00)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 760 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d6036410, 0xc02833a000, 0x382c, 0x4000, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d6036410, 0xb04d60, 0xc04434d440, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d6036410, 0xc00a2ef328, 0x6, 0xc00a2ef358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc00a2ef328, 0x6, 0xc00a2ef358, 0x1, 0x1, 0xc00a2ef328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558aa0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0281b33e0, 0xc3a2558aa0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc314fd8000, 0x14fd, 0x1c00, 0xc019f220a0, 0xc01c8af760, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc00a2efd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67560, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3335383433373337, 0x3333383461343936)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf180)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 720 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc064fc4000, 0xbb0, 0xc00, 0xc01db72500, 0xc01a2f5920, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc01ae0dd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc3e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc028a420c0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028c6e0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 714 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5f924e0, 0xc1289d8000, 0x10d0, 0x1300, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5f924e0, 0xb04d60, 0xc1289d6920, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5f924e0, 0xc004d03328, 0x6, 0xc004d03358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc004d03328, 0x6, 0xc004d03358, 0x1, 0x1, 0xc004d03328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558c80, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc128993440, 0xc3a2558c80, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc07a0e8000, 0xb4c, 0xc00, 0xc02522d2c0, 0xc037c7de80, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc004d03d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc280, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc035576240)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028c000)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 716 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d62620d0, 0xc049385500, 0x1474, 0x1500, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d62620d0, 0xb04d60, 0xc01cb13ee0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d62620d0, 0xc0188f5328, 0x6, 0xc0188f5358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0188f5328, 0x6, 0xc0188f5358, 0x1, 0x1, 0xc0188f5328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aabf90, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc049376240, 0xc3a1aabf90, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc3615cc000, 0x1434, 0x1c00, 0xc01a8f4280, 0xc0097f90a0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc0188f5d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc340, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3335383433373337, 0x3333383461343936)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028c1e0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 774 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5a5a5b0, 0xc06ed75500, 0x3308, 0x3500, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5a5a5b0, 0xb04d60, 0xc04d847d60, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5a5a5b0, 0xc00badb328, 0x6, 0xc00badb358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc00badb328, 0x6, 0xc00badb358, 0x1, 0x1, 0xc00badb328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127def0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc079238660, 0xc3a127def0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1fc100000, 0xc89, 0x1000, 0xc0271c95e0, 0xc0165cb580, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc00badbd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc4a0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x71416e453461556a, 0x4249642b51534254)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028cb40)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 758 [runnable]:\nfmt.(*fmt).fmtInteger(0xc1d6328ad0, 0x37, 0xa, 0x7600002000, 0xbf4897, 0x11)\n\t/usr/lib/golang/src/fmt/format.go:194 +0x5ba\nfmt.(*pp).fmtBytes(0xc1d6328a90, 0xc05323c000, 0x3c28, 0x4000, 0xc000000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:485 +0x477\nfmt.(*pp).printArg(0xc1d6328a90, 0xb04d60, 0xc02eb49800, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d6328a90, 0xc009733328, 0x6, 0xc009733358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc009733328, 0x6, 0xc009733358, 0x1, 0x1, 0xc009733328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aaacd0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc025235c80, 0xc3a1aaacd0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc23e55e000, 0x116f, 0x1400, 0xc02522d7c0, 0xc02817c7e0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc009733d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67520, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0xc000216398, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf040)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 778 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d578d1e0, 0xc16d9b5800, 0x3530, 0x3800, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d578d1e0, 0xb04d60, 0xc16d9ae300, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d578d1e0, 0xc028fa5328, 0x6, 0xc028fa5358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc028fa5328, 0x6, 0xc028fa5358, 0x1, 0x1, 0xc028fa5328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558280, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc16d97ad80, 0xc3a2558280, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc16ba4e800, 0x8f0, 0x900, 0xc02522c460, 0xc027ad58a0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc028fa5d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc520, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x23447468, 0x3b24e924043)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028cdc0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 773 [runnable]:\nfmt.(*fmt).fmtInteger(0xc1d62bf150, 0x65, 0xa, 0x7600003500, 0xbf4897, 0x11)\n\t/usr/lib/golang/src/fmt/format.go:194 +0x5ba\nfmt.(*pp).fmtBytes(0xc1d62bf110, 0xc0422ce000, 0x1b42, 0x2000, 0xc100000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:485 +0x477\nfmt.(*pp).printArg(0xc1d62bf110, 0xb04d60, 0xc030eedd60, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d62bf110, 0xc01b611328, 0x6, 0xc01b611358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc01b611328, 0x6, 0xc01b611358, 0x1, 0x1, 0xc01b611328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558050, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc041afa4e0, 0xc3a2558050, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc20e694000, 0xc25, 0x1000, 0xc027b14f00, 0xc05ab34b80, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc01b611d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc480, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x6a315951477a5866, 0x583765575a494577)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028caa0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 719 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5f92ea0, 0xc09f430800, 0x375c, 0x3800, 0xc300000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5f92ea0, 0xb04d60, 0xc037e62a20, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5f92ea0, 0xc01c959328, 0x6, 0xc01c959358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc01c959328, 0x6, 0xc01c959358, 0x1, 0x1, 0xc01c959328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2559040, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc09f0beff0, 0xc3a2559040, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0f7ae7000, 0x884, 0x900, 0xc019f23860, 0xc0250e7380, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc01c959d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc3c0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc028a420c0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028c5a0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 805 [runnable]:\nfmt.(*pp).free(0xc1d5f928f0)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc017df3328, 0x6, 0xc017df3358, 0x1, 0x1, 0xc017df3328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2dfe2d0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0e5cf8fc0, 0xc3a2dfe2d0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc187200000, 0xf5c, 0x1000, 0xc02678a280, 0xc024176b60, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc017df3d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc680, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x1090af0, 0x30)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d4a0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 764 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d62624e0, 0xc0be940000, 0x3a86, 0x4000, 0xc000000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d62624e0, 0xb04d60, 0xc0be93a180, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d62624e0, 0xc017def328, 0x6, 0xc017def358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc017def328, 0x6, 0xc017def358, 0x1, 0x1, 0xc017def328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2559360, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0be92e390, 0xc3a2559360, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc141ab2000, 0xd52, 0x1000, 0xc01ea7b220, 0xc049afb180, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc017defd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad675e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x6634353634373635, 0x6234383639333235)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf400)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 763 [runnable]:\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a30fc3c0, 0x0, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc07b266030, 0xc3a1aabae0, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x138\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc20e880000, 0xcf5, 0x1000, 0xc019f226e0, 0xc01aa0b9e0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc01c16dd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad675c0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x2d8c5161, 0xc00d95d138)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf360)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 806 [runnable]:\nfmt.(*pp).catchPanic(0xc1d5ff6270, 0xbe2ee0, 0xc027255fa0, 0xc000000076, 0xbec3fa, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:540 +0x5f9\nfmt.(*pp).handleMethods(0xc1d5ff6270, 0xc000000076, 0x3f01)\n\t/usr/lib/golang/src/fmt/print.go:598 +0x586\nfmt.(*pp).printArg(0xc1d5ff6270, 0xbe2ee0, 0xc027255fa0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:713 +0x216\nfmt.(*pp).doPrintf(0xc1d5ff6270, 0xc0060b3328, 0x6, 0xc0060b3358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0060b3328, 0x6, 0xc0060b3358, 0x1, 0x1, 0xc0060b3328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a30fc320, 0x0, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc04f7d4750, 0xc3a30fc2d0, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc21abb6000, 0x123b, 0x1400, 0xc01a8f4c80, 0xc028d71c10, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc0060b3d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc6a0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc007c94240)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d540)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 766 [runnable]:\nfmt.(*pp).free(0xc1d578cb60)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc00cadb328, 0x6, 0xc00cadb358, 0x1, 0x1, 0xc00cadb328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a0ced7c0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0c7cbe2a0, 0xc3a0ced7c0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1eeed8000, 0xdb9, 0x1000, 0xc0001ded20, 0xc0460d4ac0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc00cadbd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67640, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3135373364363833, 0x6434313365363335)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf540)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 761 [runnable]:\nfmt.(*pp).free(0xc1d62be270)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc01bf81328, 0x6, 0xc01bf81358, 0x1, 0x1, 0xc01bf81328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558500, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc074e4b830, 0xc3a2558500, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc07cdcd800, 0x884, 0x900, 0xc01e955d60, 0xc0137fab10, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc01bf81d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67580, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0xc034e5f980, 0xc0355762f8)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf220)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 808 [runnable]:\nfmt.Sprintf(0xc2fb01b328, 0x6, 0xc2fb01b358, 0x1, 0x1, 0xc2fb01b328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:220 +0x89\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a0ced1d0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc14d0e9770, 0xc3a0ced1d0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0d1609000, 0x823, 0x900, 0xc01e955680, 0xc02ca31260, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc2fb01bd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc6e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x21bf4dcf, 0x3b24d0d19a4)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d680)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 765 [runnable]:\nfmt.(*fmt).fmtInteger(0xc1d62bf3c0, 0x30, 0xa, 0x760000a000, 0xbf4897, 0x11)\n\t/usr/lib/golang/src/fmt/format.go:194 +0x5ba\nfmt.(*pp).fmtBytes(0xc1d62bf380, 0xc0d8300000, 0x4522, 0x4800, 0xc200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:485 +0x477\nfmt.(*pp).printArg(0xc1d62bf380, 0xb04d60, 0xc0d82f1940, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d62bf380, 0xc2fb01d328, 0x6, 0xc2fb01d358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc2fb01d328, 0x6, 0xc2fb01d358, 0x1, 0x1, 0xc2fb01d328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a0ced810, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0d82bd200, 0xc3a0ced810, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc062c96000, 0xbb0, 0xc00, 0xc000349e00, 0xc015664dc0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc2fb01dd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67620, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc01bb2b020)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf4a0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 804 [runnable]:\nfmt.(*pp).free(0xc1d5de7ee0)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc01de69328, 0x6, 0xc01de69358, 0x1, 0x1, 0xc01de69328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a30fc140, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc1244d2ae0, 0xc3a30fc140, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0788d0000, 0xbb0, 0xc00, 0xc019c42140, 0xc0515e8be0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc01de69d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc660, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d400)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 803 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d589cea0, 0xc151300000, 0x36bc, 0x3800, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d589cea0, 0xb04d60, 0xc1512f0a20, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d589cea0, 0xc2fb017328, 0x6, 0xc2fb017358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc2fb017328, 0x6, 0xc2fb017358, 0x1, 0x1, 0xc2fb017328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127d810, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc1512da480, 0xc3a127d810, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0ecdfc000, 0x7b5, 0x900, 0xc019f23a40, 0xc0250e7840, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc2fb017d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc640, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0xc0000c1b00, 0xcbd601)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d360)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 762 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d62be4e0, 0xc0e7b50000, 0x1d16, 0x2000, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d62be4e0, 0xb04d60, 0xc0e6957ba0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d62be4e0, 0xc014e55328, 0x6, 0xc014e55358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc014e55328, 0x6, 0xc014e55358, 0x1, 0x1, 0xc014e55328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127dea0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0e68d5dd0, 0xc3a127dea0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1b7966000, 0x957, 0xc00, 0xc0000cf900, 0xc04ec7fb00, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc014e55d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad675a0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0xc008cc6900)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf2c0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 767 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d611c1a0, 0xc05e262000, 0x1d16, 0x2000, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d611c1a0, 0xb04d60, 0xc044096a20, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d611c1a0, 0xc0371c3328, 0x6, 0xc0371c3358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0371c3328, 0x6, 0xc0371c3358, 0x1, 0x1, 0xc0371c3328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2dfe190, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc05e151680, 0xc3a2dfe190, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc2a1606000, 0x123b, 0x1400, 0xc01e6c5f40, 0xc05307e4b0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc0371c3d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67680, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x2d8f5f7e, 0xc008a121d8)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf5e0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 807 [runnable]:\nmath/big.(*Int).Format(0xc044aec1a0, 0xcca000, 0xc1d62be340, 0x7f6200000076)\n\t/usr/lib/golang/src/math/big/intconv.go:119 +0x79\nfmt.(*pp).handleMethods(0xc1d62be340, 0x76, 0x2a0c00000901)\n\t/usr/lib/golang/src/fmt/print.go:597 +0x585\nfmt.(*pp).printArg(0xc1d62be340, 0xbe2ee0, 0xc044aec1a0, 0xc100000076)\n\t/usr/lib/golang/src/fmt/print.go:713 +0x216\nfmt.(*pp).doPrintf(0xc1d62be340, 0xc2fb019328, 0x6, 0xc2fb019358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc2fb019328, 0x6, 0xc2fb019358, 0x1, 0x1, 0xc2fb019328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aabea0, 0x0, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc07e664270, 0xc3a1aab130, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc219418000, 0xc89, 0x1000, 0xc02522d540, 0xc01fc608c0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc2fb019d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc6c0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d5e0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 801 [runnable]:\nmath/big.nat.bitLen(...)\n\t/usr/lib/golang/src/math/big/nat.go:968\nmath/big.nat.itoa(0xc0ccfb6048, 0x1, 0x1, 0x4354552000, 0xa, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/math/big/natconv.go:276 +0x63\nmath/big.nat.utoa(...)\n\t/usr/lib/golang/src/math/big/natconv.go:260\nmath/big.(*Int).Format(0xc0ccfa5240, 0xcca000, 0xc1d57f2b60, 0x7f6200000076)\n\t/usr/lib/golang/src/math/big/intconv.go:119 +0x13e\nfmt.(*pp).handleMethods(0xc1d57f2b60, 0xc000000076, 0x2f01)\n\t/usr/lib/golang/src/fmt/print.go:597 +0x585\nfmt.(*pp).printArg(0xc1d57f2b60, 0xbe2ee0, 0xc0ccfa5240, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:713 +0x216\nfmt.(*pp).doPrintf(0xc1d57f2b60, 0xc2fb023328, 0x6, 0xc2fb023358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc2fb023328, 0x6, 0xc2fb023358, 0x1, 0x1, 0xc2fb023328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2dfe320, 0x0, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc0ccf967b0, 0xc3a127dbd0, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1ed71a000, 0xc89, 0x1000, 0xc01ddc5ae0, 0xc03e22fca0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc2fb023d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc600, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d220)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 768 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc094e10000, 0xaef, 0xc00, 0xc01db72e60, 0xc043134bd0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc01c955d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad676c0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3336303534373835, 0x3733333537373834)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf680)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 785 [runnable]:\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2dfe3c0, 0x0, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc0d6452060, 0xc3a2dfe370, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x138\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc252e00000, 0xc89, 0x1000, 0xc01ddc4be0, 0xc02eb1ef10, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc026e21d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67760, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x6536663432353234, 0x3634383633363335)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf720)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 786 [runnable]:\nfmt.(*fmt).fmtInteger(0xc1d6328110, 0x37, 0xa, 0x7600001800, 0xbf4897, 0x11)\n\t/usr/lib/golang/src/fmt/format.go:194 +0x5ba\nfmt.(*pp).fmtBytes(0xc1d63280d0, 0xc0a46c0800, 0x170a, 0x1800, 0xc200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:485 +0x477\nfmt.(*pp).printArg(0xc1d63280d0, 0xb04d60, 0xc02bfc5000, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d63280d0, 0xc2fb1bb328, 0x6, 0xc2fb1bb358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc2fb1bb328, 0x6, 0xc2fb1bb358, 0x1, 0x1, 0xc2fb1bb328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aaa7d0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc08e2a5590, 0xc3a1aaa7d0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1d9174000, 0xc89, 0x1000, 0xc019f22820, 0xc02a72bc90, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc2fb1bbd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67780, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3836373464363836, 0x3935333366343037)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf7c0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 787 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc150e64000, 0xef1, 0x1000, 0xc01e141cc0, 0xc00c761a90, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc2fb025d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad677c0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3236643432343837, 0x3537663439373533)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf860)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 788 [runnable]:\nfmt.(*buffer).write(...)\n\t/usr/lib/golang/src/fmt/print.go:78\nfmt.(*fmt).pad(0xc1d5ff61e0, 0xc1d5ff624a, 0x2, 0x2)\n\t/usr/lib/golang/src/fmt/format.go:92 +0xf6\nfmt.(*fmt).fmtInteger(0xc1d5ff61e0, 0x34, 0xa, 0x76004fa800, 0xbf4897, 0x11)\n\t/usr/lib/golang/src/fmt/format.go:319 +0x1fa\nfmt.(*pp).fmtBytes(0xc1d5ff61a0, 0xc1509b6000, 0x4b9c, 0x5000, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:485 +0x477\nfmt.(*pp).printArg(0xc1d5ff61a0, 0xb04d60, 0xc150994f40, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5ff61a0, 0xc03ffa9328, 0x6, 0xc03ffa9358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc03ffa9328, 0x6, 0xc03ffa9358, 0x1, 0x1, 0xc03ffa9328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127dd60, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc1509374a0, 0xc3a127dd60, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc081329000, 0x884, 0x900, 0xc0271c9ae0, 0xc0165cbcb0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc03ffa9d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad677e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3736383366343535, 0x6434333435376632)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf900)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 789 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5f93040, 0xc066efc000, 0x3b0c, 0x4000, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5f93040, 0xb04d60, 0xc041ce9020, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5f93040, 0xc00a491328, 0x6, 0xc00a491358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc00a491328, 0x6, 0xc00a491358, 0x1, 0x1, 0xc00a491328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558af0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc066ef2600, 0xc3a2558af0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc23621e000, 0xc25, 0x1000, 0xc01db72460, 0xc01a2f5880, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc00a491d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67800, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3433623634366234, 0x3037343336363133)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cf9a0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 790 [runnable]:\nfmt.(*pp).free(0xc1d6329110)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc0855b5328, 0x6, 0xc0855b5358, 0x1, 0x1, 0xc0855b5328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aab180, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0983eb440, 0xc3a1aab180, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc064064000, 0x957, 0xc00, 0xc01ea7a780, 0xc051a65f00, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc0855b5d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67820, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3934333362323235, 0x6234393438343633)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cfa40)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 791 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5f92750, 0xc05822d500, 0x32e6, 0x3500, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5f92750, 0xb04d60, 0xc01d466ce0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5f92750, 0xc00592f328, 0x6, 0xc00592f358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc00592f328, 0x6, 0xc00592f358, 0x1, 0x1, 0xc00592f328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558ff0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0565ff320, 0xc3a2558ff0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0b2ed0000, 0xfbd, 0x1000, 0xc02522c000, 0xc03cad2530, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc00592fd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67840, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cfae0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 792 [runnable]:\nfmt.(*pp).free(0xc1d616d110)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc087785328, 0x6, 0xc087785358, 0x1, 0x1, 0xc087785328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558000, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc11d295740, 0xc3a2558000, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1bbf74000, 0x957, 0xc00, 0xc01ddc5360, 0xc03e22e200, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc087785d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67860, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x802ba49f84c3ec2f, 0x356317b76b38bc79)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cfb80)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 793 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d3fdf5f0, 0xc0a885f000, 0x4460, 0x4800, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d3fdf5f0, 0xb04d60, 0xc01d10d0e0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d3fdf5f0, 0xc01b60d328, 0x6, 0xc01b60d358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc01b60d328, 0x6, 0xc01b60d358, 0x1, 0x1, 0xc01b60d328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558dc0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc080816690, 0xc3a2558dc0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc20d70e000, 0xc89, 0x1000, 0xc01db72fa0, 0xc0151fd8b0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc01b60dd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67880, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x4b4464373834324b, 0x59576b3471466e34)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cfc20)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 794 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5a5a340, 0xc049884600, 0x1220, 0x1300, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5a5a340, 0xb04d60, 0xc033fe06c0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5a5a340, 0xc0378e3328, 0x6, 0xc0378e3358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0378e3328, 0x6, 0xc0378e3358, 0x1, 0x1, 0xc0378e3328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aabe50, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc049d00960, 0xc3a1aabe50, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1f7384000, 0xef1, 0x1000, 0xc019c43900, 0xc01a182930, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc0378e3d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad678a0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x694b6474784d4942, 0x4b30493953763279)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cfcc0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 795 [runnable]:\nreflect.Copy(0xb04d60, 0xc159fe3de0, 0x97, 0xb04d60, 0xc159fe3dc0, 0x97, 0x97)\n\t/usr/lib/golang/src/reflect/value.go:2070 +0x465\ngithub.com/gocql/gocql.(*RowData).rowMap(0xc01ae11280, 0xc3a0b734d0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/helpers.go:287 +0x265\ngithub.com/gocql/gocql.(*Iter).MapScan(0xc00019e120, 0xc3a0b734d0, 0x1)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/helpers.go:418 +0x1e5\ngithub.com/scylladb/gemini/store.loadSet(0xc00019e120, 0xc1583b54a0, 0x2, 0x2)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:88 +0x65\ngithub.com/scylladb/gemini/store.(*cqlStore).load(0xc000064640, 0xcc9e40, 0xc0045cae80, 0xcbd3e0, 0xc01e439ea0, 0xc00023c330, 0x1, 0x1, 0x0, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/cqlstore.go:120 +0x294\ngithub.com/scylladb/gemini/store.load(...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:217\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:176 +0x19e\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc01ae11d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad678c0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0xc000216398, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cfd60)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 796 [runnable]:\nfmt.(*pp).free(0xc1d57f2410)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc0261af328, 0x6, 0xc0261af358, 0x1, 0x1, 0xc0261af328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127d8b0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0f5d5be00, 0xc3a127d8b0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1ff202000, 0xcf5, 0x1000, 0xc01e439e00, 0xc00023c290, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc0261afd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad678e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3734353736363834, 0x3834333765346534)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cfe00)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 809 [runnable]:\nfmt.(*pp).free(0xc1d5de72b0)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc2fb01f328, 0x6, 0xc2fb01f358, 0x1, 0x1, 0xc2fb01f328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127dc20, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc05ebbb110, 0xc3a127dc20, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1826c0000, 0x9bf, 0xc00, 0xc019c43860, 0xc019df3de0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc2fb01fd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc700, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0xc000216398, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d720)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 797 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5ff64e0, 0xc1360a3000, 0x434a, 0x4800, 0xc300000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5ff64e0, 0xb04d60, 0xc136081aa0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5ff64e0, 0xc028fa9328, 0x6, 0xc028fa9358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc028fa9328, 0x6, 0xc028fa9358, 0x1, 0x1, 0xc028fa9328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2dfe230, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc13600fb00, 0xc3a2dfe230, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0ae4c6000, 0x823, 0x900, 0xc01ea7a460, 0xc0137fb7d0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc028fa9d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67900, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3236643432343837, 0x3537663439373533)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cfea0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 810 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1c6880000, 0xcf5, 0x1000, 0xc01a8f4b40, 0xc028d71720, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc2fb4b7d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc720, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d7c0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 798 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1e7444000, 0xef1, 0x1000, 0xc02522db80, 0xc01fc616e0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc013321d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67920, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3736383366343535, 0x6434333435376632)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc0000cff40)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 811 [runnable]:\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127df90, 0x0, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc04f93bd70, 0xc3a0cedf40, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:38 +0x291\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc2481b2000, 0xcf5, 0x1000, 0xc01db72820, 0xc012e9c4e0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc018433d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc740, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d860)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 812 [runnable]:\nfmt.(*fmt).fmtInteger(0xc1d6328d40, 0x33, 0xa, 0x7600001800, 0xbf4897, 0x11)\n\t/usr/lib/golang/src/fmt/format.go:194 +0x5ba\nfmt.(*pp).fmtBytes(0xc1d6328d00, 0xc09162d500, 0x4a58, 0x4a80, 0xc000000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:485 +0x477\nfmt.(*pp).printArg(0xc1d6328d00, 0xb04d60, 0xc0915e80c0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d6328d00, 0xc0188f1328, 0x6, 0xc0188f1358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0188f1328, 0x6, 0xc0188f1358, 0x1, 0x1, 0xc0188f1328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aab0e0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc091474fc0, 0xc3a1aab0e0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc202624000, 0xdb9, 0x1000, 0xc019c43180, 0xc02972f520, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc0188f1d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc760, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d900)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 799 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d63289c0, 0xc03a061800, 0x1650, 0x1800, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d63289c0, 0xb04d60, 0xc048679640, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d63289c0, 0xc04b9a3328, 0x6, 0xc04b9a3358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc04b9a3328, 0x6, 0xc04b9a3358, 0x1, 0x1, 0xc04b9a3328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2dfe280, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc07806c990, 0xc3a2dfe280, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc211144000, 0xc89, 0x1000, 0xc01e955400, 0xc02ca30c30, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc04b9a3d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67940, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3433623634366234, 0x3037343336363133)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc000349b80)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 800 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5c7dee0, 0xc164d57000, 0x468e, 0x4800, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5c7dee0, 0xb04d60, 0xc164d757a0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5c7dee0, 0xc0371bf328, 0x6, 0xc0371bf358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0371bf328, 0x6, 0xc0371bf358, 0x1, 0x1, 0xc0371bf328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558be0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc16437f860, 0xc3a2558be0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0b3526000, 0x884, 0x900, 0xc01ea7ab40, 0xc040a3b560, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc0371bfd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67960, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3934333362323235, 0x6234393438343633)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc000349c20)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 813 [runnable]:\nfmt.(*pp).free(0xc1d6036820)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc04b99f328, 0x6, 0xc04b99f358, 0x1, 0x1, 0xc04b99f328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127ddb0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc10960eb10, 0xc3a127ddb0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc12d809000, 0x8f0, 0x900, 0xc0271c8b40, 0xc05034d090, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc04b99fd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc780, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028d9a0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 817 [runnable]:\nfmt.(*pp).free(0xc1d5a5a0d0)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc01d5fb328, 0x6, 0xc01d5fb358, 0x1, 0x1, 0xc01d5fb328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127d770, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0e6b3a390, 0xc3a127d770, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc21c51e000, 0xc25, 0x1000, 0xc027b14be0, 0xc05ab346c0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc01d5fbd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67980, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc000349cc0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 814 [runnable]:\nfmt.(*pp).free(0xc1d5beb380)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc00c54f328, 0x6, 0xc00c54f358, 0x1, 0x1, 0xc00c54f328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127d720, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0fb793c80, 0xc3a127d720, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0ffc84000, 0xcf5, 0x1000, 0xc02522ca00, 0xc01b667a10, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc00c54fd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc7a0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x784c32, 0xc0000bf860)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028da40)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 818 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1cfd94000, 0xf5c, 0x1000, 0xc01a8f4f00, 0xc028d71d20, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc00a585d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad679a0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3734353736363834, 0x3834333765346534)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc000349d60)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 815 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5360410, 0xc0ffa11300, 0x1182, 0x1300, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5360410, 0xb04d60, 0xc0ffa0e500, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5360410, 0xc007dbd328, 0x6, 0xc007dbd358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc007dbd328, 0x6, 0xc007dbd358, 0x1, 0x1, 0xc007dbd328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a30fc1e0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0ff97e030, 0xc3a30fc1e0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc06326e000, 0xbb0, 0xc00, 0xc01db723c0, 0xc01a2f57e0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc007dbdd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc7c0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x1090af0, 0x30)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028dae0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 816 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0ac54e000, 0xd52, 0x1000, 0xc02522c140, 0xc0554a0310, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc087789d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc7e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x21c4f10e, 0x3b24d12bce3)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028db80)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 819 [runnable]:\nfmt.(*fmt).fmtInteger(0xc1d60365f0, 0x32, 0xa, 0x76004fa800, 0xbf4897, 0x11)\n\t/usr/lib/golang/src/fmt/format.go:194 +0x5ba\nfmt.(*pp).fmtBytes(0xc1d60365b0, 0xc06a593000, 0x4406, 0x4800, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:485 +0x477\nfmt.(*pp).printArg(0xc1d60365b0, 0xb04d60, 0xc03c7ec540, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d60365b0, 0xc01f603328, 0x6, 0xc01f603358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc01f603328, 0x6, 0xc01f603358, 0x1, 0x1, 0xc01f603328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aabd60, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc03dde79b0, 0xc3a1aabd60, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0bc77c000, 0xf5c, 0x1000, 0xc019c42b40, 0xc02972e870, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc01f603d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad679e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0xc000216398, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc000349e00)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 820 [runnable]:\nfmt.(*pp).free(0xc1d62be5b0)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc01d975328, 0x6, 0xc01d975358, 0x1, 0x1, 0xc01d975328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aabdb0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc069e77950, 0xc3a1aabdb0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc164084000, 0x8f0, 0x900, 0xc01ddc5540, 0xc03e22e6d0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc01d975d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67a20, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc000349ea0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 821 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1d054c000, 0xb4c, 0xc00, 0xc019f22960, 0xc01ea901b0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc008e07d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67a40, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc000349f40)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 834 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d60360d0, 0xc07fc0c000, 0x382c, 0x4000, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d60360d0, 0xb04d60, 0xc07fb6d560, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d60360d0, 0xc01a26d328, 0x6, 0xc01a26d358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc01a26d328, 0x6, 0xc01a26d358, 0x1, 0x1, 0xc01a26d328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a25586e0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc07faf1c50, 0xc3a25586e0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1fed08000, 0xe86, 0x1000, 0xc01e6c4dc0, 0xc02d4e8c00, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc01a26dd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc820, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x6770706856777373, 0x7a576d4b7a616354)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028dcc0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 835 [runnable]:\ngithub.com/gocql/gocql.(*framer).readBytesInternal(0xc389dfe210, 0x427c, 0xa3703, 0xc027eda7a9, 0x3, 0xc027eda7b0)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/frame.go:1851 +0x1ac\ngithub.com/gocql/gocql.(*Iter).readColumn(...)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/session.go:1401\ngithub.com/gocql/gocql.(*Iter).Scan(0xc01b6db4d0, 0xc1d1eeb860, 0xf, 0x1a, 0x1092160)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/session.go:1440 +0x23a\ngithub.com/gocql/gocql.(*Iter).MapScan(0xc01b6db4d0, 0xc3a0b73560, 0x1401)\n\t/home/penberg/go/pkg/mod/github.com/scylladb/[email protected]/helpers.go:417 +0x1be\ngithub.com/scylladb/gemini/store.loadSet(0xc01b6db4d0, 0xc03c570d40, 0x2, 0x2)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:88 +0x65\ngithub.com/scylladb/gemini/store.(*cqlStore).load(0xc000222690, 0xcc9e40, 0xc0174cd400, 0xcbd3e0, 0xc01e954d20, 0xc02f391a30, 0x1, 0x1, 0x0, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/cqlstore.go:120 +0x294\ngithub.com/scylladb/gemini/store.load(...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:217\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:172 +0xcb\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc01985bd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc840, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x467a575662453651, 0x6342534939432b5a)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028dd60)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 836 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5bea750, 0xc111112a80, 0x48d6, 0x4a80, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5bea750, 0xb04d60, 0xc11107e300, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5bea750, 0xc2fb4b9328, 0x6, 0xc2fb4b9358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc2fb4b9328, 0x6, 0xc2fb4b9358, 0x1, 0x1, 0xc2fb4b9328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2dfe050, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc11106a750, 0xc3a2dfe050, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc201ea4000, 0xc25, 0x1000, 0xc01db730e0, 0xc0151fdf60, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc2fb4b9d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc860, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x506e783534396b57, 0x65566869376f5378)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028de00)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 837 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d58edee0, 0xc0eea9d800, 0x409c, 0x4800, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d58edee0, 0xb04d60, 0xc0eebf3ac0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d58edee0, 0xc00484f328, 0x6, 0xc00484f358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc00484f328, 0x6, 0xc00484f358, 0x1, 0x1, 0xc00484f328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558460, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0eeb9b9b0, 0xc3a2558460, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1e8288000, 0xcf5, 0x1000, 0xc01ddc4aa0, 0xc01ca143d0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc00484fd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc880, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028dea0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 822 [runnable]:\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2dfe000, 0x0, 0x5, 0xc0001a0f00, 0x3, 0x4, 0xc0abc6b230, 0xc3a2558a50, 0x5, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:38 +0x291\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1dd6f8000, 0xb4c, 0xc00, 0xc01db72aa0, 0xc0151fc450, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:31 +0x105\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc0261abd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67a60, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc01abc8000)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 838 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5939ad0, 0xc1164a5500, 0x29d6, 0x2a80, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5939ad0, 0xb04d60, 0xc116700b80, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5939ad0, 0xc034fcd328, 0x6, 0xc034fcd358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc034fcd328, 0x6, 0xc034fcd358, 0x1, 0x1, 0xc034fcd328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a25591d0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc116677bf0, 0xc3a25591d0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc16b552000, 0x9bf, 0xc00, 0xc019c42500, 0xc041b762e0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc034fcdd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc8a0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x784c32, 0xc000204f60)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc00028df40)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 823 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d504d520, 0xc13a98e800, 0x4210, 0x4800, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d504d520, 0xb04d60, 0xc13a97f2e0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d504d520, 0xc007db9328, 0x6, 0xc007db9358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc007db9328, 0x6, 0xc007db9358, 0x1, 0x1, 0xc007db9328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558e60, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc13a937050, 0xc3a2558e60, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc151b9f800, 0x8f0, 0x900, 0xc01e4392c0, 0xc02ce6d190, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc007db9d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67a80, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc01abc80a0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 839 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc116c28000, 0xbb0, 0xc00, 0xc01db73040, 0xc0151fde20, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc00bad7d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc8e0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x1090af0, 0x30)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc01ac30000)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 824 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5bea1a0, 0xc0e03ba000, 0xed0, 0x1000, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5bea1a0, 0xb04d60, 0xc0e4236a20, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5bea1a0, 0xc08778b328, 0x6, 0xc08778b358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc08778b328, 0x6, 0xc08778b358, 0x1, 0x1, 0xc08778b328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aabef0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc1573b1ad0, 0xc3a1aabef0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0dd009000, 0x7b5, 0x900, 0xc02522dae0, 0xc01fc61430, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc08778bd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67aa0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x784c32, 0xc0000bf860)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc01abc8140)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 825 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0ae4ca800, 0x884, 0x900, 0xc01ea7a500, 0xc0137fb870, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc02cd31d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67ac0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x1090af0, 0x30)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc01abc81e0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 840 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1fd4f0000, 0x1103, 0x1400, 0xc02522caa0, 0xc01b667b20, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc00a2f3d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc900, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x2336b2c4, 0x3b24e847e9e)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc01ac300a0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 826 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5f92b60, 0xc09c69ca80, 0x4a5e, 0x4a80, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5f92b60, 0xb04d60, 0xc0127f8040, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5f92b60, 0xc01de65328, 0x6, 0xc01de65358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc01de65328, 0x6, 0xc01de65358, 0x1, 0x1, 0xc01de65328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aab720, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc07ae80840, 0xc3a1aab720, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc12c064000, 0xfbd, 0x1000, 0xc019c43f40, 0xc026157a00, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc01de65d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67ae0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x22ee5b5b, 0x3b24e3c2737)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc01abc8280)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 841 [runnable]:\nfmt.(*pp).free(0xc1d611c0d0)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc014e85328, 0x6, 0xc014e85358, 0x1, 0x1, 0xc014e85328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a0ceddb0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0fa3a37d0, 0xc3a0ceddb0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc12ccde000, 0x9bf, 0xc00, 0xc01e954780, 0xc02ed6f5c0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc014e85d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc920, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x0, 0x0)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc01ac30140)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 827 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d6037040, 0xc035f08000, 0x3caa, 0x4000, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d6037040, 0xb04d60, 0xc02205bfe0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d6037040, 0xc01d5f7328, 0x6, 0xc01d5f7358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc01d5f7328, 0x6, 0xc01d5f7358, 0x1, 0x1, 0xc01d5f7328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2559310, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc054a6f2c0, 0xc3a2559310, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1f5180000, 0xcf5, 0x1000, 0xc01e438500, 0xc023597550, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc01d5f7d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67b00, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x6434613739373035, 0x3834393632373936)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc01abc8320)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 828 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d5f93d40, 0xc076a71800, 0x259e, 0x2600, 0x7f6200000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d5f93d40, 0xb04d60, 0xc01d462640, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d5f93d40, 0xc0060af328, 0x6, 0xc0060af358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc0060af328, 0x6, 0xc0060af358, 0x1, 0x1, 0xc0060af328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2558fa0, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc076ffd7a0, 0xc3a2558fa0, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc20d458000, 0x116f, 0x1400, 0xc01a8f4320, 0xc0198453e0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc0060afd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67b20, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3533373634353536, 0x3436663232346632)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc01abc83c0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 842 [runnable]:\nfmt.(*pp).free(0xc1d5f92680)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc032483328, 0x6, 0xc032483358, 0x1, 0x1, 0xc032483328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a127d950, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc14ada42a0, 0xc3a127d950, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc081320000, 0x884, 0x900, 0xc02522cfa0, 0xc01d50acf0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc032483d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc940, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x6d744c7335503653, 0x3273376b35657937)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc01ac301e0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 829 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d6036680, 0xc04180ec00, 0x10f6, 0x1300, 0x76, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d6036680, 0xb04d60, 0xc04269d9a0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d6036680, 0xc2fb1c1328, 0x6, 0xc2fb1c1358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc2fb1c1328, 0x6, 0xc2fb1c1358, 0x1, 0x1, 0xc2fb1c1328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a30fc230, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc052b95140, 0xc3a30fc230, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0b472c000, 0xef1, 0x1000, 0xc030074be0, 0xc012d429e0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc2fb1c1d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67b60, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3834623633346232, 0x3534343733343736)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc01abc8460)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 843 [runnable]:\nfmt.(*pp).fmtBytes(0xc1d62625b0, 0xc0e06f4000, 0x3e0a, 0x4000, 0xc000000076, 0xbec658, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:481 +0x4b6\nfmt.(*pp).printArg(0xc1d62625b0, 0xb04d60, 0xc0dee769a0, 0x7f6200000076)\n\t/usr/lib/golang/src/fmt/print.go:700 +0x385\nfmt.(*pp).doPrintf(0xc1d62625b0, 0xc034fd1328, 0x6, 0xc034fd1358, 0x1, 0x1)\n\t/usr/lib/golang/src/fmt/print.go:1030 +0x168\nfmt.Sprintf(0xc034fd1328, 0x6, 0xc034fd1358, 0x1, 0x1, 0xc034fd1328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:219 +0x66\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a2559400, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0dee42810, 0xc3a2559400, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc0d1600000, 0x7b5, 0x900, 0xc01ea7aa00, 0xc0520bc7f0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0174cd400, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0174cd400, 0xc00018d5c0, 0xc034fd1d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc043acc980, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0174cd400, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x4559414732364763, 0x53794665594c5741)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc05542b800, 0xc01ac30280)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 830 [runnable]:\nfmt.(*pp).free(0xc1d44e8270)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc00592b328, 0x6, 0xc00592b358, 0x1, 0x1, 0xc00592b328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aab310, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc035216030, 0xc3a1aab310, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1a470c000, 0x1103, 0x1400, 0xc030075540, 0xc019dac2d0, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc00592bd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67bc0, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3537353533363535, 0x3933313364343133)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc01abc8500)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 831 [runnable]:\nfmt.(*pp).free(0xc1d62bf450)\n\t/usr/lib/golang/src/fmt/print.go:146 +0x106\nfmt.Sprintf(0xc0855b7328, 0x6, 0xc0855b7358, 0x1, 0x1, 0xc0855b7328, 0x6)\n\t/usr/lib/golang/src/fmt/print.go:221 +0xab\ngithub.com/scylladb/gemini/store.extractRowValues(0xc3a1aabf40, 0x4, 0x5, 0xc00018d500, 0x2, 0x2, 0xc0a0f9ca50, 0xc3a1aabf40, 0x3, 0x5)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:40 +0x16f\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1dc92e000, 0x9bf, 0xc00, 0xc02522da40, 0xc01fc61390, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:32 +0x154\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc0855b7d50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67c00, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3237353633366436, 0x3135633439363636)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc01abc85a0)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 832 [runnable]:\ngithub.com/scylladb/gemini/store.pks(0xc00032a240, 0xc1999a4000, 0x957, 0xc00, 0xc01e6c4780, 0xc012d42b60, 0x1)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/helpers.go:30 +0xb4\ngithub.com/scylladb/gemini/store.delegatingStore.Check(0xcca080, 0xc000064640, 0xcca080, 0xc000222690, 0x1, 0xc000205440, 0xcc9e40, 0xc0045cae80, 0xc00032a240, 0xcbd3e0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/store/store.go:184 +0x239\nmain.validation(0xcc9e40, 0xc0045cae80, 0xc00018d5c0, 0xc2fb1bfd50, 0xc00032a240, 0xcca0c0, 0xc0002013b0, 0xc02ad67c20, 0x2710, 0x0, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:266 +0x1fd\nmain.ValidationJob(0xcc9e40, 0xc0045cae80, 0xc00013c000, 0xc00018d5c0, 0xc000186140, 0xc000186148, 0x0, 0x0, 0x0, 0x1, ...)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:88 +0x296\nmain.job.func1(0x3334383435373037, 0x3235613639343137)\n\t/home/penberg/go/src/github.com/scylladb/gemini/cmd/gemini/jobs.go:155 +0x19b\ngolang.org/x/sync/errgroup.(*Group).Go.func1(0xc0534057a0, 0xc01abc8640)\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x59\ncreated by golang.org/x/sync/errgroup.(*Group).Go\n\t/home/penberg/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x66\n\ngoroutine 134569 [IO wait]:\ninternal/poll.runtime_pollWait(0x7f631288b490, 0x72, 0xcbe980)\n\t/usr/lib/golang/src/runtime/netpoll.go:222 +0x55\ninternal/poll.(*pollDesc).wait(0xc054e68818, 0x72, 0xcbe900, 0x100c4b0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:87 +0x45\ninternal/poll.(*pollDesc).waitRead(...)\n\t/usr/lib/golang/src/internal/poll/fd_poll_runtime.go:92\ninternal/poll.(*FD).Read(0xc054e68800, 0xc000160000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/internal/poll/fd_unix.go:159 +0x1a5\nnet.(*netFD).Read(0xc054e68800, 0xc000160000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/fd_posix.go:55 +0x4f\nnet.(*conn).Read(0xc36ec8aff8, 0xc000160000, 0x1000, 0x1000, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/net.go:182 +0x8e\nnet/http.(*connReader).Read(0xc3730a0930, 0xc000160000, 0x1000, 0x1000, 0x10000096e, 0x100c04a, 0x7f630e0bfe28)\n\t/usr/lib/golang/src/net/http/server.go:798 +0x1ad\nbufio.(*Reader).fill(0xc000124960)\n\t/usr/lib/golang/src/bufio/bufio.go:101 +0x105\nbufio.(*Reader).ReadSlice(0xc000124960, 0xc0323c7c0a, 0x7f630e0bfe28, 0xc00008f988, 0x40dee8, 0x7f630e0bfe28, 0xc01a606e00)\n\t/usr/lib/golang/src/bufio/bufio.go:360 +0x3d\nbufio.(*Reader).ReadLine(0xc000124960, 0xc01a606e00, 0x4798d4, 0xc00003d400, 0xc0323c7c80, 0x2, 0xc000161000)\n\t/usr/lib/golang/src/bufio/bufio.go:389 +0x34\nnet/textproto.(*Reader).readLineSlice(0xc358b81c50, 0xc01a606e00, 0x4e6ead, 0xc054e68800, 0x467a00, 0xc0133fc180)\n\t/usr/lib/golang/src/net/textproto/reader.go:58 +0x6c\nnet/textproto.(*Reader).ReadLine(...)\n\t/usr/lib/golang/src/net/textproto/reader.go:39\nnet/http.readRequest(0xc000124960, 0x0, 0xc01a606e00, 0x0, 0x0)\n\t/usr/lib/golang/src/net/http/request.go:1012 +0xaa\nnet/http.(*conn).readRequest(0xc01db72000, 0xcc9e40, 0xc020262c00, 0x0, 0x0, 0x0)\n\t/usr/lib/golang/src/net/http/server.go:984 +0x19a\nnet/http.(*conn).serve(0xc01db72000, 0xcc9e40, 0xc020262c00)\n\t/usr/lib/golang/src/net/http/server.go:1851 +0x705\ncreated by net/http.(*Server).Serve\n\t/usr/lib/golang/src/net/http/server.go:2969 +0x36c\n\ngoroutine 134970 [chan send]:\nnet.(*netFD).connect.func2(0xcc9ec0, 0xc02c3aac00, 0xc037cdcf80, 0xc39d120c60, 0xc39d120c00)\n\t/usr/lib/golang/src/net/fd_unix.go:125 +0x1b1\ncreated by net.(*netFD).connect\n\t/usr/lib/golang/src/net/fd_unix.go:117 +0x234\n\n']

2022-06-29 17:13:40.129: (TestFrameworkEvent Severity.ERROR) period_type=one-time event_id=af0b577c-aa15-4a88-9a2b-ed23cf70d02e, source=GeminiTest.test_load_random_with_nemesis (gemini_test.GeminiTest)() message=Traceback (most recent call last):
File "/home/ubuntu/scylla-cluster-tests/gemini_test.py", line 68, in test_load_random_with_nemesis
self.verify_results()
File "/home/ubuntu/scylla-cluster-tests/gemini_test.py", line 127, in verify_results
self.fail(self.gemini_results['results'])
AssertionError: []

Installation details

Kernel Version: 5.13.0-1031-aws
Scylla version (or git commit hash): 5.0.0-20220629.c9e79cb4a with build-id 7453750ee63163e13d187f61d4ff93ec7d9f8f79
Cluster size: 3 nodes (i3.large)

Scylla Nodes used in this run:

  • gemini-with-nemesis-3h-normal-5-0-oracle-db-node-b58cd479-1 (3.238.13.185 | 10.0.2.33) (shards: 2)
  • gemini-with-nemesis-3h-normal-5-0-db-node-b58cd479-4 (44.192.103.95 | 10.0.2.231) (shards: 2)
  • gemini-with-nemesis-3h-normal-5-0-db-node-b58cd479-3 (44.204.225.17 | 10.0.1.146) (shards: 2)
  • gemini-with-nemesis-3h-normal-5-0-db-node-b58cd479-2 (44.198.52.120 | 10.0.2.224) (shards: 2)
  • gemini-with-nemesis-3h-normal-5-0-db-node-b58cd479-1 (3.216.126.47 | 10.0.3.234) (shards: 2)

OS / Image: ami-0625f2d18e05bf206 (aws: us-east-1)

Test: gemini-3h-with-nemesis-test
Test id: b58cd479-229b-4955-94f0-08175ea51b94
Test name: scylla-5.0/gemini-/gemini-3h-with-nemesis-test
Test config file(s):

Issue description

>>>>>>>
Your description here...
<<<<<<<

  • Restore Monitor Stack command: $ hydra investigate show-monitor b58cd479-229b-4955-94f0-08175ea51b94
  • Restore monitor on AWS instance using Jenkins job
  • Show all stored logs command: $ hydra investigate show-logs b58cd479-229b-4955-94f0-08175ea51b94

Logs:

Jenkins job URL

from gemini.

ShlomiBalalis avatar ShlomiBalalis commented on September 23, 2024

Issue description

The error was reproduced in this run (this time at map_fast64.go:127), with the following:

errors=['Command error: unexpected fault address 0x0
fatal error: fault
[signal SIGSEGV: segmentation violation code=0x80 addr=0x0 pc=0x41200c]

goroutine 781 [running]:
runtime.throw({0xaf9281?, 0xc058e96048?})
	/usr/local/go/src/runtime/panic.go:992 +0x71 fp=0xc035dcf490 sp=0xc035dcf460 pc=0x436291
runtime.sigpanic()
	/usr/local/go/src/runtime/signal_unix.go:825 +0x305 fp=0xc035dcf4e0 sp=0xc035dcf490 pc=0x44c485
runtime.mapassign_fast64(0xa623c0, 0xc0016d93b0, 0x56bb3f66b7089818)
	/usr/local/go/src/runtime/map_fast64.go:127 +0x1cc fp=0xc035dcf518 sp=0xc035dcf4e0 pc=0x41200c
github.com/scylladb/go-set/u64set.(*Set).Add(...)
	/home/ls/go/pkg/mod/github.com/scylladb/[email protected]/u64set/u64set.go:41
github.com/scylladb/gemini/inflight.(*syncU64set).addIfNotPresent(0xc001710150, 0x56bb3f66b7089818)
	/home/ls/repos/gemini_upstream/inflight/inflight.go:101 +0x13a fp=0xc035dcf588 sp=0xc035dcf518 pc=0x52cbba
github.com/scylladb/gemini/inflight.(*syncU64set).AddIfNotPresent(0xc001710150, 0x56bb3f66b7089818)
	/home/ls/repos/gemini_upstream/inflight/inflight.go:91 +0x10c fp=0xc035dcf5c8 sp=0xc035dcf588 pc=0x52ca4c
github.com/scylladb/gemini.(*Partition).get(...)
	/home/ls/repos/gemini_upstream/partition.go:35
github.com/scylladb/gemini.(*Partition).getOld(0xc0016d93e0)
	/home/ls/repos/gemini_upstream/partition.go:52 +0x17a fp=0xc035dcf690 sp=0xc035dcf5c8 pc=0x7afada
github.com/scylladb/gemini.Generator.GetOld({{0xbe8f80, 0xc00018c000}, {0xc00055c000, 0x2710, 0x2710}, 0x2710, 0xc000250180, {0x2710, 0x0, 0x3e8, ...}, ...})
	/home/ls/repos/gemini_upstream/generator.go:101 +0x6e fp=0xc035dcf6b0 sp=0xc035dcf690 pc=0x7aef4e
github.com/scylladb/gemini.(*Schema).genMultiplePartitionQuery(0xc0000a9080, 0xc000250180, 0xc00015a100, 0xc0328993a0, {0x2710, 0x0, 0x3e8, 0x0, 0x0})
	/home/ls/repos/gemini_upstream/schema.go:919 +0x765 fp=0xc035dcf950 sp=0xc035dcf6b0 pc=0x7bb905
github.com/scylladb/gemini.(*Schema).GenCheckStmt(0xc0272725a0?, 0xc000250180, 0xc018705540?, 0x14?, {0x2710, 0x0, 0x3e8, 0x0, 0x0})
	/home/ls/repos/gemini_upstream/schema.go:832 +0xdb fp=0xc035dcf9c0 sp=0xc035dcf950 pc=0x7ba39b
main.validation({0xbe8f80, 0xc018705540}, 0x3332633265376130?, 0xc035dcfde8, 0x2f50304477334232?, {0xbe91b0, 0xc0003046f0}, 0x2d366136392d6664?, {0x2710, 0x0, ...}, ...)
	/home/ls/repos/gemini_upstream/cmd/gemini/jobs.go:250 +0xdc fp=0xc035dcfbe0 sp=0xc035dcf9c0 pc=0x9f077c
main.ValidationJob({_, _}, _, _, {0xc0000a6138, 0xc0000a6140, {0x0, 0x0, 0x0}, 0x1, ...}, ...)
	/home/ls/repos/gemini_upstream/cmd/gemini/jobs.go:88 +0x25f fp=0xc035dcfde8 sp=0xc035dcfbe0 pc=0x9ee27f
main.job.func1()
	/home/ls/repos/gemini_upstream/cmd/gemini/jobs.go:155 +0x17b fp=0xc035dcff78 sp=0xc035dcfde8 pc=0x9ef23b
golang.org/x/sync/errgroup.(*Group).Go.func1()
	/home/ls/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:57 +0x67 fp=0xc035dcffe0 sp=0xc035dcff78 pc=0x6ed407
runtime.goexit()
	/usr/local/go/src/runtime/asm_amd64.s:1571 +0x1 fp=0xc035dcffe8 sp=0xc035dcffe0 pc=0x468a81
created by golang.org/x/sync/errgroup.(*Group).Go
	/home/ls/go/pkg/mod/golang.org/x/[email protected]/errgroup/errgroup.go:54 +0x8d

Full error log:
gemini.log

Installation details

Kernel Version: 5.15.0-1026-aws
Scylla version (or git commit hash): 5.2.0~dev-20221219.3e6ddf21bc0f with build-id 4b2025074efc29f0de734ae31e056c6ac1563dea

Cluster size: 3 nodes (i3.large)

Scylla Nodes used in this run:

  • gemini-with-nemesis-3h-normal-maste-oracle-db-node-1a2fedc0-1 (34.246.183.163 | 10.4.1.9) (shards: 2)
  • gemini-with-nemesis-3h-normal-maste-db-node-1a2fedc0-4 (54.229.166.202 | 10.4.0.195) (shards: 2)
  • gemini-with-nemesis-3h-normal-maste-db-node-1a2fedc0-3 (34.243.215.226 | 10.4.2.79) (shards: 2)
  • gemini-with-nemesis-3h-normal-maste-db-node-1a2fedc0-2 (54.76.213.66 | 10.4.1.152) (shards: 2)
  • gemini-with-nemesis-3h-normal-maste-db-node-1a2fedc0-1 (3.250.50.47 | 10.4.0.70) (shards: 2)

OS / Image: ami-0c7844f06f7081bb3 (aws: eu-west-1)

Test: gemini-3h-with-nemesis-test
Test id: 1a2fedc0-8562-4d98-9595-ff477af62f5b
Test name: scylla-master/gemini-/gemini-3h-with-nemesis-test
Test config file(s):

Logs and commands
  • Restore Monitor Stack command: $ hydra investigate show-monitor 1a2fedc0-8562-4d98-9595-ff477af62f5b
  • Restore monitor on AWS instance using Jenkins job
  • Show all stored logs command: $ hydra investigate show-logs 1a2fedc0-8562-4d98-9595-ff477af62f5b

Logs:

Jenkins job URL

from gemini.

fruch avatar fruch commented on September 23, 2024

clearly there's a memory leak here:
image

@piodul @avelanarius, is https://github.com/scylladb/go-set is used in any other go projects we have ?

from gemini.

fruch avatar fruch commented on September 23, 2024

@roydahan I don't have permissions here, can you edit the title to add the information it's a memory leak

from gemini.

fruch avatar fruch commented on September 23, 2024

Happens again

Issue description

unexpected fault address 0x0
fatal error: fault
[signal SIGSEGV: segmentation violation code=0x80 addr=0x0 pc=0x411dd0]

goroutine 3491 [running]:
runtime.throw({0xaf9281?, 0xc002a150e0?})
	/usr/local/go/src/runtime/panic.go:992 +0x71 fp=0xc0047b9518 sp=0xc0047b94e8 pc=0x436291
runtime.sigpanic()
	/usr/local/go/src/runtime/signal_unix.go:825 +0x305 fp=0xc0047b9568 sp=0xc0047b9518 pc=0x44c485
runtime.mapaccess2_fast64(0xa623c0?, 0xc00297ffb0?, 0xc7010ba4a98f5765)
	/usr/local/go/src/runtime/map_fast64.go:85 +0x130 fp=0xc0047b9588 sp=0xc0047b9568 pc=0x411dd0
github.com/scylladb/go-set/u64set.(*Set).Has(...)
	/home/ls/go/pkg/mod/github.com/scylladb/[email protected]/u64set/u64set.go:80
github.com/scylladb/gemini/inflight.(*syncU64set).AddIfNotPresent(0xc00272bbf0, 0xc7010ba4a98f5765)
	/home/ls/repos/gemini_upstream/inflight/inflight.go:86 +0xa5 fp=0xc0047b95c8 sp=0xc0047b9588 pc=0x52c9e5
github.com/scylladb/gemini.(*Partition).get(...)
	/home/ls/repos/gemini_upstream/partition.go:35
github.com/scylladb/gemini.(*Partition).getOld(0xc002a18000)
...

Installation details

Kernel Version: 5.15.0-1028-aws
Scylla version (or git commit hash): 5.3.0~dev-20230121.0d64f327e1af with build-id d86a3cf0897bad4759751268e252867569ba2b2d

Cluster size: 3 nodes (i3.4xlarge)

Scylla Nodes used in this run:

  • gemini-1tb-10h-master-oracle-db-node-cb8544ea-1 (54.80.183.241 | 10.12.9.72) (shards: 14)
  • gemini-1tb-10h-master-db-node-cb8544ea-3 (54.235.29.117 | 10.12.11.239) (shards: 14)
  • gemini-1tb-10h-master-db-node-cb8544ea-2 (3.89.59.215 | 10.12.10.243) (shards: 14)
  • gemini-1tb-10h-master-db-node-cb8544ea-1 (54.82.110.26 | 10.12.10.213) (shards: 14)

OS / Image: ami-0dd17a999e76a8035 (aws: us-east-1)

Test: gemini-1tb-10h
Test id: cb8544ea-075a-4d0b-98e7-bdfcebf7ed67
Test name: scylla-master/gemini-/gemini-1tb-10h
Test config file(s):

Logs and commands
  • Restore Monitor Stack command: $ hydra investigate show-monitor cb8544ea-075a-4d0b-98e7-bdfcebf7ed67
  • Restore monitor on AWS instance using Jenkins job
  • Show all stored logs command: $ hydra investigate show-logs cb8544ea-075a-4d0b-98e7-bdfcebf7ed67

Logs:

Jenkins job URL

from gemini.

fruch avatar fruch commented on September 23, 2024

Reason for this leak is the that golang maps are not shrinking when you do delete on them.
Under the hood, for tracking inflight tokens it is using u64set from go-set which is based on map.
key for which is every token gemini is addressing, no wonder it is leaking memory.
Solution would be to use something like shrinking-map instead

Quite intuitive of golang...

I'm not sure why the go-set package was used to begin with, probably for speed...

from gemini.

dkropachev avatar dkropachev commented on September 23, 2024

Please take a look at #280

from gemini.

roydahan avatar roydahan commented on September 23, 2024

Closed by c350bbe

from gemini.

Related Issues (20)

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.