diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue11656.dir/issue11656.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue11656.dir/issue11656.go new file mode 100644 index 0000000000000000000000000000000000000000..a5a52df698ad9ca1d5db3f1fb538a6e44feb9353 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue11656.dir/issue11656.go @@ -0,0 +1,75 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "encoding/binary" + "runtime" + "runtime/debug" + "unsafe" +) + +func main() { + debug.SetPanicOnFault(true) + defer func() { + if err := recover(); err == nil { + panic("not panicking") + } + pc, _, _, _ := runtime.Caller(10) + f := runtime.FuncForPC(pc) + if f == nil || f.Name() != "main.f" { + if f == nil { + println("no func for ", unsafe.Pointer(pc)) + } else { + println("found func:", f.Name()) + } + panic("cannot find main.f on stack") + } + }() + f(20) +} + +func f(n int) { + if n > 0 { + f(n - 1) + } + var f struct { + x uintptr + } + + // We want to force a seg fault, to get a crash at a PC value != 0. + // Not all systems make the data section non-executable. + ill := make([]byte, 64) + switch runtime.GOARCH { + case "386", "amd64": + ill = append(ill[:0], 0x89, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00) // MOVL AX, 0 + case "arm": + binary.LittleEndian.PutUint32(ill[0:4], 0xe3a00000) // MOVW $0, R0 + binary.LittleEndian.PutUint32(ill[4:8], 0xe5800000) // MOVW R0, (R0) + case "arm64": + binary.LittleEndian.PutUint32(ill, 0xf90003ff) // MOVD ZR, (ZR) + case "ppc64": + binary.BigEndian.PutUint32(ill, 0xf8000000) // MOVD R0, (R0) + case "ppc64le": + binary.LittleEndian.PutUint32(ill, 0xf8000000) // MOVD R0, (R0) + case "mips", "mips64": + binary.BigEndian.PutUint32(ill, 0xfc000000) // MOVV R0, (R0) + case "mipsle", "mips64le": + binary.LittleEndian.PutUint32(ill, 0xfc000000) // MOVV R0, (R0) + case "s390x": + ill = append(ill[:0], 0xa7, 0x09, 0x00, 0x00) // MOVD $0, R0 + ill = append(ill, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x24) // MOVD R0, (R0) + case "riscv64": + binary.LittleEndian.PutUint32(ill, 0x00003023) // MOV X0, (X0) + default: + // Just leave it as 0 and hope for the best. + } + + f.x = uintptr(unsafe.Pointer(&ill[0])) + p := &f + fn := *(*func())(unsafe.Pointer(&p)) + syncIcache(f.x) + fn() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue12677.dir/p.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue12677.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..e395071f8d545712eaa2b4d800abb5558c72d40a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue12677.dir/p.go @@ -0,0 +1,8 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p +func Baz(f int) float64 { + return 1 / float64(int(1)<<(uint(f))) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue12677.dir/q.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue12677.dir/q.go new file mode 100644 index 0000000000000000000000000000000000000000..fd39c8a9ca6bcef0f1453dacbbec979b142e89c2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue12677.dir/q.go @@ -0,0 +1,7 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package q +import "./p" +func f() { println(p.Baz(2)) } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue13777.dir/burnin.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue13777.dir/burnin.go new file mode 100644 index 0000000000000000000000000000000000000000..512563975ed64fa6ac60d95c00bc40f37a5bb0f1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue13777.dir/burnin.go @@ -0,0 +1,19 @@ +package burnin + +type sendCmdFunc func(string) + +func sendCommand(c string) {} + +func NewSomething() { + // This works... + // var sendCmd sendCmdFunc + // sendCmd = sendCommand + + // So does this... + //sendCmd := sendCmdFunc(sendCommand) + + // This fails... + sendCmd := sendCommand + + _ = sendCmd +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue13777.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue13777.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..2512b93a81a0395093c685bd63d30a4914fe1487 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue13777.dir/main.go @@ -0,0 +1,11 @@ +// build + +package main + +import ( + x "./burnin" +) + +func main() { + x.NewSomething() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue14164.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue14164.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..bf03051619817a7f5f421d99d467a9eea6f95b64 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue14164.dir/a.go @@ -0,0 +1,47 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +// F is an exported function, small enough to be inlined. +// It defines a local interface with an unexported method +// f, which will appear with a package-qualified method +// name in the export data. +func F(x interface{}) bool { + _, ok := x.(interface { + f() + }) + return ok +} + +// Like F but with the unexported interface method f +// defined via an embedded interface t. The compiler +// always flattens embedded interfaces so there should +// be no difference between F and G. Alas, currently +// G is not inlineable (at least via export data), so +// the issue is moot, here. +func G(x interface{}) bool { + type t0 interface { + f() + } + _, ok := x.(interface { + t0 + }) + return ok +} + +// Like G but now the embedded interface is declared +// at package level. This function is inlineable via +// export data. The export data representation is like +// for F. +func H(x interface{}) bool { + _, ok := x.(interface { + t1 + }) + return ok +} + +type t1 interface { + f() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue14164.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue14164.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..bcc6a63c2071588a0bf6da9fd2c868e0877f7a62 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue14164.dir/main.go @@ -0,0 +1,12 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +// Verify that we can import package "a" containing an inlineable +// function F that declares a local interface with a non-exported +// method f. +import _ "./a" + +func main() {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue14331.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue14331.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..f1e57ef52785658234739ffeaf04053beb8607a4 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue14331.dir/a.go @@ -0,0 +1,14 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var S struct { + Str string `tag` +} + +func F() string { + v := S + return v.Str +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue14331.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue14331.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..a2280a362979639bdbeacd2409143433c8c05da6 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue14331.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func G() string { + return a.F() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15071.dir/exp.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15071.dir/exp.go new file mode 100644 index 0000000000000000000000000000000000000000..e6041e602da3262c288ef150909a041a57281dd3 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15071.dir/exp.go @@ -0,0 +1,24 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package exp + +func Exported(x int) int { + return inlined(x) +} + +func inlined(x int) int { + y := 0 + switch { + case x > 0: + y += 5 + return 0 + y + case x < 1: + y += 6 + fallthrough + default: + y += 7 + return 2 + y + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15071.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15071.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..96790dae83ad17e21233045e3e9f77ec056fdbc1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15071.dir/main.go @@ -0,0 +1,14 @@ +// run + +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "os" +import "./exp" + +func main() { + _ = exp.Exported(len(os.Args)) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15470.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15470.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..1fcf3ea6e010ca91edcf5c290f4e260753e277f4 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15470.dir/a.go @@ -0,0 +1,24 @@ +package a + +import "io" + +type T interface { + M0(_ int) + M1(x, _ int) // _ (blank) caused crash + M2() (x, _ int) +} + +type S struct{} + +func (S) M0(_ int) {} +func (S) M1(x, _ int) {} +func (S) M2() (x, _ int) { return } +func (_ S) M3() {} + +// Snippet from x/tools/godoc/analysis/analysis.go. +// Offending code from #5470. +type Link interface { + Start() int + End() int + Write(w io.Writer, _ int, start bool) // _ (blank) caused crash +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15470.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15470.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..863ee9f522196ab4075f074f2faa8bf64ff2462a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15470.dir/b.go @@ -0,0 +1,3 @@ +package b + +import _ "./a" // must not fail diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15514.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15514.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..663303b863fe8a579ba5e51d86d1acbad99f664e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15514.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type A struct{ _ int32 } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15514.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15514.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..f0750d3a443178addbe68e3085eebf25f2566dce --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15514.dir/b.go @@ -0,0 +1,7 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +func B() (_ struct{ _ int32 }) { return } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15514.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15514.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..dc2ef5bed526db568bc7b151768c1f9f3f2ffbfe --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15514.dir/c.go @@ -0,0 +1,10 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +import "./a" +import "./b" + +var _ a.A = b.B() // ERROR "cannot use b\.B|incompatible type" diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15548.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15548.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..3c593fc0f6a4c8da4fa457503fa14f3691f8b662 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15548.dir/a.go @@ -0,0 +1,17 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I0 interface { + I1 +} + +type T struct { + I1 +} + +type I1 interface { + M(*T) // removing * makes crash go away +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15548.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15548.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..b46f5adfddbd07848ecade50b14f45e36130c491 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15548.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var X a.T diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15548.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15548.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..6d3f3be53ec2a465c95096d0692c1df7ccf5724b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15548.dir/c.go @@ -0,0 +1,10 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +import ( + _ "./b" + _ "./a" +) diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15572.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15572.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..1356601430471444af540e3220ddd90f7365355a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15572.dir/a.go @@ -0,0 +1,40 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T struct { +} + +func F() []T { + return []T{T{}} +} + +func Fi() []T { + return []T{{}} // element with implicit composite literal type +} + +func Fp() []*T { + return []*T{&T{}} +} + +func Fip() []*T { + return []*T{{}} // element with implicit composite literal type +} + +func Gp() map[int]*T { + return map[int]*T{0: &T{}} +} + +func Gip() map[int]*T { + return map[int]*T{0: {}} // element with implicit composite literal type +} + +func Hp() map[*T]int { + return map[*T]int{&T{}: 0} +} + +func Hip() map[*T]int { + return map[*T]int{{}: 0} // key with implicit composite literal type +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15572.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15572.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..355accc88057bd3719659339be6a281d45cd620b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15572.dir/b.go @@ -0,0 +1,27 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func F() { + a.F() + a.Fi() +} + +func Fp() { + a.Fp() + a.Fip() +} + +func Gp() { + a.Gp() + a.Gip() +} + +func Hp() { + a.Hp() + a.Hip() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call.go new file mode 100644 index 0000000000000000000000000000000000000000..48f90fd607f9e7331f9478fe196e6eb27d61dda8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call.go @@ -0,0 +1,7 @@ +//go:build !amd64 && !386 + +package main + +func jump() { + target() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call_386.s b/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call_386.s new file mode 100644 index 0000000000000000000000000000000000000000..751084c485ba99aa41d43e69bfa7895fe33dcaec --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call_386.s @@ -0,0 +1,8 @@ +#include "textflag.h" + +DATA ·pointer(SB)/4, $·target(SB) +GLOBL ·pointer(SB),RODATA,$4 + +TEXT ·jump(SB),NOSPLIT,$4 + CALL *·pointer(SB) + RET diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call_amd64.s b/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call_amd64.s new file mode 100644 index 0000000000000000000000000000000000000000..09fbe5dfc4abda7b480fcfd801ce8b105c9ce8cd --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call_amd64.s @@ -0,0 +1,8 @@ +#include "textflag.h" + +DATA ·pointer(SB)/8, $·target(SB) +GLOBL ·pointer(SB),RODATA,$8 + +TEXT ·jump(SB),NOSPLIT,$8 + CALL *·pointer(SB) + RET diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call_decl.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call_decl.go new file mode 100644 index 0000000000000000000000000000000000000000..cdca44a6542f80cb5fc591c63e85f5da704941a4 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/call_decl.go @@ -0,0 +1,5 @@ +//go:build amd64 || 386 + +package main + +func jump() diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..4855e31e5ed8f2d4255a5802c4b934e847aca15a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15609.dir/main.go @@ -0,0 +1,14 @@ +package main + +var called bool + +func target() { + called = true +} + +func main() { + jump() + if !called { + panic("target not called") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15646.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15646.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..842f19685fd282c91976dc84875dc726a58d4fc0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15646.dir/a.go @@ -0,0 +1,23 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T struct{} + +func (T) m() string { + return "m" +} + +func (*T) mp() string { + return "mp" +} + +func F() func(T) string { + return T.m // method expression +} + +func Fp() func(*T) string { + return (*T).mp // method expression +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15646.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15646.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..3d011ba30195b8ea7c0d6546108e7465946f3ee7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15646.dir/b.go @@ -0,0 +1,16 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" // import must succeed + +func main() { + if a.F()(a.T{}) != "m" { + panic(0) + } + if a.Fp()(nil) != "mp" { + panic(1) + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15838.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15838.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..15b7f1dcfa8230a9e30e8b0f5996c94fcec31750 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15838.dir/a.go @@ -0,0 +1,61 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F1() { +L: + goto L +} + +func F2() { +L: + for { + break L + } +} + +func F3() { +L: + for { + continue L + } +} + +func F4() { + switch { + case true: + fallthrough + default: + } +} + +type T struct{} + +func (T) M1() { +L: + goto L +} + +func (T) M2() { +L: + for { + break L + } +} + +func (T) M3() { +L: + for { + continue L + } +} + +func (T) M4() { + switch { + case true: + fallthrough + default: + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15838.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15838.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..9fd6efc33c9b8958576cdaa08961f55f3df3a087 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15838.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type T struct{ a.T } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15920.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15920.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..15f92355f730ff6035950c9db32dac0a9d561310 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15920.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Error error + +func F() Error { return nil } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue15920.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue15920.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..0a36c5c6ab80415c038d8e5cf25c03ef687d6da6 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue15920.dir/b.go @@ -0,0 +1,7 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import _ "./a" diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/a1.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/a1.go new file mode 100644 index 0000000000000000000000000000000000000000..497cccf3633f957192c07ae58e63792754bc31d9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/a1.go @@ -0,0 +1,7 @@ +package a + +type X string + +func NewX() X { + return "" +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/a2.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/a2.go new file mode 100644 index 0000000000000000000000000000000000000000..497cccf3633f957192c07ae58e63792754bc31d9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/a2.go @@ -0,0 +1,7 @@ +package a + +type X string + +func NewX() X { + return "" +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..be1bebf889e22ca6f78f7e068f37e9c19c5eb621 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/b.go @@ -0,0 +1,7 @@ +package b + +import "./a2" + +type T struct { + X a.X +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..b25fe5a9ddb52058e70da3e07217d98ec4bf85b0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue16133.dir/c.go @@ -0,0 +1,10 @@ +package p + +import ( + "./a1" + "./b" +) + +var _ = b.T{ + X: a.NewX(), // ERROR `cannot use "a1"\.NewX\(\)` +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue16317.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue16317.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..3a1b7e021d395d74791f00f066b262eff80fb42a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue16317.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import "unsafe" + +func ConstUnsafePointer() unsafe.Pointer { + return unsafe.Pointer(uintptr(0)) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue16317.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue16317.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..b81391866b254bb799deccc847d78193b3e733e1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue16317.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + _ = a.ConstUnsafePointer() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue16616.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue16616.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..0ffdbbe2681a7b058c69a4db326e19f8821cc7dd --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue16616.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type V struct{ i int } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue16616.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue16616.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..4f238b9a25838572ec7c03a9afc10805a706f30c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue16616.dir/b.go @@ -0,0 +1,14 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var V struct{ i int } + +var U struct { + a.V + j int +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue16616.dir/issue16616.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue16616.dir/issue16616.go new file mode 100644 index 0000000000000000000000000000000000000000..0bfadb8c7459ca3615d8d079a73f9748d2b93934 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue16616.dir/issue16616.go @@ -0,0 +1,26 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "reflect" + + _ "./a" + "./b" +) + +var V struct{ i int } + +func main() { + if got := reflect.ValueOf(b.V).Type().Field(0).PkgPath; got != "b" { + panic(`PkgPath=` + got + ` for first field of b.V, want "b"`) + } + if got := reflect.ValueOf(V).Type().Field(0).PkgPath; got != "main" { + panic(`PkgPath=` + got + ` for first field of V, want "main"`) + } + if got := reflect.ValueOf(b.U).Type().Field(0).PkgPath; got != "b" { + panic(`PkgPath=` + got + ` for first field of b.U, want "b"`) + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue18419.dir/other.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue18419.dir/other.go new file mode 100644 index 0000000000000000000000000000000000000000..27243d297bf517eb9a807e3fe46fca9fa649dc9b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue18419.dir/other.go @@ -0,0 +1,11 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package other + +type Exported struct { + Member int +} + +func (e *Exported) member() int { return 1 } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue18419.dir/test.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue18419.dir/test.go new file mode 100644 index 0000000000000000000000000000000000000000..da9639dd72e30d930f4dcf5fad37ee036afd2b56 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue18419.dir/test.go @@ -0,0 +1,15 @@ +// errorcheck -0 -m -l + +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./other" + +func InMyCode(e *other.Exported) { + e.member() // ERROR "e\.member undefined .cannot refer to unexported field or method other\.\(\*Exported\)\.member.|unexported field or method" +} + +func main() {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue18895.dir/p.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue18895.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..b721f357d28996f260e2ec90ce595d5b9f26005f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue18895.dir/p.go @@ -0,0 +1,14 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +func F() { // ERROR "can inline" + var v t + v.m() // ERROR "inlining call" +} + +type t int + +func (t) m() {} // ERROR "can inline" diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue18895.dir/q.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue18895.dir/q.go new file mode 100644 index 0000000000000000000000000000000000000000..1e0f2f9dfebfe87a4cd968e8cfbc2735262fb4a0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue18895.dir/q.go @@ -0,0 +1,11 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package q + +import "./p" + +func x() { // ERROR "can inline x" + p.F() // ERROR "inlining call to .*\.F" "inlining call to .*\.m" +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue18911.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue18911.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..d2221e761288a26d94b0104cbaa0bd4f9e07f538 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue18911.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var X interface{} = struct{ x int }{} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue18911.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue18911.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..da2388b88d1b14d711fa726aecf55bf8575ed1d7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue18911.dir/b.go @@ -0,0 +1,21 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" +import "strings" + +func main() { + defer func() { + p, ok := recover().(error) + if ok && strings.Contains(p.Error(), "different packages") { + return + } + panic(p) + }() + + // expected to fail and report two identical looking (but different) types + _ = a.X.(struct{ x int }) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19028.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19028.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..361251d7505df9188d33cd961632fcb513b37496 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19028.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package reflect + +import "reflect" + +type Type reflect.Type diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19028.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19028.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..e2ee7b8ca1df2da8a26d4ae028b516e0f1b6dfdf --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19028.dir/main.go @@ -0,0 +1,26 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "reflect" + fake "./a" // 2nd package with name "reflect" +) + +type T struct { + _ fake.Type +} + +func (T) f() {} +func (T) G() (_ int) { return } +func (T) H() (_, _ int) { return } + +func main() { + var x T + typ := reflect.TypeOf(x) + for i := 0; i < typ.NumMethod(); i++ { + _ = typ.Method(i) // must not crash + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19261.dir/p.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19261.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..1c44d8a33a3236f834dafa3c296f1a26e1898fc3 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19261.dir/p.go @@ -0,0 +1,24 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +func F() { // ERROR "can inline F" + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) +} + +func G() { + F() // ERROR "inlining call to F" + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19261.dir/q.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19261.dir/q.go new file mode 100644 index 0000000000000000000000000000000000000000..9f3550abc778da6a1e44688e03912f537984096d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19261.dir/q.go @@ -0,0 +1,17 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package q + +import "./p" + +func H() { + p.F() // ERROR "inlining call to p.F" + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) + print(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19467.dir/mysync.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19467.dir/mysync.go new file mode 100644 index 0000000000000000000000000000000000000000..d0e6fe098937d12f5f7197dc1ed5534f2df920c3 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19467.dir/mysync.go @@ -0,0 +1,21 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package mysync + +import "runtime" + +type WaitGroup struct { + Callers []uintptr +} + +func (wg *WaitGroup) Add(x int) { + wg.Callers = make([]uintptr, 32) + n := runtime.Callers(1, wg.Callers) + wg.Callers = wg.Callers[:n] +} + +func (wg *WaitGroup) Done() { + wg.Add(-1) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19467.dir/z.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19467.dir/z.go new file mode 100644 index 0000000000000000000000000000000000000000..cfbf34869cb7cd199974b44a2061ddecd0c98675 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19467.dir/z.go @@ -0,0 +1,35 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "log" + "runtime" + + "./mysync" +) + +func main() { + var wg mysync.WaitGroup + wg.Done() + ci := runtime.CallersFrames(wg.Callers) + frames := make([]runtime.Frame, 0, 4) + for { + frame, more := ci.Next() + frames = append(frames, frame) + if !more { + break + } + } + expecting := []string{ + "test/mysync.(*WaitGroup).Add", + "test/mysync.(*WaitGroup).Done", + } + for i := 0; i < 2; i++ { + if frames[i].Function != expecting[i] { + log.Fatalf("frame %d: got %s, want %s", i, frames[i].Function, expecting[i]) + } + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19507.dir/div_arm.s b/platform/dbops/binaries/go/go/test/fixedbugs/issue19507.dir/div_arm.s new file mode 100644 index 0000000000000000000000000000000000000000..0bc33e92ce297f457ee8e72bd367762f0d39832b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19507.dir/div_arm.s @@ -0,0 +1,12 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +TEXT ·f(SB),0,$0-8 + MOVW x+0(FP), R1 + MOVW x+4(FP), R2 + DIVU R1, R2 + DIV R1, R2 + MODU R1, R2 + MOD R1, R2 + RET diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19507.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19507.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..e4e72be87ded8d639369de0f8212229a1248f2a2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19507.dir/main.go @@ -0,0 +1,16 @@ +//go:build arm + +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Make sure we can compile assembly with DIV and MOD in it. +// They get rewritten to runtime calls on GOARM=5. + +package main + +func f(x, y uint32) + +func main() { + f(5, 8) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19548.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19548.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..3b7cd4b0e23bbaf118aadbd41097efa5c77a0f36 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19548.dir/a.go @@ -0,0 +1,26 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Mode uint + +func (m Mode) String() string { return "mode string" } +func (m *Mode) Addr() *Mode { return m } + +type Stringer interface { + String() string +} + +var global Stringer +var m Mode + +func init() { + // force compilation of the (*Mode).String() wrapper + global = &m +} + +func String() string { + return global.String() + Mode(0).String() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19548.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19548.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..e5e807f43de2318e0c6a09f1132a1bdec60e8c8c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19548.dir/b.go @@ -0,0 +1,24 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +type Value interface { + a.Stringer + Addr() *a.Mode +} + +var global a.Mode + +func f() int { + var v Value + v = &global + return int(v.String()[0]) +} + +func main() { + f() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19699.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19699.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..83be926fd8d6c6c663231509614c2093f445ff41 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19699.dir/a.go @@ -0,0 +1,12 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F() { +l1: + if false { + goto l1 + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19699.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19699.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..e727133bda0d7acf0b954ee09a22a93f09a21bc0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19699.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + a.F() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19764.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19764.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..64538e5bdf056ca6ce6de5d90961c17a9a49416e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19764.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T struct{ _ int } +func (t T) M() {} + +type I interface { M() } + +func F() { + var t I = &T{} + t.M() // call to the wrapper (*T).M +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue19764.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue19764.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..d39f125f37c75e259eb915448d4965175bfe87a1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue19764.dir/b.go @@ -0,0 +1,13 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + var x a.I = &a.T{} + x.M() // call to the wrapper (*T).M + a.F() // make sure a.F is not dead, which also calls (*T).M inside package a +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue20014.dir/a/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue20014.dir/a/a.go new file mode 100644 index 0000000000000000000000000000000000000000..1e66326276a40157352dff2ab300a8e637ea3cf7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue20014.dir/a/a.go @@ -0,0 +1,21 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T struct { + X int `go:"track"` + Y int `go:"track"` + Z int // untracked +} + +func (t *T) GetX() int { + return t.X +} +func (t *T) GetY() int { + return t.Y +} +func (t *T) GetZ() int { + return t.Z +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue20014.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue20014.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..098ac6b99a800650805803b609d70ce8bd63cb1d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue20014.dir/main.go @@ -0,0 +1,60 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "sort" + "strings" + + "issue20014.dir/a" +) + +func main() { + samePackage() + crossPackage() + + // Print fields registered with field tracking. + var fields []string + for _, line := range strings.Split(fieldTrackInfo, "\n") { + if line != "" { + fields = append(fields, strings.Split(line, "\t")[0]) + } + } + sort.Strings(fields) // for stable output, regardless of optimizations + for _, field := range fields { + println(field) + } +} + +type T struct { + X int `go:"track"` + Y int `go:"track"` + Z int // untracked +} + +func (t *T) GetX() int { + return t.X +} +func (t *T) GetY() int { + return t.Y +} +func (t *T) GetZ() int { + return t.Z +} + +func samePackage() { + var t T + println(t.GetX()) + println(t.GetZ()) +} + +func crossPackage() { + var t a.T + println(t.GetX()) + println(t.GetZ()) +} + +// This global variable is set by the linker using the -k option. +var fieldTrackInfo string diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue20682.dir/p.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue20682.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..fc37136d906bf26069d1fb212cd8dd7f0b60456c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue20682.dir/p.go @@ -0,0 +1,13 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import "strings" + +type T struct{} + +func (T) M() { + strings.HasPrefix("", "") +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue20682.dir/q.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue20682.dir/q.go new file mode 100644 index 0000000000000000000000000000000000000000..9554569de0d9ae05c6f11f0668ab93c488b1eea4 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue20682.dir/q.go @@ -0,0 +1,13 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package q + +import "./p" + +type T struct{} + +func (T) M() interface{} { + return &p.T{} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue20682.dir/r.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue20682.dir/r.go new file mode 100644 index 0000000000000000000000000000000000000000..73dfe1b3af2cab0ad473d181db19b344f173817a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue20682.dir/r.go @@ -0,0 +1,11 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package r + +import "./q" + +type T struct { + q.T +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue21120.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue21120.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..f2ee2526717fa863ccc0f3a959bb0c2210a77bfd --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue21120.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type S struct { + x int +} + +func V() interface{} { + return S{0} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue21120.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue21120.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..b00bd53a5d58ebacff622d1f80682a0b956fb559 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue21120.dir/b.go @@ -0,0 +1,29 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "reflect" + +type X int + +func F1() string { + type x X + + s := struct { + *x + }{nil} + v := reflect.TypeOf(s) + return v.Field(0).PkgPath +} + +func F2() string { + type y X + + s := struct { + *y + }{nil} + v := reflect.TypeOf(s) + return v.Field(0).PkgPath +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue21120.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue21120.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..1f1ec30e567200df91c8cd5339feb2aa03f22721 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue21120.dir/main.go @@ -0,0 +1,25 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "fmt" + "os" + + "./a" + "./b" +) + +func main() { + // Make sure the reflect information for a.S is in the executable. + _ = a.V() + + b1 := b.F1() + b2 := b.F2() + if b1 != b2 { + fmt.Printf("%q (from b.F1()) != %q (from b.F2())\n", b1, b2) + os.Exit(1) + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue22877.dir/p.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue22877.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..fc86cb9e1ebbf5cf68dddc7be491625f01128058 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue22877.dir/p.go @@ -0,0 +1,14 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +type S struct{ i int } +type SS = S + +func sub() + +func main() { + sub() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue22877.dir/p.s b/platform/dbops/binaries/go/go/test/fixedbugs/issue22877.dir/p.s new file mode 100644 index 0000000000000000000000000000000000000000..8b14358cdc90e672666a550e975b41c3ff7fd2ae --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue22877.dir/p.s @@ -0,0 +1,8 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +#include "go_asm.h" + +TEXT ·sub(SB), 0, $0 + RET diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue22941.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue22941.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..7a4ede438fabee33a59247a2a78cc6854165b619 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue22941.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package q + +type P int diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue22941.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue22941.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..87d59a6764a462ed51aedb25e730c763f0787659 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue22941.dir/b.go @@ -0,0 +1,30 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import q "./a" + +type T struct { + X *q.P +} + +func F(in, out *T) { + *out = *in + if in.X != nil { + in, out := &in.X, &out.X + if *in == nil { + *out = nil + } else { + *out = new(q.P) + **out = **in + } + } + return +} + +//go:noinline +func G(x, y *T) { + F(x, y) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue22941.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue22941.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..84666adf0df67324eca22169f903966d6c4f302c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue22941.dir/main.go @@ -0,0 +1,15 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import p "./b" + +var G int + +func main() { + if G == 101 { + p.G(nil, nil) + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue22962.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue22962.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..7257d7dfabb9c642857240e37d16bc9b0ec3bac4 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue22962.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F() { + if x := 0; false { + _ = x + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue22962.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue22962.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..4937ef577f37d5fb3b91908756c28d2400735681 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue22962.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var V = func() { a.F() } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue23179.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue23179.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..3d2816fc69d3c187c48518873278b8a3134e3788 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue23179.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Large struct { + x [256]int +} + +func F(x int, _ int, _ bool, _ Large) int { + return x +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue23179.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue23179.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..4bde498cd8713a4271e3fcfcc6099ff901be7af1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue23179.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func G(x int) int { + return a.F(x, 1, false, a.Large{}) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue23311.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue23311.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..fa4cf76b89a7a07faff2bdc5b0506625ca607344 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue23311.dir/main.go @@ -0,0 +1,14 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import _ "unsafe" // for linkname + +//go:linkname f runtime.GC +func f() + +func main() { + f() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue24693.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue24693.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..8a845ed86ca3975d10fceb768bca7c11cc7d3b16 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue24693.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T struct{} + +func (T) m() { println("FAIL") } + +type I interface{ m() } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue24693.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue24693.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..15ffa4f7ca55aed3b372fa31cc70930b89a56ea6 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue24693.dir/b.go @@ -0,0 +1,38 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type T struct{ a.T } + +func (T) m() { println("ok") } + +// The compiler used to not pay attention to package for non-exported +// methods when statically constructing itabs. The consequence of this +// was that the call to b.F1(b.T{}) in c.go would create an itab using +// a.T.m instead of b.T.m. +func F1(i interface{ m() }) { i.m() } + +// The interface method calling convention depends on interface method +// sets being sorted in the same order across compilation units. In +// the test case below, at the call to b.F2(b.T{}) in c.go, the +// interface method set is sorted as { a.m(); b.m() }. +// +// However, while compiling package b, its package path is set to "", +// so the code produced for F2 uses { b.m(); a.m() } as the method set +// order. So again, it ends up calling the wrong method. +// +// Also, this function is marked noinline because it's critical to the +// test that the interface method call happen in this compilation +// unit, and the itab construction happens in c.go. +// +//go:noinline +func F2(i interface { + m() + a.I // embeds m() from package a +}) { + i.m() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue24693.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue24693.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..8c6e27b140d0dbf25f322a375dc2afeb742e0738 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue24693.dir/c.go @@ -0,0 +1,12 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./b" + +func main() { + b.F1(b.T{}) + b.F2(b.T{}) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue24761.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue24761.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..1aa2317bd5b0830d5f7e939ee6df2991f60e1c4d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue24761.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T2 struct{} + +func (t *T2) M2(a, b float64) { + variadic(a, b) +} + +func variadic(points ...float64) { + println(points) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue24761.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue24761.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..dd3d543a0fc33eda6d6a20d7a363b3ae5f4b17b1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue24761.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type T1 struct { + *a.T2 +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue24801.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue24801.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..58e6240d8c165c097542dd082788a335d9802e05 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue24801.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type main int + +var X main diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue24801.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue24801.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..5c7db7b4d1f97fcecf66dbde2088edd768c3f7fd --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue24801.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + a.X = 1 +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue25055.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue25055.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..7fea195e2b021823be067ceb39adb0f732e00364 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue25055.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var A chan *interface{} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue25055.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue25055.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..01efeae3e640221ac425b9a8a8d89f2de3bc885b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue25055.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var _ = <-a.A diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue25984.dir/p.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue25984.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..306d6a489fd61d372c1c97b146fc940c3313f3da --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue25984.dir/p.go @@ -0,0 +1,15 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +type m struct { + link *m +} + +var head *m + +func F(m *int) bool { + return head != nil +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue25984.dir/q.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue25984.dir/q.go new file mode 100644 index 0000000000000000000000000000000000000000..64d25870b7856c33cb04d0cc55f775b79011c02e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue25984.dir/q.go @@ -0,0 +1,11 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package q + +import "./p" + +func G() { + p.F(nil) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue26341.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue26341.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..4fd23c796ba89570d00ffca55c8b0f3e5c27b5b8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue26341.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type k int + +func (k) F() {} + +type M map[k]int diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue26341.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue26341.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..30b8c25a5cf7c4526f6c64e0f43d653e6bab352d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue26341.dir/b.go @@ -0,0 +1,13 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func f() { + for k := range (a.M{}) { + k.F() + } +} diff --git "a/platform/dbops/binaries/go/go/test/fixedbugs/issue27836.dir/\303\236foo.go" "b/platform/dbops/binaries/go/go/test/fixedbugs/issue27836.dir/\303\236foo.go" new file mode 100644 index 0000000000000000000000000000000000000000..ea6be0f49fdcc5d537e7126e0e7a26e185939cc2 --- /dev/null +++ "b/platform/dbops/binaries/go/go/test/fixedbugs/issue27836.dir/\303\236foo.go" @@ -0,0 +1,17 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package Þfoo + +var ÞbarV int = 101 + +func Þbar(x int) int { + defer func() { ÞbarV += 3 }() + return Þblix(x) +} + +func Þblix(x int) int { + defer func() { ÞbarV += 9 }() + return ÞbarV + x +} diff --git "a/platform/dbops/binaries/go/go/test/fixedbugs/issue27836.dir/\303\236main.go" "b/platform/dbops/binaries/go/go/test/fixedbugs/issue27836.dir/\303\236main.go" new file mode 100644 index 0000000000000000000000000000000000000000..596c620d80a321cf8c4e174ef3692d5914eef01c --- /dev/null +++ "b/platform/dbops/binaries/go/go/test/fixedbugs/issue27836.dir/\303\236main.go" @@ -0,0 +1,17 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "fmt" + + "./Þfoo" + Þblix "./Þfoo" +) + +func main() { + fmt.Printf("Þfoo.Þbar(33) returns %v\n", Þfoo.Þbar(33)) + fmt.Printf("Þblix.Þbar(33) returns %v\n", Þblix.Þbar(33)) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue29610.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue29610.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..ccbe451bca9cbfe427d0ba523e7442dd30d6b7ea --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue29610.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I interface { + M(init bool) +} + +var V I + +func init() { + V = nil +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue29610.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue29610.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..c2016de3d05ca6ab7df42d7f20d45f5976004319 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue29610.dir/b.go @@ -0,0 +1,17 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type S struct { + a.I +} + +var V a.I + +func init() { + V = S{} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue29610.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue29610.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..29437bfa618638b5f740d63a0a5893e4dce4e1d1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue29610.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./b" + +var v b.S + +func main() {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue29612.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue29612.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..97415c445fa34792486e38d1b72594a3a5634a3e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue29612.dir/main.go @@ -0,0 +1,49 @@ +// run + +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Do not panic on conversion to anonymous interface, which +// is similar-looking interface types in different packages. + +package main + +import ( + "fmt" + + ssa1 "issue29612.dir/p1/ssa" + ssa2 "issue29612.dir/p2/ssa" +) + +func main() { + v1 := &ssa1.T{} + _ = v1 + + v2 := &ssa2.T{} + ssa2.Works(v2) + ssa2.Panics(v2) // This call must not panic + + swt(v1, 1) + swt(v2, 2) +} + +//go:noinline +func swt(i interface{}, want int) { + var got int + switch i.(type) { + case *ssa1.T: + got = 1 + case *ssa2.T: + got = 2 + + case int8, int16, int32, int64: + got = 3 + case uint8, uint16, uint32, uint64: + got = 4 + } + + if got != want { + panic(fmt.Sprintf("switch %v: got %d, want %d", i, got, want)) + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue29612.dir/p1/ssa/ssa.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue29612.dir/p1/ssa/ssa.go new file mode 100644 index 0000000000000000000000000000000000000000..8f6eb97f8f8494abcbaa4dc055e589225a9b14b6 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue29612.dir/p1/ssa/ssa.go @@ -0,0 +1,18 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +type T struct{} + +func (T) foo() {} + +type fooer interface { + foo() +} + +func Unused(v interface{}) { + v.(fooer).foo() + v.(interface{ foo() }).foo() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue29612.dir/p2/ssa/ssa.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue29612.dir/p2/ssa/ssa.go new file mode 100644 index 0000000000000000000000000000000000000000..df57314b8ce01d82d2dbe8ba1ab21b84a6211f05 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue29612.dir/p2/ssa/ssa.go @@ -0,0 +1,28 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ssa + +type T struct{} + +func (T) foo() {} + +type fooer interface { + foo() +} + +func Works(v interface{}) { + switch v.(type) { + case interface{}: + v.(fooer).foo() + } +} + +func Panics(v interface{}) { + switch v.(type) { + case interface{}: + v.(fooer).foo() + v.(interface{ foo() }).foo() + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue29919.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue29919.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..3b1dac40aab0ce3f0f07c47cd8d9e9491f80db6f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue29919.dir/a.go @@ -0,0 +1,75 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Make sure tracebacks from initialization code are reported correctly. + +package a + +import ( + "fmt" + "runtime" + "strings" +) + +var x = f() // line 15 + +func f() int { + var b [4096]byte + n := runtime.Stack(b[:], false) // line 19 + s := string(b[:n]) + var pcs [10]uintptr + n = runtime.Callers(1, pcs[:]) // line 22 + + // Check the Stack results. + if debug { + println(s) + } + if strings.Contains(s, "autogenerated") { + panic("autogenerated code in traceback") + } + if !strings.Contains(s, "a.go:15") { + panic("missing a.go:15") + } + if !strings.Contains(s, "a.go:19") { + panic("missing a.go:19") + } + if !strings.Contains(s, "a.init") { + panic("missing a.init") + } + + // Check the CallersFrames results. + if debug { + iter := runtime.CallersFrames(pcs[:n]) + for { + f, more := iter.Next() + fmt.Printf("%s %s:%d\n", f.Function, f.File, f.Line) + if !more { + break + } + } + } + iter := runtime.CallersFrames(pcs[:n]) + f, more := iter.Next() + if f.Function != "test/a.f" || !strings.HasSuffix(f.File, "a.go") || f.Line != 22 { + panic(fmt.Sprintf("bad f %v\n", f)) + } + if !more { + panic("traceback truncated after f") + } + f, more = iter.Next() + if f.Function != "test/a.init" || !strings.HasSuffix(f.File, "a.go") || f.Line != 15 { + panic(fmt.Sprintf("bad init %v\n", f)) + } + if !more { + panic("traceback truncated after init") + } + f, _ = iter.Next() + if !strings.HasPrefix(f.Function, "runtime.") { + panic("runtime. driver missing") + } + + return 0 +} + +const debug = false diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue29919.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue29919.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..3e99ca891b55dce6ab6f75646e22d674fcafe705 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue29919.dir/main.go @@ -0,0 +1,10 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import _ "./a" + +func main() { +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue30659.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue30659.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..3837e021c4817381de7aaa3a0e7f76987777fb09 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue30659.dir/a.go @@ -0,0 +1,19 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I interface { + I2 +} +type I2 interface { + M() +} +type S struct{} + +func (*S) M() {} + +func New() I { + return &S{} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue30659.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue30659.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..272e520582e8f02c88e564b8e118aae99964a495 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue30659.dir/b.go @@ -0,0 +1,13 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import ( + "./a" +) + +func B(p1 a.I, p2 a.I2) int { + return 42 +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue30862.dir/a/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue30862.dir/a/a.go new file mode 100644 index 0000000000000000000000000000000000000000..c23f4de1efd1a91bdf42ab66e1dd3afe551fdafc --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue30862.dir/a/a.go @@ -0,0 +1,15 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var pl int + +type NoitfStruct struct { + F int + G int +} + +//go:nointerface +func (t *NoitfStruct) NoInterfaceMethod() {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue30862.dir/b/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue30862.dir/b/b.go new file mode 100644 index 0000000000000000000000000000000000000000..230221d5036248af1c1c80415a675cc55f8ee16e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue30862.dir/b/b.go @@ -0,0 +1,29 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "issue30862.dir/a" + +type EmbedImported struct { + a.NoitfStruct +} + +func Test() []string { + bad := []string{} + x := interface{}(new(a.NoitfStruct)) + if _, ok := x.(interface { + NoInterfaceMethod() + }); ok { + bad = append(bad, "fail 1") + } + + x = interface{}(new(EmbedImported)) + if _, ok := x.(interface { + NoInterfaceMethod() + }); ok { + bad = append(bad, "fail 2") + } + return bad +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue30862.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue30862.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..1489c5a34255fbb01b93700bd1150d90de93920a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue30862.dir/main.go @@ -0,0 +1,28 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "fmt" + "os" + + "issue30862.dir/b" +) + +// Test case for issue 30862. + +// Be aware that unless GOEXPERIMENT=fieldtrack is set when building +// the compiler, this test will fail if executed with a regular GC +// compiler. + +func main() { + bad := b.Test() + if len(bad) > 0 { + for _, s := range bad { + fmt.Fprintf(os.Stderr, "test failed: %s\n", s) + } + os.Exit(1) + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue30907.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue30907.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..e1a5c0cc3b6fbea2d4d8fc9835ce7ee3b8c4bb33 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue30907.dir/a.go @@ -0,0 +1,19 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type UUID string + +func New() UUID { + return Must(NewRandom()) +} + +func NewRandom() (UUID, error) { + return "", nil +} + +func Must(uuid UUID, err error) UUID { + return uuid +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue30907.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue30907.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..f4f5fc4fdd12714522a02d41543bdd7e08aaf6df --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue30907.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import "./a" + +func F() { + a.New() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue30908.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue30908.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..2f0abc3780c2a11fe8d0f560f9b7dac8ba229ecc --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue30908.dir/a.go @@ -0,0 +1,32 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import ( + "errors" + "strings" +) + +var G interface{} + +func Unmarshal(data []byte, o interface{}) error { + G = o + v, ok := o.(*map[string]interface{}) + if !ok { + return errors.New("eek") + } + vals := make(map[string]interface{}) + s := string(data) + items := strings.Split(s, " ") + var err error + for _, item := range items { + vals[item] = s + if item == "error" { + err = errors.New("ouch") + } + } + *v = vals + return err +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue30908.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue30908.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..2f543985b4fc39ccd24eba19ffd7ea0a1252496f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue30908.dir/b.go @@ -0,0 +1,35 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import ( + "io/ioutil" + + "./a" +) + +var G int + +// An inlinable function. To trigger the bug in question this needs +// to be inlined here within the package and also inlined into some +// other package that imports it. +func ReadValues(data []byte) (vals map[string]interface{}, err error) { + err = a.Unmarshal(data, &vals) + if len(vals) == 0 { + vals = map[string]interface{}{} + } + return +} + +// A local call to the function above, which triggers the "move to heap" +// of the output param. +func CallReadValues(filename string) (map[string]interface{}, error) { + defer func() { G++ }() + data, err := ioutil.ReadFile(filename) + if err != nil { + return map[string]interface{}{}, err + } + return ReadValues(data) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue30908.dir/m.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue30908.dir/m.go new file mode 100644 index 0000000000000000000000000000000000000000..a170a6eed6fca31f4253f96ca5d29c8a725ab12d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue30908.dir/m.go @@ -0,0 +1,21 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "os" + + "./b" +) + +func main() { + seed := "some things are better" + bsl := []byte(seed) + b.CallReadValues("/dev/null") + vals, err := b.ReadValues(bsl) + if vals["better"] != seed || err != nil { + os.Exit(1) + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31053.dir/f1.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31053.dir/f1.go new file mode 100644 index 0000000000000000000000000000000000000000..610f393818872d07b48650c0f7d6825033b36e30 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31053.dir/f1.go @@ -0,0 +1,18 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package f1 + +type Foo struct { + doneChan chan bool + Name string + fOO int + hook func() +} + +func (f *Foo) Exported() { +} + +func (f *Foo) unexported() { +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31053.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31053.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..3bc75d17d2d80b660d00fda696a2516333478bc8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31053.dir/main.go @@ -0,0 +1,42 @@ +// errorcheck + +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import "./f1" + +func main() { + f := f1.Foo{ + doneChan: nil, // ERROR "cannot refer to unexported field 'doneChan' in struct literal of type f1.Foo" + DoneChan: nil, // ERROR "unknown field 'DoneChan' in struct literal of type f1.Foo" + Name: "hey", + name: "there", // ERROR "unknown field 'name' in struct literal of type f1.Foo .but does have Name." + noSuchPrivate: true, // ERROR "unknown field 'noSuchPrivate' in struct literal of type f1.Foo" + NoSuchPublic: true, // ERROR "unknown field 'NoSuchPublic' in struct literal of type f1.Foo" + foo: true, // ERROR "unknown field 'foo' in struct literal of type f1.Foo" + hook: func() {}, // ERROR "cannot refer to unexported field 'hook' in struct literal of type f1.Foo" + unexported: func() {}, // ERROR "unknown field 'unexported' in struct literal of type f1.Foo" + Exported: func() {}, // ERROR "unknown field 'Exported' in struct literal of type f1.Foo" + } + f.doneChan = nil // ERROR "f.doneChan undefined .cannot refer to unexported field or method doneChan." + f.DoneChan = nil // ERROR "f.DoneChan undefined .type f1.Foo has no field or method DoneChan." + f.name = nil // ERROR "f.name undefined .type f1.Foo has no field or method name, but does have Name." + + _ = f.doneChan // ERROR "f.doneChan undefined .cannot refer to unexported field or method doneChan." + _ = f.DoneChan // ERROR "f.DoneChan undefined .type f1.Foo has no field or method DoneChan." + _ = f.Name + _ = f.name // ERROR "f.name undefined .type f1.Foo has no field or method name, but does have Name." + _ = f.noSuchPrivate // ERROR "f.noSuchPrivate undefined .type f1.Foo has no field or method noSuchPrivate." + _ = f.NoSuchPublic // ERROR "f.NoSuchPublic undefined .type f1.Foo has no field or method NoSuchPublic." + _ = f.foo // ERROR "f.foo undefined .type f1.Foo has no field or method foo." + _ = f.Exported + _ = f.exported // ERROR "f.exported undefined .type f1.Foo has no field or method exported, but does have Exported." + _ = f.Unexported // ERROR "f.Unexported undefined .type f1.Foo has no field or method Unexported." + _ = f.unexported // ERROR "f.unexported undefined .cannot refer to unexported field or method unexported." + f.unexported = 10 // ERROR "f.unexported undefined .cannot refer to unexported field or method unexported." + f.unexported() // ERROR "f.unexported undefined .cannot refer to unexported field or method unexported." + _ = f.hook // ERROR "f.hook undefined .cannot refer to unexported field or method hook." +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..fa431502c087b88f118646f84cf5904fa8edeeaf --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import "fmt" + +type IndexController struct{} + +func (this *IndexController) Index(m *string) { + fmt.Println(m) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..9bfc0ff92eabf7c8fc84b5d2eb3b95f216813edd --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/b.go @@ -0,0 +1,13 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "fmt" + +type IndexController struct{} + +func (this *IndexController) Index(m *string) { + fmt.Println(m) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..98ecf6117720c6d115ccbe2d75ea3a23aa74df8a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/c.go @@ -0,0 +1,26 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +import ( + "./a" + "./b" +) + +type HandlerFunc func(*string) + +func RouterInit() { + //home API + homeIndex := &a.IndexController{} + GET("/home/index/index", homeIndex.Index) + //admin API + adminIndex := &b.IndexController{} + GET("/admin/index/index", adminIndex.Index) + return +} + +func GET(path string, handlers ...HandlerFunc) { + return +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..6c0c9ce5d2c380029ab9cedd19c947069ee88d9e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31252.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./c" + +func main() { + c.RouterInit() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..e57e0d5fb7dd87d70de60e769b54e7ec2276822f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func init() { + println("a") +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..990e68209b9903522f324bad2cdde5c270e3c5ce --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +func init() { + println("b") +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..e53529aa591271e84a714e128770eabdef8b92e8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/c.go @@ -0,0 +1,9 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +func init() { + println("c") +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..bbc58369d3fcd6b640c682a2ac0ea679125ade5b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31636.dir/main.go @@ -0,0 +1,20 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +// We want the initializers of these packages to occur in source code +// order. See issue 31636. This is the behavior up to and including +// 1.13. For 1.14, we will move to a variant of lexicographic ordering +// which will require a change to the test output of this test. +import ( + _ "./c" + + _ "./b" + + _ "./a" +) + +func main() { +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31637.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31637.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..71f392697c4967a2d384c56e0667636b109b9782 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31637.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type dO struct { + x int +} + +type EDO struct{} + +func (EDO) Apply(*dO) {} + +var X EDO diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31637.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31637.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..ce83b000df8376167409ad531ff82456db1d10b5 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31637.dir/b.go @@ -0,0 +1,19 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +type No struct { + a.EDO +} + +func X() No { + return No{} +} + +func main() { + X() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31959.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31959.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..6c7ffa38c12b8268c54e371c3860313a847938cc --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31959.dir/a.go @@ -0,0 +1,12 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T struct{} + +func F() { + type T = int + println(T(0)) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue31959.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue31959.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..6604e3abbdaa4c9d44ace2cc8a691bb15bef7f71 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue31959.dir/main.go @@ -0,0 +1,21 @@ +// run + +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Check import package contains type alias in function +// with the same name with an export type not panic + +package main + +import ( + "fmt" + + "./a" +) + +func main() { + fmt.Println(a.T{}) + a.F() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue32595.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue32595.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..8342dd5cbcff84c39e6fcdb142c6ddf94bdcd122 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue32595.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func A() { + defer func() {}() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue32595.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue32595.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..9a13a575a87ff4b07da757e8b6e3ecb4e2aa3a34 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue32595.dir/b.go @@ -0,0 +1,15 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "reflect" + +func B() { + t1 := reflect.TypeOf([0]byte{}) + t2 := reflect.TypeOf(new([0]byte)).Elem() + if t1 != t2 { + panic("[0]byte types do not match") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue32595.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue32595.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..979efe3a910fec6d8e8b4778605dbdaaad8d3010 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue32595.dir/main.go @@ -0,0 +1,15 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "./b" +) + +func main() { + a.A() + b.B() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue32778.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue32778.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..1e6ac012334c507be36315a7b03cbeba47c42696 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue32778.dir/a.go @@ -0,0 +1,18 @@ +// Copyright 2019 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file. + +package a + +import "strings" + +type Name string + +type FullName string + +func (n FullName) Name() Name { + if i := strings.LastIndexByte(string(n), '.'); i >= 0 { + return Name(n[i+1:]) + } + return Name(n) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue32778.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue32778.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..a0ee398d268c3ff7475652e68362fba66953b9b1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue32778.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file. + +package b + +import "./a" + +func Expo(fn a.FullName) a.Name { + return fn.Name() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..54ed7713f6432a729c6e72005e0025197d518189 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T struct { x int } + +func F() interface{} { + return [2]T{} +} + +func P() interface{} { + return &[2]T{} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..932d7b0afa53f05266e65476ce1f92e744a870d2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/b.go @@ -0,0 +1,15 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func F() interface{} { + return a.F() +} + +func P() interface{} { + return a.P() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..5f31c7ff028b6dc0d05af923e4e5d58d1edb419b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/c.go @@ -0,0 +1,17 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +import "./b" + +func F() interface{} { + go func(){}() // make it non-inlineable + return b.F() +} + +func P() interface{} { + go func(){}() // make it non-inlineable + return b.P() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..673c6ab3e0f894b886f459f1cd10ba38e52688bd --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue32901.dir/main.go @@ -0,0 +1,21 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "reflect" + + "./c" +) + +func main() { + x := c.F() + p := c.P() + t := reflect.PointerTo(reflect.TypeOf(x)) + tp := reflect.TypeOf(p) + if t != tp { + panic("FAIL") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue32922.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue32922.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..b13c4b404d13bb2fa3eae332000f9d963ee5f524 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue32922.dir/a.go @@ -0,0 +1,18 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func A() int { + return p("count") +} + +func p(which string, args ...string) int { + switch which { + case "count", "something": + return 1 + default: + return 2 + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue32922.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue32922.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..fdaf42d3dff4ebd35bd664e348956f5f3349759c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue32922.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func B() int { + return 99 + a.A() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..056be88aeac9c7e9817e09c9ccfd69e05c74ae5f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type G interface { + UsesEmpty(p interface{}) int +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..a8f5cc0650551d98a762e1751d91f24a2e719fd7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/b.go @@ -0,0 +1,24 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type Service uint64 +type ServiceDesc struct { + X int + uc +} + +type uc interface { + f() a.G +} + +var q int + +func RS(svcd *ServiceDesc, server interface{}, qq uint8) *Service { + defer func() { q += int(qq) }() + return nil +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..74425dfaae10fd77860b6ecc10d7e25ac7519af8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/c.go @@ -0,0 +1,19 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +import ( + "./a" + "./b" +) + +type BI interface { + Something(s int64) int64 + Another(pxp a.G) int32 +} + +func BRS(sd *b.ServiceDesc, server BI, xyz int) *b.Service { + return b.RS(sd, server, 7) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/d.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/d.go new file mode 100644 index 0000000000000000000000000000000000000000..c70c6647e8ccb4ae08d6dd4581548694549113f9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33013.dir/d.go @@ -0,0 +1,16 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package d + +import ( + "./b" + "./c" +) + +var GA b.Service + +func C() { + c.BRS(nil, nil, 22) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33020.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33020.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..948f4fdf3b2af3fb006f47862ede5a8b8da90775 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33020.dir/a.go @@ -0,0 +1,16 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var G1 int +var G2 int +var G3 int +var G4 int +var G5 int +var G6 int +var G7 int +var G8 int +var G9 int +var G10 int diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33020.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33020.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..14a2a87041e0d869ac814210cdc3f41e5eff5e67 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33020.dir/b.go @@ -0,0 +1,22 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var N n + +type n struct{} + +func (r n) M1() int { return a.G1 } +func (r n) M2() int { return a.G2 } +func (r n) M3() int { return a.G3 } +func (r n) M4() int { return a.G4 } +func (r n) M5() int { return a.G5 } +func (r n) M6() int { return a.G6 } +func (r n) M7() int { return a.G7 } +func (r n) M8() int { return a.G8 } +func (r n) M9() int { return a.G9 } +func (r n) M10() int { return a.G10 } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33020a.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33020a.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..91764982dc456a26f42ffd042c8945ae7881deed --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33020a.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type FArg func(args []string) error + +type Command struct { + Name string + Arg1 FArg + Arg2 func(args []string) error +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33020a.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33020a.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..5b0f9d86d72acd9cb40ae5d3d8ba2606df8c0f40 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33020a.dir/b.go @@ -0,0 +1,14 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +var Cmd = &a.Command{ + Name: "test", +} + +func main() { +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33158.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33158.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..28714e0c991e8936bea5d1dcf09b697ed71690fb --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33158.dir/a.go @@ -0,0 +1,25 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var GS string + +func M() string { + if s := getname("Fred"); s != "" { + return s + } + if s := getname("Joe"); s != "" { + return s + } + + return string("Alex") +} + +// getname can be any function returning a string, just has to be non-inlinable. + +//go:noinline +func getname(s string) string { + return s + "foo" +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33158.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33158.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..4174b417ec174f9cbde3457b6fbf679a09300c0e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33158.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func B() string { + return a.M() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33219.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33219.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..2d96301f9cfedbf07d92159b18e2ba0a6436c525 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33219.dir/a.go @@ -0,0 +1,17 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type A interface { + M(i interface{}) interface{} +} + +var a1 A +var a2 A + +func V(p A, k, v interface{}) A { + defer func() { a1, a2 = a2, a1 }() + return a1 +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33219.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33219.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..2a8f518bef5c3b00af88386961851ee6617e7f52 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33219.dir/b.go @@ -0,0 +1,25 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type Service uint64 + +var q *Service +var r *Service + +type f struct{} + +var fk f + +func No(s a.A, qq uint8) *Service { + defer func() { q, r = r, q }() + return q +} + +func Yes(s a.A, p *uint64) a.A { + return a.V(s, fk, p) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33219.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33219.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..a78fe69a9e948d2bcbcc78aab948b4f45019a794 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33219.dir/c.go @@ -0,0 +1,20 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +import ( + "./a" + "./b" +) + +type BI interface { + Another(pxp a.A) int32 +} + +//go:noinline +func BRS(sd a.A, xyz int) *b.Service { + x := b.Yes(sd, nil) + return b.No(x, 1) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33739.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33739.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..7eb5b927c498872039e41bdd0a9588e48a5fd0e1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33739.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F() func() { + return f +} + +func f() {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33739.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33739.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..d22fe34d668d97c1f69c1359a05dc8cb911ff2c7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33739.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + a.F()() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33866.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33866.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..9c782c5eedf37c331a0b307fc43f22d5b3ac8fcf --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33866.dir/a.go @@ -0,0 +1,18 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Builder struct { + x int +} + +func (tb Builder) Build() (out struct { + x interface{} + s string +}) { + out.x = nil + out.s = "hello!" + return +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue33866.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue33866.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..aa2a32271c738a922412591472a8ae9308a93c71 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue33866.dir/b.go @@ -0,0 +1,15 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type ( + ABuilder = a.Builder +) + +func Bfunc() ABuilder { + return ABuilder{} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue34503.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue34503.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..2c149135ad6d4bffb5116a2d27c90489d7b1e056 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue34503.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import "unsafe" + +type HookFunc func(x uint64) + +var HookV unsafe.Pointer + +func Hook(x uint64) { + (*(*HookFunc)(HookV))(x) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue34503.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue34503.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..7ea02511b06e78d721781297352e6dfc99fd120a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue34503.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func Bfunc() { + a.Hook(101) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue34577.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue34577.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..b6af5556b3c832d874471ff8261239cee65438e3 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue34577.dir/a.go @@ -0,0 +1,27 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type A struct { + x int +} + +type AI interface { + bar() +} + +type AC int + +func (ab AC) bar() { +} + +const ( + ACC = AC(101) +) + +//go:noinline +func W(a A, k, v interface{}) A { + return A{3} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue34577.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue34577.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..c61d7da78209709f7464924e49fa8b692dadc7bb --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue34577.dir/b.go @@ -0,0 +1,23 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type B struct { + s string +} + +func (b B) Func(x a.A) a.A { + return a.W(x, k, b) +} + +type ktype int + +const k ktype = 0 + +func Func2() a.AI { + return a.ACC +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue3552.dir/one.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue3552.dir/one.go new file mode 100644 index 0000000000000000000000000000000000000000..e594db7478bbf32af3fe9eef0232cdda23545d57 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue3552.dir/one.go @@ -0,0 +1,28 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package one + +// Issue 3552 + +type T struct { int } + +func (t T) F() int { return t.int } + +type U struct { int int } + +func (u U) F() int { return u.int } + +type lint int + +type V struct { lint } + +func (v V) F() int { return int(v.lint) } + +type W struct { lint lint } + +func (w W) F() int { return int(w.lint) } + + + diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue3552.dir/two.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue3552.dir/two.go new file mode 100644 index 0000000000000000000000000000000000000000..2f330bfdf3b4bbe43bb9f2284ebd03913861ac88 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue3552.dir/two.go @@ -0,0 +1,22 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Use the functions in one.go so that the inlined +// forms get type-checked. + +package two + +import "./one" + +func use() { + var t one.T + var u one.U + var v one.V + var w one.W + + _ = t.F() + _ = u.F() + _ = v.F() + _ = w.F() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue35586.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue35586.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..f509b25473bfc9a7b324143f2d9e1983bda123ec --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue35586.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func D(_ string, _ int) (uint64, string) { + return 101, "bad" +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue35586.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue35586.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..e0abb99fd41cb91d10666e9e663107e92435519b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue35586.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func F(addr string) (uint64, string) { + return a.D(addr, 32) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue35739.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue35739.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..b79503e99615116d64831b2804df6e84c8aad85b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue35739.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type myError string + +func (e myError) Error() string { return string(e) } + +const myErrorVal myError = "error" + +func IsMyError(err error) bool { + return err == error(myErrorVal) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue35739.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue35739.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..8d22aac8d6b058b186e04da35aa7ae1f259b70c8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue35739.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func F(err error) bool { + return a.IsMyError(err) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue36085.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue36085.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..07cabcd2cceeaa299c1cc3729464e20544a9d849 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue36085.dir/a.go @@ -0,0 +1,3 @@ +package a + +type W = map[int32]interface{} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue36085.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue36085.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..0ebfe9fb6107d24e32c7c04d45df85c29901499c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue36085.dir/b.go @@ -0,0 +1,8 @@ +package main + +import "./a" + +var w a.W +var X interface{} = &w + +func main() {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue37513.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue37513.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..75106521b6b9e995a624e4fbc2a831e325c5b849 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue37513.dir/main.go @@ -0,0 +1,27 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "bytes" + "fmt" + "os" + "os/exec" +) + +func main() { + if len(os.Args) > 1 { + // Generate a SIGILL. + sigill() + return + } + // Run ourselves with an extra argument. That process should SIGILL. + out, _ := exec.Command(os.Args[0], "foo").CombinedOutput() + want := "instruction bytes: 0xf 0xb 0xc3" + if !bytes.Contains(out, []byte(want)) { + fmt.Printf("got:\n%s\nwant:\n%s\n", string(out), want) + } +} +func sigill() diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue37513.dir/sigill_amd64.s b/platform/dbops/binaries/go/go/test/fixedbugs/issue37513.dir/sigill_amd64.s new file mode 100644 index 0000000000000000000000000000000000000000..43260c21aed64afaf9c137bd1ae3ed23c15181ba --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue37513.dir/sigill_amd64.s @@ -0,0 +1,7 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +TEXT ·sigill(SB),0,$0-0 + UD2 // generates a SIGILL + RET diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue37837.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue37837.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..49d830ffbc7c66feae7b65904347d30e6607ea52 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue37837.dir/a.go @@ -0,0 +1,33 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F(i interface{}) int { // ERROR "can inline F" "i does not escape" + switch i.(type) { + case nil: + return 0 + case int: + return 1 + case float64: + return 2 + default: + return 3 + } +} + +func G(i interface{}) interface{} { // ERROR "can inline G" "leaking param: i" + switch i := i.(type) { + case nil: // ERROR "moved to heap: i" + return &i + case int: // ERROR "moved to heap: i" + return &i + case float64: // ERROR "moved to heap: i" + return &i + case string, []byte: // ERROR "moved to heap: i" + return &i + default: // ERROR "moved to heap: i" + return &i + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue37837.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue37837.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..461f5c7a553e8fdc6e8ee90ccd0ab357f79cab46 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue37837.dir/b.go @@ -0,0 +1,32 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + // Test that inlined type switches without short variable + // declarations work correctly. + check(0, a.F(nil)) // ERROR "inlining call to a.F" + check(1, a.F(0)) // ERROR "inlining call to a.F" "does not escape" + check(2, a.F(0.0)) // ERROR "inlining call to a.F" "does not escape" + check(3, a.F("")) // ERROR "inlining call to a.F" "does not escape" + + // Test that inlined type switches with short variable + // declarations work correctly. + _ = a.G(nil).(*interface{}) // ERROR "inlining call to a.G" + _ = a.G(1).(*int) // ERROR "inlining call to a.G" "does not escape" + _ = a.G(2.0).(*float64) // ERROR "inlining call to a.G" "does not escape" + _ = (*a.G("").(*interface{})).(string) // ERROR "inlining call to a.G" "does not escape" + _ = (*a.G(([]byte)(nil)).(*interface{})).([]byte) // ERROR "inlining call to a.G" "does not escape" + _ = (*a.G(true).(*interface{})).(bool) // ERROR "inlining call to a.G" "does not escape" +} + +//go:noinline +func check(want, got int) { + if want != got { + println("want", want, "but got", got) + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue40252.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue40252.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..5519e9331aa0c6103444bfe8f30d03df07e5a134 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue40252.dir/a.go @@ -0,0 +1,14 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I interface { + Func() +} + +func Call() { + f := I.Func + f(nil) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue40252.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue40252.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..93f5b706242ef723f7362d7eea2b9913ba6d25b6 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue40252.dir/main.go @@ -0,0 +1,16 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + defer func() { + if recover() == nil { + panic("expected nil pointer dereference") + } + }() + a.Call() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue42284.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue42284.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..ccf54fad54a03cf2ef7d90e3aa7a2997a5a4b941 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue42284.dir/a.go @@ -0,0 +1,30 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I interface{ M() } +type T int + +func (T) M() {} // ERROR "can inline T.M" + +func E() I { // ERROR "can inline E" + return T(0) // ERROR "T\(0\) escapes to heap" +} + +func F(i I) I { // ERROR "can inline F" "leaking param: i to result ~r0 level=0" + i = nil + return i +} + +func g() { + h := E() // ERROR "inlining call to E" "T\(0\) does not escape" + h.M() // ERROR "devirtualizing h.M to T" "inlining call to T.M" + + // BAD: T(0) could be stack allocated. + i := F(T(0)) // ERROR "inlining call to F" "T\(0\) escapes to heap" + + // Testing that we do NOT devirtualize here: + i.M() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue42284.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue42284.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..559de59184460a5fb7d5c236782620fdf9c73327 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue42284.dir/b.go @@ -0,0 +1,18 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func g() { + h := a.E() // ERROR "inlining call to a.E" "T\(0\) does not escape" + h.M() // ERROR "devirtualizing h.M to a.T" "inlining call to a.T.M" + + // BAD: T(0) could be stack allocated. + i := a.F(a.T(0)) // ERROR "inlining call to a.F" "a.T\(0\) escapes to heap" + + // Testing that we do NOT devirtualize here: + i.M() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue42401.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue42401.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..75f8e7f91fc35f6efb964a00874d3216489c8068 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue42401.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var s string + +func init() { s = "a" } + +func Get() string { return s } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue42401.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue42401.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..fc675d82301881e94934c3b72f47ede071844f57 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue42401.dir/b.go @@ -0,0 +1,25 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + _ "unsafe" + + "./a" +) + +//go:linkname s test/a.s +var s string + +func main() { + if a.Get() != "a" { + panic("FAIL") + } + + s = "b" + if a.Get() != "b" { + panic("FAIL") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4252.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4252.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..a587e28da7959a79a7da2333873548e916b5de7e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4252.dir/a.go @@ -0,0 +1,35 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// A package that redeclares common builtin names. +package a + +var true = 0 == 1 +var false = 0 == 0 +var nil = 1 + +const append = 42 + +type error bool +type int interface{} + +func len(interface{}) int32 { return 42 } + +func Test() { + var array [append]int + if true { + panic("unexpected builtin true instead of redeclared one") + } + if !false { + panic("unexpected builtin false instead of redeclared one") + } + if len(array) != 42 { + println(len(array)) + panic("unexpected call of builtin len") + } +} + +func InlinedFakeTrue() error { return error(true) } +func InlinedFakeFalse() error { return error(false) } +func InlinedFakeNil() int { return nil } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4252.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4252.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..02d9836e98da207fc2e35bdbed3658193fd6ef9d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4252.dir/main.go @@ -0,0 +1,20 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + if a.InlinedFakeTrue() { + panic("returned true was the real one") + } + if !a.InlinedFakeFalse() { + panic("returned false was the real one") + } + if a.InlinedFakeNil() == nil { + panic("returned nil was the real one") + } + a.Test() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue43164.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue43164.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..fa10e85061225433bd28ca229be1bd50924cfd85 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue43164.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import . "strings" + +var _ = Index // use strings + +type t struct{ Index int } + +var _ = t{Index: 0} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue43164.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue43164.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..b025927a059a8eb39e9f53ef1314d1e93b9f623d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue43164.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import . "bytes" + +var _ = Index // use bytes + +var _ = t{Index: 0} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/p1.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/p1.go new file mode 100644 index 0000000000000000000000000000000000000000..ab214befb4b82845b816c657e0581b416e0cb931 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/p1.go @@ -0,0 +1,12 @@ +package p1 + +type O map[string]map[string]string + +func (opts O) RemoveOption(sect, opt string) bool { + if _, ok := opts[sect]; !ok { + return false + } + _, ok := opts[sect][opt] + delete(opts[sect], opt) + return ok +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/p2.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/p2.go new file mode 100644 index 0000000000000000000000000000000000000000..8e86266dd8d4adb2f8aec9218b26c7595cfcabec --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/p2.go @@ -0,0 +1,5 @@ +package p2 + +import "./p1" + +func NewO() p1.O { return nil } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/q1.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/q1.go new file mode 100644 index 0000000000000000000000000000000000000000..f118eb09252a48c51942b1f602d637620afd1a12 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/q1.go @@ -0,0 +1,8 @@ +package q1 + +func Deref(typ interface{}) interface{} { + if typ, ok := typ.(*int); ok { + return *typ + } + return typ +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/q2.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/q2.go new file mode 100644 index 0000000000000000000000000000000000000000..075e2b21e7a438ca7a7eccfedf1ad06e0275c1d8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/q2.go @@ -0,0 +1,11 @@ +package main + +import "./q1" + +func main() { + x := 1 + y := q1.Deref(&x) + if y != 1 { + panic("y != 1") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/z.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/z.go new file mode 100644 index 0000000000000000000000000000000000000000..9b222e8b40276754272f39fadaf75b0f0d30d77b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4326.dir/z.go @@ -0,0 +1,7 @@ +package z + +import "./p2" + +func main() { + p2.NewO().RemoveOption("hello", "world") +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue43479.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue43479.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..ed3e6a5d9b67ee317f5c52352599c787983c274f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue43479.dir/a.go @@ -0,0 +1,27 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Here struct{ stuff int } +type Info struct{ Dir string } + +func New() Here { return Here{} } +func (h Here) Dir(p string) (Info, error) + +type I interface{ M(x string) } + +type T = struct { + Here + I +} + +var X T + +var A = (*T).Dir +var B = T.Dir +var C = X.Dir +var D = (*T).M +var E = T.M +var F = X.M diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue43479.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue43479.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..02d16909cc527cc8f166d2b0086b16804553ef52 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue43479.dir/b.go @@ -0,0 +1,38 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var Here = a.New() +var Dir = Here.Dir + +type T = struct { + a.Here + a.I +} + +var X T + +// Test exporting the type of method values for anonymous structs with +// promoted methods. +var A = a.A +var B = a.B +var C = a.C +var D = a.D +var E = a.E +var F = a.F +var G = (*a.T).Dir +var H = a.T.Dir +var I = a.X.Dir +var J = (*a.T).M +var K = a.T.M +var L = a.X.M +var M = (*T).Dir +var N = T.Dir +var O = X.Dir +var P = (*T).M +var Q = T.M +var R = X.M diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue43551.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue43551.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..d890dd0c651caa1cdecd073de50512fd09b72575 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue43551.dir/a.go @@ -0,0 +1,13 @@ +package a + +type S struct { + a Key +} + +func (s S) A() Key { + return s.a +} + +type Key struct { + key int64 +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue43551.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue43551.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..ba062bf14cf12b9d613c224ea4cb636f6c7196d8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue43551.dir/b.go @@ -0,0 +1,14 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type S a.S +type Key a.Key + +func (s S) A() Key { + return Key(a.S(s).A()) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue43633.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue43633.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..946a37e87ef1a64d31943293e1d41f8e9b550f36 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue43633.dir/a.go @@ -0,0 +1,28 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F() bool { + { + x := false + _ = x + } + if false { + _ = func(x bool) {} + } + x := true + return x +} + +func G() func() bool { + x := true + return func() bool { + { + x := false + _ = x + } + return x + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue43633.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue43633.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..320e00013c3130e69fb271e859cc9cbb37e93dad --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue43633.dir/main.go @@ -0,0 +1,18 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +var g = a.G() + +func main() { + if !a.F() { + panic("FAIL") + } + if !g() { + panic("FAIL") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4370.dir/p1.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4370.dir/p1.go new file mode 100644 index 0000000000000000000000000000000000000000..d010e936534aebef4434f3e6a5393a1a97af4b7e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4370.dir/p1.go @@ -0,0 +1,20 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p1 + +type Magic int + +type T struct { + x interface{} +} + +func (t *T) M() bool { + _, ok := t.x.(Magic) + return ok +} + +func F(t *T) { + println(t) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4370.dir/p2.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4370.dir/p2.go new file mode 100644 index 0000000000000000000000000000000000000000..0d3e23625ec245a215f87594218925f25fcb8f19 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4370.dir/p2.go @@ -0,0 +1,16 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p2 + +import "./p1" + +type T struct { + p1.T +} + +func F() { + var t T + p1.F(&t.T) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4370.dir/p3.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4370.dir/p3.go new file mode 100644 index 0000000000000000000000000000000000000000..c275c6e222dd8b1b3f161b8898fcbcbec90abf98 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4370.dir/p3.go @@ -0,0 +1,13 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p3 + +import "./p2" + +func F() { + p2.F() + var t p2.T + println(t.T.M()) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue43962.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue43962.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..168b2063b4872373b43dfbc27e30757fc7af25d2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue43962.dir/a.go @@ -0,0 +1,5 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package init diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue43962.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue43962.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..f55fea11c19347c42645532e7bc6e7afddd87b4d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue43962.dir/b.go @@ -0,0 +1,7 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" // ERROR "cannot import package as init" diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44325.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44325.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..5a22b455b7ea8559ce4a8ab737c1b8b3707a3ad3 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44325.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2021 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file. + +package a + +func FM() func() { + return func() { + _ = func() int { + return 0 + } + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44325.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44325.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..c4d77e311a9a6e3bd7fcffbf296191264152e08d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44325.dir/b.go @@ -0,0 +1,13 @@ +// Copyright 2021 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file. + +package b + +import ( + "./a" +) + +func F() { + a.FM() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44330.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44330.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..9d3ab9fe80e0870a85984ddd7db74176c8fded8c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44330.dir/a.go @@ -0,0 +1,21 @@ +// Copyright 2021 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file. + +package a + +type Table struct { + ColumnSeparator bool + RowSeparator bool + + // ColumnResizer is called on each Draw. Can be used for custom column sizing. + ColumnResizer func() +} + +func NewTable() *Table { + return &Table{ + ColumnSeparator: true, + RowSeparator: true, + ColumnResizer: func() {}, + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44330.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44330.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..1d5742421bdf9f78909e7f279229d7906afb237f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44330.dir/b.go @@ -0,0 +1,23 @@ +// Copyright 2021 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file. + +package main + +import ( + "./a" +) + +type Term struct { + top *a.Table +} + +//go:noinline +func NewFred() *Term { + table := a.NewTable() + return &Term{top: table} +} + +func main() { + NewFred() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44335.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44335.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..2c9c2178135114fb9ef136359fe9e3bfd27b75d2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44335.dir/a.go @@ -0,0 +1,17 @@ +// Copyright 2021 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file + +package a + +type W struct { + M func(string) string +} + +func FM(m string) func(W) { + return func(pw W) { + pw.M = func(string) string { + return m + } + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44335.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44335.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..e72c2abc6a546b4b104e11cde25e8f06d4384df3 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44335.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file. + +package b + +import "./a" + +func F() { + a.FM("") +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44355.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44355.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..0f63c6fd983862d6409462cf1ecf23cae9f8f906 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44355.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2021 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file. + +package a + +func F() (_ *int) { return nil } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44355.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44355.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..09d5bde887a56773bc8d45645ee800232411f66b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44355.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file. + +package b + +import "./a" + +var _ = a.F() diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44370.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44370.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..c5bf1bcbc72e77975720a44b70e30d71f673dc42 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44370.dir/a.go @@ -0,0 +1,20 @@ +// Copyright 2021 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file. + +package a + +// A StoppableWaitGroup waits for a collection of goroutines to finish. +type StoppableWaitGroup struct { + // i is the internal counter which can store tolerate negative values + // as opposed the golang's library WaitGroup. + i *int64 +} + +// NewStoppableWaitGroup returns a new StoppableWaitGroup. When the 'Stop' is +// executed, following 'Add()' calls won't have any effect. +func NewStoppableWaitGroup() *StoppableWaitGroup { + return &StoppableWaitGroup{ + i: func() *int64 { i := int64(0); return &i }(), + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44370.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44370.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..f0e0b4e55fd89cfa5c53aaf1a4e84c7e05272ed7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44370.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. Use of this +// source code is governed by a BSD-style license that can be found in +// the LICENSE file. + +package b + +import "./a" + +func JoinClusterServices() { + _ = a.NewStoppableWaitGroup() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44732.dir/bar/bar.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44732.dir/bar/bar.go new file mode 100644 index 0000000000000000000000000000000000000000..fc141616100e09767db3604d18dc82ba24d8370c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44732.dir/bar/bar.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bar + +import "issue44732.dir/foo" + +type Bar struct { + Foo *foo.Foo +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44732.dir/foo/foo.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44732.dir/foo/foo.go new file mode 100644 index 0000000000000000000000000000000000000000..c8afb0e880e5b467ee42d25232f6d8488f9b78e2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44732.dir/foo/foo.go @@ -0,0 +1,13 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package foo + +type Foo struct { + updatecb func() +} + +func NewFoo() *Foo { + return &Foo{updatecb: nil} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue44732.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue44732.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..21208ecdd93d888284f0470fbc7cd9ad6b45c2e9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue44732.dir/main.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "issue44732.dir/bar" + "issue44732.dir/foo" +) + +func main() { + _ = bar.Bar{} + _ = foo.NewFoo() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4510.dir/f1.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4510.dir/f1.go new file mode 100644 index 0000000000000000000000000000000000000000..1217106fca4db57046225ec3b0e982a74460c656 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4510.dir/f1.go @@ -0,0 +1,9 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import "fmt" // GCCGO_ERROR "fmt redeclared|imported" + +var _ = fmt.Printf diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4510.dir/f2.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4510.dir/f2.go new file mode 100644 index 0000000000000000000000000000000000000000..1a67153771fa64fc8d11c54ed66999a0d7c65853 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4510.dir/f2.go @@ -0,0 +1,7 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +func fmt() {} // GC_ERROR "fmt already declared through import of package" diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue45503.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue45503.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..b45835bd85f60adf5406824655145f601e4a26e2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue45503.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type S struct{} + +func (s *S) M() { + s.m((*S).N) +} + +func (s *S) N() {} + +func (s *S) m(func(*S)) {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue45503.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue45503.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..530c394eaf9d73225aae163a6bf7294e67d8cbb7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue45503.dir/b.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func F() { + s := a.S{} + s.M() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4590.dir/pkg1.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4590.dir/pkg1.go new file mode 100644 index 0000000000000000000000000000000000000000..96cac0a5c1c0d8851ff2a73629bca222d2ea482a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4590.dir/pkg1.go @@ -0,0 +1,26 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pkg1 + +type A interface { + Write() error +} + +type B interface { + Hello() + world() +} + +type C struct{} + +func (c C) Write() error { return nil } + +var T = struct{ A }{nil} +var U = struct{ B }{nil} +var V A = struct{ *C }{nil} +var W = interface { + Write() error + Hello() +}(nil) diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4590.dir/pkg2.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4590.dir/pkg2.go new file mode 100644 index 0000000000000000000000000000000000000000..98bc2a52fb96da1c2ad93177d86e50cd2681d323 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4590.dir/pkg2.go @@ -0,0 +1,15 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pkg2 + +import "./pkg1" + +var T = struct{ pkg1.A }{nil} +var U = struct{ pkg1.B }{nil} +var V pkg1.A = struct{ *pkg1.C }{nil} +var W = interface { + Write() error + Hello() +}(nil) diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4590.dir/prog.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4590.dir/prog.go new file mode 100644 index 0000000000000000000000000000000000000000..32055b28e246add2113231eff5df77f9a8ade611 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4590.dir/prog.go @@ -0,0 +1,25 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./pkg1" + "./pkg2" +) + +func main() { + if pkg1.T != pkg2.T { + panic("pkg1.T != pkg2.T") + } + if pkg1.U != pkg2.U { + panic("pkg1.U != pkg2.U") + } + if pkg1.V != pkg2.V { + panic("pkg1.V != pkg2.V") + } + if pkg1.W != pkg2.W { + panic("pkg1.W != pkg2.W") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue46653.dir/bad/bad.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue46653.dir/bad/bad.go new file mode 100644 index 0000000000000000000000000000000000000000..c1611b8347a3247deeb7f722920cf9e9e4049e7d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue46653.dir/bad/bad.go @@ -0,0 +1,64 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func Bad() { + m := make(map[int64]A) + a := m[0] + if len(a.B.C1.D2.E2.F1) != 0 || + len(a.B.C1.D2.E2.F2) != 0 || + len(a.B.C1.D2.E2.F3) != 0 || + len(a.B.C1.D2.E2.F4) != 0 || + len(a.B.C1.D2.E2.F5) != 0 || + len(a.B.C1.D2.E2.F6) != 0 || + len(a.B.C1.D2.E2.F7) != 0 || + len(a.B.C1.D2.E2.F8) != 0 || + len(a.B.C1.D2.E2.F9) != 0 || + len(a.B.C1.D2.E2.F10) != 0 || + len(a.B.C1.D2.E2.F11) != 0 || + len(a.B.C1.D2.E2.F16) != 0 { + panic("bad") + } +} + +type A struct { + B +} + +type B struct { + C1 C + C2 C +} + +type C struct { + D1 D + D2 D +} + +type D struct { + E1 E + E2 E + E3 E + E4 E +} + +type E struct { + F1 string + F2 string + F3 string + F4 string + F5 string + F6 string + F7 string + F8 string + F9 string + F10 string + F11 string + F12 string + F13 string + F14 string + F15 string + F16 string +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue46653.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue46653.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..e2a96e54ec59949c82935946284613ffa62b669a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue46653.dir/main.go @@ -0,0 +1,27 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + bad "issue46653.dir/bad" +) + +func main() { + bad.Bad() +} + +func neverCalled() L { + m := make(map[string]L) + return m[""] +} + +type L struct { + A Data + B Data +} + +type Data struct { + F1 [22][]string +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47068.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47068.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..30a51c1edb24d10f163675426862f67060d6eb31 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47068.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func A() { + var m map[int]int = map[int]int{ + 0: 0, 1: 0, 2: 0, 3: 0, 4: 0, 5: 0, 6: 0, 7: 0, 8: 0, 9: 0, + 10: 0, 11: 0, 12: 0, 13: 0, 14: 0, 15: 0, 16: 0, 17: 0, 18: 0, 19: 0, + 20: 0, 21: 0, 22: 0, 23: 0, 24: 0, 25: 0, 26: 0, 27: 0, 28: 0, 29: 0} + if len(m) != 30 { + panic("unexpected map length") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47068.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47068.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..d341a4a395005cb9b5411ece09004ee9c2571118 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47068.dir/b.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "reflect" + +func B() { + t1 := reflect.TypeOf([30]int{}) + t2 := reflect.TypeOf(new([30]int)).Elem() + if t1 != t2 { + panic("[30]int types do not match") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47068.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47068.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..411e7db10382dcd6b3afe57b815269edf51a0e3b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47068.dir/main.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "./b" +) + +func main() { + a.A() + b.B() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47087.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47087.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..6093092aceea7a3838ba9846cf2a65cc60db9d38 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47087.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F() interface{} { return struct{ _ []int }{} } + +var X = F() diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47087.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47087.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..8f96d25a12bf2c26cca35cb036a482fb05f615ff --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47087.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +func F() interface{} { return struct{ _ []int }{} } + +var X = F() diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47087.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47087.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..16c1cc616d09bb16cf566621c71c8586c59f64e2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47087.dir/main.go @@ -0,0 +1,19 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "./b" +) + +func main() { + if a.F() == b.F() { + panic("FAIL") + } + if a.X == b.X { + panic("FAIL") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47131.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47131.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..6e798d1d0c8e2dd7370416750e2fc5764346a9e9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47131.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type MyInt int + +type MyIntAlias = MyInt + +func (mia *MyIntAlias) Get() int { + return int(*mia) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47131.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47131.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..c658127ca9d53c2495f12690437e095401f9a4c2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47131.dir/b.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func F2() int { + var mia a.MyIntAlias + return mia.Get() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47185.dir/bad/bad.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47185.dir/bad/bad.go new file mode 100644 index 0000000000000000000000000000000000000000..1aa4fbb909522ae1409f0895e3f04c58a47d73ee --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47185.dir/bad/bad.go @@ -0,0 +1,72 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +// Note that the use of CGO here is solely to trigger external +// linking, since that is required to trigger that bad behavior +// in this bug. + +// #include +import "C" + +func Bad() { + m := make(map[int64]A) + a := m[0] + if len(a.B.C1.D2.E2.F1) != 0 || + len(a.B.C1.D2.E2.F2) != 0 || + len(a.B.C1.D2.E2.F3) != 0 || + len(a.B.C1.D2.E2.F4) != 0 || + len(a.B.C1.D2.E2.F5) != 0 || + len(a.B.C1.D2.E2.F6) != 0 || + len(a.B.C1.D2.E2.F7) != 0 || + len(a.B.C1.D2.E2.F8) != 0 || + len(a.B.C1.D2.E2.F9) != 0 || + len(a.B.C1.D2.E2.F10) != 0 || + len(a.B.C1.D2.E2.F11) != 0 || + len(a.B.C1.D2.E2.F16) != 0 { + panic("bad") + } + C.malloc(100) +} + +type A struct { + B +} + +type B struct { + C1 C + C2 C +} + +type C struct { + D1 D + D2 D +} + +type D struct { + E1 E + E2 E + E3 E + E4 E +} + +type E struct { + F1 string + F2 string + F3 string + F4 string + F5 string + F6 string + F7 string + F8 string + F9 string + F10 string + F11 string + F12 string + F13 string + F14 string + F15 string + F16 string +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47185.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47185.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..7b46e55d8b566349cf5a9315bbd19dcd84f5bee7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47185.dir/main.go @@ -0,0 +1,28 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + bad "issue47185.dir/bad" +) + +func main() { + another() + bad.Bad() +} + +func another() L { + m := make(map[string]L) + return m[""] +} + +type L struct { + A Data + B Data +} + +type Data struct { + F1 [22][]string +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47201.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47201.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..54b70790926cd3a2e80747c5fa6607465b3035c0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47201.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + . "fmt" +) + +func test() { + Println("foo") +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47201.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47201.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..ae3ff3f2b8143d280da4958a17a5a21852ffb978 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47201.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +func Println() {} // ERROR "Println redeclared in this block|Println already declared" + +func main() {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47317.dir/a.s b/platform/dbops/binaries/go/go/test/fixedbugs/issue47317.dir/a.s new file mode 100644 index 0000000000000000000000000000000000000000..b969ddb972c1d637b46992b2a77e72ffe1b807e9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47317.dir/a.s @@ -0,0 +1,6 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +TEXT ·G(SB),4,$0 + RET diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue47317.dir/x.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue47317.dir/x.go new file mode 100644 index 0000000000000000000000000000000000000000..83b5542144d8cc6d57eadbec8027a4d093cab23b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue47317.dir/x.go @@ -0,0 +1,17 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Issue 47317: ICE when calling ABI0 function via func value. + +package main + +func main() { F() } + +func F() interface{} { + g := G + g(1) + return G +} + +func G(x int) [2]int diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue48088.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue48088.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..2bb879d557ed48e21eb64e0c62ee7c6c32e87655 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue48088.dir/a.go @@ -0,0 +1,22 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T1 struct { + *T2 +} + +type T2 struct { +} + +func (t2 *T2) M() { +} + +func F() { + f(T1.M) +} + +func f(f func(T1)) { +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue48088.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue48088.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..bdb1bb55c2d59ca94de267074fe80972b9bdda27 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue48088.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func F() { + a.F() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4879.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4879.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..7ee7c4860475f1616d19f863266e2191fe705c38 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4879.dir/a.go @@ -0,0 +1,33 @@ +package a + +import ( + "unsafe" +) + +type Collection struct { + root unsafe.Pointer +} + +type nodeLoc struct{} + +type slice []int + +type maptype map[int]int + +func MakePrivateCollection() *Collection { + return &Collection{ + root: unsafe.Pointer(&nodeLoc{}), + } +} + +func MakePrivateCollection2() *Collection { + return &Collection{ + root: unsafe.Pointer(&slice{}), + } +} +func MakePrivateCollection3() *Collection { + return &Collection{ + root: unsafe.Pointer(&maptype{}), + } +} + diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4879.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4879.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..d8fb5693db903e528eb8f5d9747753d19a999f66 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4879.dir/b.go @@ -0,0 +1,9 @@ +package b + +import "./a" + +func F() { + a.MakePrivateCollection() + a.MakePrivateCollection2() + a.MakePrivateCollection3() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..36639b73d424bfe1e34978a03963043efee0a8b9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/a.go @@ -0,0 +1,36 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Node interface { + Position() +} + +type noder struct{} + +func (noder) Position() {} + +type Scope map[int][]Node + +func (s Scope) M1() Scope { + if x, ok := s[0]; ok { + return x[0].(struct { + noder + Scope + }).Scope + } + return nil +} + +func (s Scope) M2() Scope { + if x, ok := s[0]; ok { + st, _ := x[0].(struct { + noder + Scope + }) + return st.Scope + } + return nil +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..1dd63f87b6a3469f044f1ba6edf2d3f416d663c0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/b.go @@ -0,0 +1,13 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +type t int + +func (t) m() {} + +func F1() interface{} { return struct{ t }{} } +func F2() interface{} { return *new(struct{ t }) } +func F3() interface{} { var x [1]struct{ t }; return x[0] } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..2cc6681b950aab3e74aa729e5cc50e72898f0bea --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/c.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +import "./a" + +var _ = (&a.Scope{}).M1() diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/d.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/d.go new file mode 100644 index 0000000000000000000000000000000000000000..e933dc08e4bab921fc9ada3465eb15aa674f74f1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/d.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package d + +import "./a" + +var _ = (&a.Scope{}).M2() diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/e.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/e.go new file mode 100644 index 0000000000000000000000000000000000000000..5f43179c373b3d17b14121e52cc00c9567a46c67 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/e.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package e + +import ( + "./b" +) + +var _ = b.F1() diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/f.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/f.go new file mode 100644 index 0000000000000000000000000000000000000000..2cd978eacef897771191633e84444bf6e3b37c11 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/f.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package f + +import "./b" + +var _ = b.F2() diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/g.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/g.go new file mode 100644 index 0000000000000000000000000000000000000000..b90353fcff98862e8f0f99c1fe280ad4d052774d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49016.dir/g.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package g + +import "./b" + +var _ = b.F3() diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49094.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49094.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..9ec0fd9f93e755de29da1aabc3a6d107c15f0535 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49094.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type A struct{} + +func (a *A) f() bool { + return true +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49094.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49094.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..f2361958ace346fa2709f19f5c500eead27fc0e5 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49094.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func M(r *a.A) string { + return "" +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49094.dir/p.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49094.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..581faf19ac778ccd55470b5994faa8cbb6d416f3 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49094.dir/p.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import ( + "./b" +) + +type S struct{} + +func (S) M() { + b.M(nil) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..5aefcd8780ca03a9481a1c5e3edd600dd462af9a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/a.go @@ -0,0 +1,24 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import "sync" + +type Loader[K comparable, R any] struct { + batch *LoaderBatch[K, R] +} + +func (l *Loader[K, R]) Load() error { + l.batch.f() + return nil +} + +type LoaderBatch[K comparable, R any] struct { + once *sync.Once +} + +func (b *LoaderBatch[K, R]) f() { + b.once.Do(func() {}) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..48eecdbaaf53e899106b6016c33b76a97acdcd9f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/b.go @@ -0,0 +1,16 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + + +type Loaders struct { + Loader *a.Loader[int, int] +} + +func NewLoaders() *Loaders { + return new(Loaders) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..89262e374aa1c44968f3ec83db55544475af693d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/c.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +import "./b" + +type Resolver struct{} + +type todoResolver struct{ *Resolver } + +func (r *todoResolver) F() { + b.NewLoaders().Loader.Load() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/p.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..f11d2f22eb371c0209c81f733e2258f3a24606e4 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue49143.dir/p.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import ( + "./c" +) + +var _ = &c.Resolver{} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4932.dir/foo.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4932.dir/foo.go new file mode 100644 index 0000000000000000000000000000000000000000..19b73a0e0384709495d09157370c4854e1fd910d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4932.dir/foo.go @@ -0,0 +1,7 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package foo + +type Op struct{} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4932.dir/state.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4932.dir/state.go new file mode 100644 index 0000000000000000000000000000000000000000..c017b9649d474e3d827564ba9a9195f7c41dc61f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4932.dir/state.go @@ -0,0 +1,28 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package state + +import "./foo" + +func Public() { + var s Settings + s.op() +} + +type State struct{} + +func (s *State) x(*Settings) {} + +type Settings struct{} + +func (c *Settings) x() { + run([]foo.Op{{}}) +} + +func run([]foo.Op) {} + +func (s *Settings) op() foo.Op { + return foo.Op{} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4932.dir/state2.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4932.dir/state2.go new file mode 100644 index 0000000000000000000000000000000000000000..50f75db2cea1006235c427a70b4c46c3ed8aecf6 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4932.dir/state2.go @@ -0,0 +1,9 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package state2 + +import "./state" + +type Foo *state.State diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4964.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4964.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..216f352ca959e5fb4e30744b2e8839154665c89f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4964.dir/a.go @@ -0,0 +1,25 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var global, global2 *int + +type T struct { + Pointer *int +} + +//go:noinline +func Store(t *T) { + global = t.Pointer +} + +//go:noinline +func Store2(t *T) { + global2 = t.Pointer +} + +func Get() *int { + return global +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue4964.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue4964.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..42a6f1d761a8c8451a68cbcc3df652b119032f1e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue4964.dir/b.go @@ -0,0 +1,34 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func F() { + // store 1 in a.global + x, y := 1, 2 + t := a.T{Pointer: &x} + a.Store(&t) + _ = y +} + +func G() { + // store 4 in a.global2 + x, y := 3, 4 + t := a.T{Pointer: &y} + a.Store2(&t) + _ = x +} + +func main() { + F() + G() + p := a.Get() + n := *p + if n != 1 { + println(n, "!= 1") + panic("n != 1") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue50788.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue50788.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..0f786d494c9a77612272a520c022add42a165b0a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue50788.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T[P any] struct { + _ P +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue50788.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue50788.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..e17afc7b4330992df3392f29869642a5fb9e7cff --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue50788.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type T a.T[T] // ERROR "invalid recursive type T\n.*T refers to\n.*a\.T refers to\n.*T" diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5105.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5105.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..f20abb98bfac7cc527bc2990a1d4e7fe4ccf40c8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5105.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var A = [2]string{"hello", "world"} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5105.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5105.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..b12e739e33a0db8e2758d003c58b029a035c2090 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5105.dir/b.go @@ -0,0 +1,15 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +var B = [2]string{"world", "hello"} + +func main() { + if a.A[0] != B[1] { + panic("bad hello") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5125.dir/bug.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5125.dir/bug.go new file mode 100644 index 0000000000000000000000000000000000000000..2fdf0f9bb8b1630978110b9d9450b6c2b53629fb --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5125.dir/bug.go @@ -0,0 +1,17 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bug + +type Node interface { + Eval(s *Scene) +} + +type plug struct { + node Node +} + +type Scene struct { + changed map[plug]bool +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5125.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5125.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..47acdeba8a9500b64573ab8f4fc57b71855d96d2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5125.dir/main.go @@ -0,0 +1,10 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import _ "./bug" + +func main() { +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue51291.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue51291.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..21e2cd6adfa1380c0bae41c2819bba34c6aeb8a1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue51291.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type TypeA string + +const StrA TypeA = "s" diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue51291.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue51291.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..26b2c7872ed5db6788f8c2ba502e15067fbf9145 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue51291.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type TypeB string + +const StrB TypeB = TypeB(a.StrA) diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue52128.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue52128.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..0abf831c6fd13c5f8b00cdb3d6e2650f69642b76 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue52128.dir/a.go @@ -0,0 +1,21 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I interface{} + +type F func() + +type s struct { + f F +} + +func NewWithF(f F) *s { + return &s{f: f} +} + +func NewWithFuncI(func() I) *s { + return &s{} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue52128.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue52128.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..86f6ed7e056229b3b1abc1cab23e7bc6a1b7026a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue52128.dir/b.go @@ -0,0 +1,17 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import ( + "./a" +) + +type S struct{} + +func (s *S) M1() a.I { + return a.NewWithF(s.M2) +} + +func (s *S) M2() {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue52128.dir/p.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue52128.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..d3f3dbbfb9bc06efc683b92160e7f83582bc7459 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue52128.dir/p.go @@ -0,0 +1,14 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import ( + "./a" + "./b" +) + +func f() { + a.NewWithFuncI((&b.S{}).M1) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue52279.dir/lib.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue52279.dir/lib.go new file mode 100644 index 0000000000000000000000000000000000000000..e20de30bd5c02c8db29294e71af29a73c832dc8c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue52279.dir/lib.go @@ -0,0 +1,23 @@ +package lib + +type FMap[K comparable, V comparable] map[K]V + +//go:noinline +func (m FMap[K, V]) Flip() FMap[V, K] { + out := make(FMap[V, K]) + return out +} + +type MyType uint8 + +const ( + FIRST MyType = 0 +) + +var typeStrs = FMap[MyType, string]{ + FIRST: "FIRST", +} + +func (self MyType) String() string { + return typeStrs[self] +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue52279.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue52279.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..8c7e069c5b924477770eeb51fabf5ea7bee7f27e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue52279.dir/main.go @@ -0,0 +1,5 @@ +package main + +import "./lib" + +func main() { lib.FIRST.String() } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5259.dir/bug.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5259.dir/bug.go new file mode 100644 index 0000000000000000000000000000000000000000..8512461686bcd5cc413e10c056f771102b6fe5dd --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5259.dir/bug.go @@ -0,0 +1,17 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bug + +type S struct { + F func() +} + +type X interface { + Bar() +} + +func Foo(x X) *S { + return &S{F: x.Bar} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5259.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5259.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..ad1da78f5fca350a7b3f0e488c5e5a9a46b6444c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5259.dir/main.go @@ -0,0 +1,16 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./bug" + +type foo int + +func (f *foo) Bar() { +} + +func main() { + bug.Foo(new(foo)) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue52590.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue52590.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..20031e60c77170ca1d84a3d2b563257c299eb453 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue52590.dir/a.go @@ -0,0 +1,68 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import "unsafe" + +func Append() { + _ = append(appendArgs()) +} + +func Delete() { + delete(deleteArgs()) +} + +func Print() { + print(ints()) +} + +func Println() { + println(ints()) +} + +func Complex() { + _ = complex(float64s()) +} + +func Copy() { + copy(slices()) +} + +func UnsafeAdd() { + _ = unsafe.Add(unsafeAdd()) +} + +func UnsafeSlice() { + _ = unsafe.Slice(unsafeSlice()) +} + +func appendArgs() ([]int, int) { + return []int{}, 0 +} + +func deleteArgs() (map[int]int, int) { + return map[int]int{}, 0 +} + +func ints() (int, int) { + return 1, 1 +} + +func float64s() (float64, float64) { + return 0, 0 +} + +func slices() ([]int, []int) { + return []int{}, []int{} +} + +func unsafeAdd() (unsafe.Pointer, int) { + return nil, 0 +} + +func unsafeSlice() (*byte, int) { + var p [10]byte + return &p[0], 0 +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue52590.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue52590.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..264e8d10a6b6f135c0f757a9fa4077885ac644de --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue52590.dir/b.go @@ -0,0 +1,18 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func f() { + a.Append() + a.Delete() + a.Print() + a.Println() + a.Complex() + a.Copy() + a.UnsafeAdd() + a.UnsafeSlice() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5260.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5260.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..5a2c99f65c726b37edb241212b55ff960fb46857 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5260.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +const BOM = "\uFEFF" diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5260.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5260.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..299b75e4a7cdd4a00c2d13390f604d29f0760e7b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5260.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + _ = a.BOM +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue52856.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue52856.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..36af7e04cd0f8a5b060b2092e82b044b29b21446 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue52856.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F() any { + return struct{ int }{0} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue52856.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue52856.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..732368d3a7c79256f9e1f0da89c0eae1169d2792 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue52856.dir/main.go @@ -0,0 +1,19 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func F() any { + return struct{ int }{0} +} + +func main() { + _, ok1 := F().(struct{ int }) + _, ok2 := a.F().(struct{ int }) + if !ok1 || ok2 { + panic(0) + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue52862.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue52862.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..ef4ce2025c85b1669485a8ba60e1462340d59f7b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue52862.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F() complex128 { + return 0+0i +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue52862.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue52862.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..739af663f72406b831ea752167201e07cadba983 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue52862.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func F() complex128 { + return a.F() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5291.dir/pkg1.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5291.dir/pkg1.go new file mode 100644 index 0000000000000000000000000000000000000000..b1c893ac83e63b0c2e4aff68926eb3120c95c5a9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5291.dir/pkg1.go @@ -0,0 +1,34 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pkg1 + +import ( + "runtime" +) + +type T2 *[]string + +type Data struct { + T1 *[]T2 +} + +func CrashCall() (err error) { + var d Data + + for count := 0; count < 10; count++ { + runtime.GC() + + len := 2 // crash when >=2 + x := make([]T2, len) + + d = Data{T1: &x} + + for j := 0; j < len; j++ { + y := make([]string, 1) + (*d.T1)[j] = &y + } + } + return nil +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5291.dir/prog.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5291.dir/prog.go new file mode 100644 index 0000000000000000000000000000000000000000..8301091bd8858ac4590a5c48674f6c75c014af82 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5291.dir/prog.go @@ -0,0 +1,17 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./pkg1" +) + +type message struct { // Presence of this creates a crash + data pkg1.Data +} + +func main() { + pkg1.CrashCall() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5470.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5470.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..302822d238707a9d05782550d512c66e147b5c40 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5470.dir/a.go @@ -0,0 +1,27 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Foo interface { + Hi() string +} + +func Test1() Foo { return make(tst1) } + +type tst1 map[string]bool + +func (r tst1) Hi() string { return "Hi!" } + +func Test2() Foo { return make(tst2, 0) } + +type tst2 []string + +func (r tst2) Hi() string { return "Hi!" } + +func Test3() Foo { return make(tst3) } + +type tst3 chan string + +func (r tst3) Hi() string { return "Hi!" } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5470.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5470.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..0801c149cfe26b0dc97c405cd929acac0a34dd08 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5470.dir/b.go @@ -0,0 +1,13 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func main() { + a.Test1() + a.Test2() + a.Test3() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue54912.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue54912.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..b425223da989b41e16f0052e67b9cd57c1dafe48 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue54912.dir/a.go @@ -0,0 +1,18 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that inlining a function literal that captures both a type +// switch case variable and another local variable works correctly. + +package a + +func F(p *int, x any) func() { + switch x := x.(type) { + case int: + return func() { + *p += x + } + } + return nil +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue54912.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue54912.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..67b9012b36b5b79095e9d09a75097b22119da5c9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue54912.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "test/a" + +func main() { + a.F(new(int), 0)() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5614.dir/rethinkgo.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5614.dir/rethinkgo.go new file mode 100644 index 0000000000000000000000000000000000000000..4ae66d679ea59fc47c07fe7c2b2ad6dd334d5382 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5614.dir/rethinkgo.go @@ -0,0 +1,16 @@ +package rethinkgo + +type Session struct { +} + +func (s *Session) Run(query Exp) *int { return nil } + +type List []interface{} + +type Exp struct { + args []interface{} +} + +func (e Exp) UseOutdated(useOutdated bool) Exp { + return Exp{args: List{e, useOutdated}} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5614.dir/x.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5614.dir/x.go new file mode 100644 index 0000000000000000000000000000000000000000..7e4f3a7e6b9bb13944e4455ec03e4f9c065d5722 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5614.dir/x.go @@ -0,0 +1,7 @@ +package x + +import "./rethinkgo" + +var S *rethinkgo.Session + + diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5614.dir/y.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5614.dir/y.go new file mode 100644 index 0000000000000000000000000000000000000000..97cc93a79d5d7bdf6265122a5337c7861f2c5c3d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5614.dir/y.go @@ -0,0 +1,5 @@ +package y + +import "./x" + +var T = x.S diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue56280.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue56280.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..289b06a7b3ab322473e0c22cf2dfcc2a29e81a70 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue56280.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F() { // ERROR "can inline F" + g(0) // ERROR "inlining call to g\[go.shape.int\]" +} + +func g[T any](_ T) {} // ERROR "can inline g\[int\]" "can inline g\[go.shape.int\]" "inlining call to g\[go.shape.int\]" diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue56280.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue56280.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..06092b17f0068080978ce5ff8d013bf8e1e7a340 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue56280.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "test/a" + +func main() { // ERROR "can inline main" + a.F() // ERROR "inlining call to a.F" "inlining call to a.g\[go.shape.int\]" +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue56778.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue56778.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..d01aea4d1413bf03ae28a8ec76adc8e086e22a1b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue56778.dir/a.go @@ -0,0 +1,18 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type A struct { + New func() any +} + +func NewA(i int) *A { + return &A{ + New: func() any { + _ = i + return nil + }, + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue56778.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue56778.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..d49f7e57080ba85e73d457b5b77ba5b8fc4531c1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue56778.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var _ = a.NewA(0) diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5755.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5755.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..aa398e82b257c1b0213445d52377cc74f0640088 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5755.dir/a.go @@ -0,0 +1,60 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I interface { + F() +} + +type foo1 []byte +type foo2 []rune +type foo3 []uint8 +type foo4 []int32 +type foo5 string +type foo6 string +type foo7 string +type foo8 string +type foo9 string + +func (f foo1) F() { return } +func (f foo2) F() { return } +func (f foo3) F() { return } +func (f foo4) F() { return } +func (f foo5) F() { return } +func (f foo6) F() { return } +func (f foo7) F() { return } +func (f foo8) F() { return } +func (f foo9) F() { return } + +func Test1(s string) I { return foo1(s) } +func Test2(s string) I { return foo2(s) } +func Test3(s string) I { return foo3(s) } +func Test4(s string) I { return foo4(s) } +func Test5(s []byte) I { return foo5(s) } +func Test6(s []rune) I { return foo6(s) } +func Test7(s []uint8) I { return foo7(s) } +func Test8(s []int32) I { return foo8(s) } +func Test9(s int) I { return foo9(s) } + +type bar map[int]int + +func (b bar) F() { return } + +func TestBar() I { return bar{1: 2} } + +type baz int + +func IsBaz(x interface{}) bool { _, ok := x.(baz); return ok } + +type baz2 int + +func IsBaz2(x interface{}) bool { + switch x.(type) { + case baz2: + return true + default: + return false + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5755.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5755.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..6d515f26a637cc9e2572c9febda88cf5cf05629d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5755.dir/main.go @@ -0,0 +1,23 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + a.Test1("frumious") + a.Test2("frumious") + a.Test3("frumious") + a.Test4("frumious") + + a.Test5(nil) + a.Test6(nil) + a.Test7(nil) + a.Test8(nil) + a.Test9(0) + + a.TestBar() + a.IsBaz(nil) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue58339.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue58339.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..22cbe0c6f9d5342bcd74a4494461aedd2fafea10 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue58339.dir/a.go @@ -0,0 +1,17 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func Assert(msgAndArgs ...any) { +} + +func Run() int { + Assert("%v") + return 0 +} + +func Run2() int { + return Run() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue58339.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue58339.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..1736ec7adb42e8d1363b85533514bbb40e5f2aff --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue58339.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var A = a.Run2() diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue58563.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue58563.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..2b716c1b334a0586ca4a0ce28bd1c42ad5242137 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue58563.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func Start() interface{ Stop() } { + return new(Stopper) +} + +type Stopper struct{} + +func (s *Stopper) Stop() {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue58563.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue58563.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..18a90fcf056c0f515fc477aefdcefbb9a755ff96 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue58563.dir/main.go @@ -0,0 +1,16 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "test/a" + +func main() { + stop := start() + defer stop() +} + +func start() func() { + return a.Start().Stop +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5910.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5910.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..b236c15c7d39efc6d6005cbc60e1171252de1282 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5910.dir/a.go @@ -0,0 +1,22 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Package struct { + name string +} + +type Future struct { + result chan struct { + *Package + error + } +} + +func (t *Future) Result() (*Package, error) { + result := <-t.result + t.result <- result + return result.Package, result.error +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5910.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5910.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..80ddfbbca3641a378951dbe4242b31a8076c7283 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5910.dir/main.go @@ -0,0 +1,12 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + f := new(a.Future) + f.Result() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5957.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5957.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..7411d5fcd54c0c2e2cb3761686054e2afcc4a408 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5957.dir/a.go @@ -0,0 +1,3 @@ +package surprise + +var X int diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5957.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5957.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..9bc561b9ce5ac82dfaae964888a3ce2fde64e4e7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5957.dir/b.go @@ -0,0 +1,2 @@ +package surprise2 + diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue5957.dir/c.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue5957.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..382e234537eb04574eb7acdaa60717a53d6b63d7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue5957.dir/c.go @@ -0,0 +1,12 @@ +package p + +import ( + "./a" // ERROR "imported and not used: \x22test/a\x22 as surprise|imported and not used: surprise|\x22test/a\x22 imported as surprise and not used" + "./b" // ERROR "imported and not used: \x22test/b\x22 as surprise2|imported and not used: surprise2|\x22test/b\x22 imported as surprise2 and not used" + b "./b" // ERROR "imported and not used: \x22test/b\x22$|imported and not used: surprise2|\x22test/b\x22 imported and not used" + foo "math" // ERROR "imported and not used: \x22math\x22 as foo|imported and not used: math|\x22math\x22 imported as foo and not used" + "fmt" // actually used + "strings" // ERROR "imported and not used: \x22strings\x22|imported and not used: strings|\x22strings\x22 imported and not used" +) + +var _ = fmt.Printf diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/aconfig.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/aconfig.go new file mode 100644 index 0000000000000000000000000000000000000000..01b3cf483ba11ba8f3e83c28f2085874d6866125 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/aconfig.go @@ -0,0 +1,10 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package aconfig + +type Config struct { + name string + blah int +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/bresource.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/bresource.go new file mode 100644 index 0000000000000000000000000000000000000000..9fae0994b0c844903a556f42760d65e43e30e54e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/bresource.go @@ -0,0 +1,27 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bresource + +type Resource[T any] struct { + name string + initializer Initializer[T] + cfg ResConfig + value T +} + +func Should[T any](r *Resource[T], e error) bool { + return r.cfg.ShouldRetry(e) +} + +type ResConfig struct { + ShouldRetry func(error) bool + TearDown func() +} + +type Initializer[T any] func(*int) (T, error) + +func New[T any](name string, f Initializer[T], cfg ResConfig) *Resource[T] { + return &Resource[T]{name: name, initializer: f, cfg: cfg} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/cmem.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/cmem.go new file mode 100644 index 0000000000000000000000000000000000000000..43c4fe9901bff27029d04a1f220858f983ec0ba7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/cmem.go @@ -0,0 +1,37 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cmem + +import ( + "./aconfig" + "./bresource" +) + +type MemT *int + +var G int + +type memResource struct { + x *int +} + +func (m *memResource) initialize(*int) (res *int, err error) { + return nil, nil +} + +func (m *memResource) teardown() { +} + +func NewResource(cfg *aconfig.Config) *bresource.Resource[*int] { + res := &memResource{ + x: &G, + } + + return bresource.New("Mem", res.initialize, bresource.ResConfig{ + // We always would want to retry the Memcache initialization. + ShouldRetry: func(error) bool { return true }, + TearDown: res.teardown, + }) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/dcache.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/dcache.go new file mode 100644 index 0000000000000000000000000000000000000000..ea6321974e9c33cc80701098dea2741a06ad6cde --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/dcache.go @@ -0,0 +1,39 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package dcache + +import ( + "./aconfig" + "./bresource" + "./cmem" +) + +type Module struct { + cfg *aconfig.Config + err error + last any +} + +//go:noinline +func TD() { +} + +func (m *Module) Configure(x string) error { + if m.err != nil { + return m.err + } + res := cmem.NewResource(m.cfg) + m.last = res + + return nil +} + +func (m *Module) Blurb(x string, e error) bool { + res, ok := m.last.(*bresource.Resource[*int]) + if !ok { + panic("bad") + } + return bresource.Should(res, e) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..c699a01fc140838b61849687fb9ce5daa56e6c18 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue59709.dir/main.go @@ -0,0 +1,17 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./dcache" +) + +func main() { + var m dcache.Module + m.Configure("x") + m.Configure("y") + var e error + m.Blurb("x", e) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue60945.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue60945.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..663a0cfc69e02aaa504d7b8419a734041d4187b3 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue60945.dir/a.go @@ -0,0 +1,22 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type S struct{} + +func callClosure(closure func()) { + closure() +} + +func (s *S) M() { + callClosure(func() { + defer f(s.m) // prevent closures to be inlined. + }) +} + +func (s *S) m() {} + +//go:noinline +func f(a ...any) {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue60945.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue60945.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..e60d9dc7c1abd35b1841896270081a431a3029e5 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue60945.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var _ = (&a.S{}).M diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue62498.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue62498.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..68f97475ab62c58f432a2a4593b77d8fce94b4ce --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue62498.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func One(L any) { + func() { + defer F(L) + }() +} + +func F(any) {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue62498.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue62498.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..e55a24fb3a081ef9ffb15a4439a052a2998e4c07 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue62498.dir/main.go @@ -0,0 +1,18 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + a.One(nil) + Two(nil) +} + +func Two(L any) { + func() { + defer a.F(L) + }() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue6295.dir/p0.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue6295.dir/p0.go new file mode 100644 index 0000000000000000000000000000000000000000..d4d4da7b3531b5942d730cc414cf00587b7daa52 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue6295.dir/p0.go @@ -0,0 +1,13 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p0 + +type T0 interface { + m0() +} + +type S0 struct{} + +func (S0) m0() {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue6295.dir/p1.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue6295.dir/p1.go new file mode 100644 index 0000000000000000000000000000000000000000..26efae7409653bd2c8538c885ab74eea20c437f0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue6295.dir/p1.go @@ -0,0 +1,26 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p1 + +import "./p0" + +type T1 interface { + p0.T0 + m1() +} + +type S1 struct { + p0.S0 +} + +func (S1) m1() {} + +func NewT0() p0.T0 { + return S1{} +} + +func NewT1() T1 { + return S1{} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue6295.dir/p2.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue6295.dir/p2.go new file mode 100644 index 0000000000000000000000000000000000000000..f5b6ffd0a1320123ac337b090e8d1c93291b5004 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue6295.dir/p2.go @@ -0,0 +1,19 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./p0" + "./p1" +) + +var ( + _ p0.T0 = p0.S0{} + _ p0.T0 = p1.S1{} + _ p0.T0 = p1.NewT0() + _ p0.T0 = p1.NewT1() // same as p1.S1{} +) + +func main() {} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue6513.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue6513.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..e5536feb61a46058f50ff3c6e5e595769f947f4a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue6513.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T struct{ int } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue6513.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue6513.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..ce3d52ec1ab78e92f90ef6baaeefb4e7415d7e4a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue6513.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type U struct{ a.T } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue6513.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue6513.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..8d8c02b9076e21b8ef5058a17737d9daf8b63beb --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue6513.dir/main.go @@ -0,0 +1,16 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "./b" +) + +func main() { + var t a.T + var u b.U + _, _ = t, u +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue65957.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue65957.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..284ec4af9f2df586e16291ff57b1124c4360e3fb --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue65957.dir/a.go @@ -0,0 +1,12 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var s any + +//go:noinline +func F() { + s = new([4]int32) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue65957.dir/main.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue65957.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..89b8a28234513120c7a6c8a135e16fe436306711 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue65957.dir/main.go @@ -0,0 +1,19 @@ +// Copyright 2024 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "reflect" +) + +var s = []rune{0, 1, 2, 3} + +func main() { + m := map[any]int{} + k := reflect.New(reflect.ArrayOf(4, reflect.TypeOf(int32(0)))).Elem().Interface() + m[k] = 1 + a.F() +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue6789.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue6789.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..9c90e0740cda5865e09de1f323b7e825dff2218c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue6789.dir/a.go @@ -0,0 +1,14 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type unexported struct { + a int + b bool +} + +type Struct struct { + unexported +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue6789.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue6789.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..b6a6fc317f53d4895ad1f6ec8d9b2f73dbcd5e98 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue6789.dir/b.go @@ -0,0 +1,12 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +type s a.Struct + +func main() { +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue7023.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue7023.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..cdb54320955b837704264f9f87f88138ab3d89b4 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue7023.dir/a.go @@ -0,0 +1,10 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func Foo() { + goto bar +bar: +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue7023.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue7023.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..c6fe40dfa27307908672af3f9b2e7128b125cb99 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue7023.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import ( + "./a" +) + +var f = a.Foo diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue7648.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue7648.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..c76aaa675f62efd345f5dc4ea1ae5e8503211c36 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue7648.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +const ( + sinPi4 = 0.70710678118654752440084436210484903928483593768847 + A = complex(sinPi4, -sinPi4) +) + diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue7648.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue7648.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..7b336025ae47d8b4846ff5d640849ff36c350b21 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue7648.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func f() { + println(a.A) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue7995b.dir/x1.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue7995b.dir/x1.go new file mode 100644 index 0000000000000000000000000000000000000000..bafecf52a9ce0d71db4f0cc9f52aa78a1344da72 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue7995b.dir/x1.go @@ -0,0 +1,12 @@ +package x1 + +import "fmt" + +var P int + +//go:noinline +func F(x *int) string { + P = 50 + *x = 100 + return fmt.Sprintln(P, *x) +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue7995b.dir/x2.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue7995b.dir/x2.go new file mode 100644 index 0000000000000000000000000000000000000000..eea23eabba2467b032cd48b65dec77edbc3f4564 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue7995b.dir/x2.go @@ -0,0 +1,10 @@ +package main + +import "./x1" + +func main() { + s := x1.F(&x1.P) + if s != "100 100\n" { + println("BUG:", s) + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue8060.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue8060.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..22ba69ee1beda0947fb5e1fffa93d302915c9a13 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue8060.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var A = []*[2][1]float64{} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue8060.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue8060.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..fc7eb251d0bc1d408b7c7e39434c452eda090f5d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue8060.dir/b.go @@ -0,0 +1,13 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var X = a.A + +func b() { + _ = [3][1]float64{} +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue8280.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue8280.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..588536e79a630eee74aa695819d38dba46f05681 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue8280.dir/a.go @@ -0,0 +1,3 @@ +package a + +var Bar = func() (_ int) { return 0 } diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue8280.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue8280.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..c46c554588b1a5911ef335c433dd9fdd473b1a2c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue8280.dir/b.go @@ -0,0 +1,5 @@ +package b + +import "./a" + +var foo = a.Bar diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue9355.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue9355.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..84500c8c01117593617d9599b0d7c46d94d4ee1b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue9355.dir/a.go @@ -0,0 +1,16 @@ +package main + +var x struct { + a, b, c int64 + d struct{ p, q, r int32 } + e [8]byte + f [4]struct{ p, q, r int32 } +} + +var y = &x.b +var z = &x.d.q + +var b [10]byte +var c = &b[5] + +var w = &x.f[3].r diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue9537.dir/a.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue9537.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..818c9eb4ab81a45677d50f1d5924df915746ca89 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue9537.dir/a.go @@ -0,0 +1,25 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type X struct { + T [32]byte +} + +func (x *X) Get() []byte { + t := x.T + return t[:] +} + +func (x *X) RetPtr(i int) *int { + i++ + return &i +} + +func (x *X) RetRPtr(i int) (r1 int, r2 *int) { + r1 = i + 1 + r2 = &r1 + return +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue9537.dir/b.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue9537.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..52e64c81f1f6e926e8b350e46c93ef0108ae1c28 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue9537.dir/b.go @@ -0,0 +1,43 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "bytes" + + "./a" +) + +type X struct { + *a.X +} + +type Intf interface { + Get() []byte + RetPtr(int) *int + RetRPtr(int) (int, *int) +} + +func main() { + x := &a.X{T: [32]byte{1, 2, 3, 4}} + var ix Intf = X{x} + t1 := ix.Get() + t2 := x.Get() + if !bytes.Equal(t1, t2) { + panic(t1) + } + + p1 := ix.RetPtr(5) + p2 := x.RetPtr(7) + if *p1 != 6 || *p2 != 8 { + panic(*p1) + } + + r1, r2 := ix.RetRPtr(10) + r3, r4 := x.RetRPtr(13) + if r1 != 11 || *r2 != 11 || r3 != 14 || *r4 != 14 { + panic("bad RetRPtr") + } +} diff --git a/platform/dbops/binaries/go/go/test/fixedbugs/issue9608.dir/issue9608.go b/platform/dbops/binaries/go/go/test/fixedbugs/issue9608.dir/issue9608.go new file mode 100644 index 0000000000000000000000000000000000000000..ca82ded4cd0d2b4283a8c97c4b807f6d455873a4 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/fixedbugs/issue9608.dir/issue9608.go @@ -0,0 +1,82 @@ +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +func fail() // unimplemented, to test dead code elimination + +// Test dead code elimination in if statements +func init() { + if false { + fail() + } + if 0 == 1 { + fail() + } +} + +// Test dead code elimination in ordinary switch statements +func init() { + const x = 0 + switch x { + case 1: + fail() + } + + switch 1 { + case x: + fail() + } + + switch { + case false: + fail() + } + + const a = "a" + switch a { + case "b": + fail() + } + + const snowman = '☃' + switch snowman { + case '☀': + fail() + } + + const zero = float64(0.0) + const one = float64(1.0) + switch one { + case -1.0: + fail() + case zero: + fail() + } + + switch 1.0i { + case 1: + fail() + case -1i: + fail() + } + + const no = false + switch no { + case true: + fail() + } + + // Test dead code elimination in large ranges. + switch 5 { + case 3, 4, 5, 6, 7: + case 0, 1, 2: + fail() + default: + fail() + } +} + +func main() { +} diff --git a/platform/dbops/binaries/go/go/test/interface/embed1.dir/embed0.go b/platform/dbops/binaries/go/go/test/interface/embed1.dir/embed0.go new file mode 100644 index 0000000000000000000000000000000000000000..4aed391b634a0069024e686b0af7629bf198a003 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/interface/embed1.dir/embed0.go @@ -0,0 +1,28 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that embedded interface types can have local methods. + +package p + +type T int + +func (t T) m() {} + +type I interface{ m() } +type J interface{ I } + +func main() { + var i I + var j J + var t T + i = t + j = t + _ = i + _ = j + i = j + _ = i + j = i + _ = j +} diff --git a/platform/dbops/binaries/go/go/test/interface/embed1.dir/embed1.go b/platform/dbops/binaries/go/go/test/interface/embed1.dir/embed1.go new file mode 100644 index 0000000000000000000000000000000000000000..7dfb1dbc0ad416533286bfdeb1083b32a067622c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/interface/embed1.dir/embed1.go @@ -0,0 +1,43 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that embedded interface types can have local methods. + +package main + +import "./embed0" + +type T int +func (t T) m() {} + +type I interface { m() } +type J interface { I } + +type PI interface { p.I } +type PJ interface { p.J } + +func main() { + var i I + var j J + var t T + i = t + j = t + _ = i + _ = j + i = j + _ = i + j = i + _ = j + var pi PI + var pj PJ + var pt p.T + pi = pt + pj = pt + _ = pi + _ = pj + pi = pj + _ = pi + pj = pi + _ = pj +} diff --git a/platform/dbops/binaries/go/go/test/interface/embed3.dir/embed0.go b/platform/dbops/binaries/go/go/test/interface/embed3.dir/embed0.go new file mode 100644 index 0000000000000000000000000000000000000000..614609e74aefe73a54795a3ea97e603854b48367 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/interface/embed3.dir/embed0.go @@ -0,0 +1,21 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +type I1 interface { + Foo(int) +} + +type I2 interface { + foo(int) +} + +type M1 int + +func (M1) foo() {} + +type M2 int + +func (M2) foo(int) {} diff --git a/platform/dbops/binaries/go/go/test/interface/embed3.dir/embed1.go b/platform/dbops/binaries/go/go/test/interface/embed3.dir/embed1.go new file mode 100644 index 0000000000000000000000000000000000000000..d042482e941c540cd07cf4d05e3c0a3696a9eaec --- /dev/null +++ b/platform/dbops/binaries/go/go/test/interface/embed3.dir/embed1.go @@ -0,0 +1,78 @@ +// Copyright 2019 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./embed0" + +type X1 struct{} + +func (X1) Foo() {} + +type X2 struct{} + +func (X2) foo() {} + +type X3 struct{} + +func (X3) foo(int) {} + +type X4 struct{ p.M1 } + +type X5 struct{ p.M1 } + +func (X5) foo(int) {} + +type X6 struct{ p.M2 } + +type X7 struct{ p.M2 } + +func (X7) foo() {} + +type X8 struct{ p.M2 } + +func (X8) foo(int) {} + +func main() { + var i1 interface{} = X1{} + check(func() { _ = i1.(p.I1) }, "interface conversion: main.X1 is not p.I1: missing method Foo") + + var i2 interface{} = X2{} + check(func() { _ = i2.(p.I2) }, "interface conversion: main.X2 is not p.I2: missing method foo") + + var i3 interface{} = X3{} + check(func() { _ = i3.(p.I2) }, "interface conversion: main.X3 is not p.I2: missing method foo") + + var i4 interface{} = X4{} + check(func() { _ = i4.(p.I2) }, "interface conversion: main.X4 is not p.I2: missing method foo") + + var i5 interface{} = X5{} + check(func() { _ = i5.(p.I2) }, "interface conversion: main.X5 is not p.I2: missing method foo") + + var i6 interface{} = X6{} + check(func() { _ = i6.(p.I2) }, "") + + var i7 interface{} = X7{} + check(func() { _ = i7.(p.I2) }, "") + + var i8 interface{} = X8{} + check(func() { _ = i8.(p.I2) }, "") +} + +func check(f func(), msg string) { + defer func() { + v := recover() + if v == nil { + if msg == "" { + return + } + panic("did not panic") + } + got := v.(error).Error() + if msg != got { + panic("want '" + msg + "', got '" + got + "'") + } + }() + f() +} diff --git a/platform/dbops/binaries/go/go/test/interface/private.dir/private1.go b/platform/dbops/binaries/go/go/test/interface/private.dir/private1.go new file mode 100644 index 0000000000000000000000000000000000000000..75eee51f5a0509c287cc0a7f8682f09c777a0589 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/interface/private.dir/private1.go @@ -0,0 +1,18 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Imported by private.go, which should not be able to see the private method. + +package p + +type Exported interface { + private() +} + +type Implementation struct{} + +func (p *Implementation) private() {} + +var X = new(Implementation) + diff --git a/platform/dbops/binaries/go/go/test/interface/private.dir/prog.go b/platform/dbops/binaries/go/go/test/interface/private.dir/prog.go new file mode 100644 index 0000000000000000000000000000000000000000..abea7d625c762b0f465a7c31d91ef9e3342414fa --- /dev/null +++ b/platform/dbops/binaries/go/go/test/interface/private.dir/prog.go @@ -0,0 +1,33 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that unexported methods are not visible outside the package. +// Does not compile. + +package main + +import "./private1" + +type Exported interface { + private() +} + +type Implementation struct{} + +func (p *Implementation) private() {} + +func main() { + var x Exported + x = new(Implementation) + x.private() + + var px p.Exported + px = p.X + + px.private() // ERROR "private" + + px = new(Implementation) // ERROR "private" + + x = px // ERROR "private" +} diff --git a/platform/dbops/binaries/go/go/test/interface/recursive1.dir/recursive1.go b/platform/dbops/binaries/go/go/test/interface/recursive1.dir/recursive1.go new file mode 100644 index 0000000000000000000000000000000000000000..8498cb5d7512081a8758dddef699df43801d8c2a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/interface/recursive1.dir/recursive1.go @@ -0,0 +1,15 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Mutually recursive type definitions imported and used by recursive1.go. + +package p + +type I1 interface { + F() I2 +} + +type I2 interface { + I1 +} diff --git a/platform/dbops/binaries/go/go/test/interface/recursive1.dir/recursive2.go b/platform/dbops/binaries/go/go/test/interface/recursive1.dir/recursive2.go new file mode 100644 index 0000000000000000000000000000000000000000..29385df76df17a93b1b459a3e8e18aa2eed7ae75 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/interface/recursive1.dir/recursive2.go @@ -0,0 +1,20 @@ +// Copyright 2012 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that the mutually recursive types in recursive1.go made it +// intact and with the same meaning, by assigning to or using them. + +package main + +import "./recursive1" + +func main() { + var i1 p.I1 + var i2 p.I2 + i1 = i2 + i2 = i1 + i1 = i2.F() + i2 = i1.F() + _, _ = i1, i2 +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/absdiffimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/absdiffimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..60822fdb8bd8691d92e5124df61b207686f386ca --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/absdiffimp.dir/a.go @@ -0,0 +1,72 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Numeric interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | + ~float32 | ~float64 | + ~complex64 | ~complex128 +} + +// numericAbs matches numeric types with an Abs method. +type numericAbs[T any] interface { + Numeric + Abs() T +} + +// AbsDifference computes the absolute value of the difference of +// a and b, where the absolute value is determined by the Abs method. +func absDifference[T numericAbs[T]](a, b T) T { + d := a - b + return d.Abs() +} + +// orderedNumeric matches numeric types that support the < operator. +type orderedNumeric interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | + ~float32 | ~float64 +} + +// Complex matches the two complex types, which do not have a < operator. +type Complex interface { + ~complex64 | ~complex128 +} + +// For now, a lone type parameter is not permitted as RHS in a type declaration (issue #45639). +// // orderedAbs is a helper type that defines an Abs method for +// // ordered numeric types. +// type orderedAbs[T orderedNumeric] T +// +// func (a orderedAbs[T]) Abs() orderedAbs[T] { +// if a < 0 { +// return -a +// } +// return a +// } +// +// // complexAbs is a helper type that defines an Abs method for +// // complex types. +// type complexAbs[T Complex] T +// +// func (a complexAbs[T]) Abs() complexAbs[T] { +// r := float64(real(a)) +// i := float64(imag(a)) +// d := math.Sqrt(r*r + i*i) +// return complexAbs[T](complex(d, 0)) +// } +// +// // OrderedAbsDifference returns the absolute value of the difference +// // between a and b, where a and b are of an ordered type. +// func OrderedAbsDifference[T orderedNumeric](a, b T) T { +// return T(absDifference(orderedAbs[T](a), orderedAbs[T](b))) +// } +// +// // ComplexAbsDifference returns the absolute value of the difference +// // between a and b, where a and b are of a complex type. +// func ComplexAbsDifference[T Complex](a, b T) T { +// return T(absDifference(complexAbs[T](a), complexAbs[T](b))) +// } diff --git a/platform/dbops/binaries/go/go/test/typeparam/absdiffimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/absdiffimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..c648013327d345d59c343db64b1f337860a81384 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/absdiffimp.dir/main.go @@ -0,0 +1,25 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +func main() { + // For now, a lone type parameter is not permitted as RHS in a type declaration (issue #45639). + // if got, want := a.OrderedAbsDifference(1.0, -2.0), 3.0; got != want { + // panic(fmt.Sprintf("got = %v, want = %v", got, want)) + // } + // if got, want := a.OrderedAbsDifference(-1.0, 2.0), 3.0; got != want { + // panic(fmt.Sprintf("got = %v, want = %v", got, want)) + // } + // if got, want := a.OrderedAbsDifference(-20, 15), 35; got != want { + // panic(fmt.Sprintf("got = %v, want = %v", got, want)) + // } + // + // if got, want := a.ComplexAbsDifference(5.0+2.0i, 2.0-2.0i), 5+0i; got != want { + // panic(fmt.Sprintf("got = %v, want = %v", got, want)) + // } + // if got, want := a.ComplexAbsDifference(2.0-2.0i, 5.0+2.0i), 5+0i; got != want { + // panic(fmt.Sprintf("got = %v, want = %v", got, want)) + // } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/absdiffimp2.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/absdiffimp2.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..dc64f2dcbed7594b9b9d7999814ad5a10109448d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/absdiffimp2.dir/a.go @@ -0,0 +1,110 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import ( + "math" +) + +type Numeric interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | + ~float32 | ~float64 | + ~complex64 | ~complex128 +} + +// numericAbs matches a struct containing a numeric type that has an Abs method. +type numericAbs[T Numeric] interface { + ~struct{ Value_ T } + Abs() T + Value() T +} + +// absDifference computes the absolute value of the difference of +// a and b, where the absolute value is determined by the Abs method. +func absDifference[T Numeric, U numericAbs[T]](a, b U) T { + d := a.Value() - b.Value() + dt := U{Value_: d} + return dt.Abs() +} + +// orderedNumeric matches numeric types that support the < operator. +type orderedNumeric interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | + ~float32 | ~float64 +} + +// Complex matches the two complex types, which do not have a < operator. +type Complex interface { + ~complex64 | ~complex128 +} + +// orderedAbs is a helper type that defines an Abs method for +// a struct containing an ordered numeric type. +type orderedAbs[T orderedNumeric] struct { + Value_ T +} + +func (a orderedAbs[T]) Abs() T { + if a.Value_ < 0 { + return -a.Value_ + } + return a.Value_ +} + +// Field accesses through type parameters are disabled +// until we have a more thorough understanding of the +// implications on the spec. See issue #51576. +// Use accessor method instead. + +func (a orderedAbs[T]) Value() T { + return a.Value_ +} + +// complexAbs is a helper type that defines an Abs method for +// a struct containing a complex type. +type complexAbs[T Complex] struct { + Value_ T +} + +func realimag(x any) (re, im float64) { + switch z := x.(type) { + case complex64: + re = float64(real(z)) + im = float64(imag(z)) + case complex128: + re = real(z) + im = imag(z) + default: + panic("unknown complex type") + } + return +} + +func (a complexAbs[T]) Abs() T { + // TODO use direct conversion instead of realimag once #50937 is fixed + r, i := realimag(a.Value_) + // r := float64(real(a.Value)) + // i := float64(imag(a.Value)) + d := math.Sqrt(r*r + i*i) + return T(complex(d, 0)) +} + +func (a complexAbs[T]) Value() T { + return a.Value_ +} + +// OrderedAbsDifference returns the absolute value of the difference +// between a and b, where a and b are of an ordered type. +func OrderedAbsDifference[T orderedNumeric](a, b T) T { + return absDifference(orderedAbs[T]{a}, orderedAbs[T]{b}) +} + +// ComplexAbsDifference returns the absolute value of the difference +// between a and b, where a and b are of a complex type. +func ComplexAbsDifference[T Complex](a, b T) T { + return absDifference(complexAbs[T]{a}, complexAbs[T]{b}) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/absdiffimp2.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/absdiffimp2.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..1519da091bcbd47334c1a29a5cf0826e2d0212e4 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/absdiffimp2.dir/main.go @@ -0,0 +1,29 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" +) + +func main() { + if got, want := a.OrderedAbsDifference(1.0, -2.0), 3.0; got != want { + panic(fmt.Sprintf("got = %v, want = %v", got, want)) + } + if got, want := a.OrderedAbsDifference(-1.0, 2.0), 3.0; got != want { + panic(fmt.Sprintf("got = %v, want = %v", got, want)) + } + if got, want := a.OrderedAbsDifference(-20, 15), 35; got != want { + panic(fmt.Sprintf("got = %v, want = %v", got, want)) + } + + if got, want := a.ComplexAbsDifference(5.0+2.0i, 2.0-2.0i), 5+0i; got != want { + panic(fmt.Sprintf("got = %v, want = %v", got, want)) + } + if got, want := a.ComplexAbsDifference(2.0-2.0i, 5.0+2.0i), 5+0i; got != want { + panic(fmt.Sprintf("got = %v, want = %v", got, want)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/aliasimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/aliasimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..c64e87c10fa2fd4e31bb7d801094f5691fb329dc --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/aliasimp.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Rimp[T any] struct { + F T +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/aliasimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/aliasimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..39c29fc74cdbe217e3afe6823c8262b82928806d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/aliasimp.dir/main.go @@ -0,0 +1,41 @@ +// Copyright 2020 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +type R[T any] struct { + F T +} + +// type S = R // disallowed for now + +type Sint = R[int] + +// type Simp = a.Rimp // disallowed for now + +// type SimpString Simp[string] // disallowed for now +type SimpString a.Rimp[string] + +func main() { + // var s S[int] // disallowed for now + var s R[int] + if s.F != 0 { + panic(s.F) + } + var s2 Sint + if s2.F != 0 { + panic(s2.F) + } + // var s3 Simp[string] // disallowed for now + var s3 a.Rimp[string] + if s3.F != "" { + panic(s3.F) + } + var s4 SimpString + if s4.F != "" { + panic(s4.F) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/chansimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/chansimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..73219927041c02f4da261511095fde998753862f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/chansimp.dir/a.go @@ -0,0 +1,232 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import ( + "context" + "runtime" +) + +// Equal reports whether two slices are equal: the same length and all +// elements equal. All floating point NaNs are considered equal. +func SliceEqual[Elem comparable](s1, s2 []Elem) bool { + if len(s1) != len(s2) { + return false + } + for i, v1 := range s1 { + v2 := s2[i] + if v1 != v2 { + isNaN := func(f Elem) bool { return f != f } + if !isNaN(v1) || !isNaN(v2) { + return false + } + } + } + return true +} + +// ReadAll reads from c until the channel is closed or the context is +// canceled, returning all the values read. +func ReadAll[Elem any](ctx context.Context, c <-chan Elem) []Elem { + var r []Elem + for { + select { + case <-ctx.Done(): + return r + case v, ok := <-c: + if !ok { + return r + } + r = append(r, v) + } + } +} + +// Merge merges two channels into a single channel. +// This will leave a goroutine running until either both channels are closed +// or the context is canceled, at which point the returned channel is closed. +func Merge[Elem any](ctx context.Context, c1, c2 <-chan Elem) <-chan Elem { + r := make(chan Elem) + go func(ctx context.Context, c1, c2 <-chan Elem, r chan<- Elem) { + defer close(r) + for c1 != nil || c2 != nil { + select { + case <-ctx.Done(): + return + case v1, ok := <-c1: + if ok { + r <- v1 + } else { + c1 = nil + } + case v2, ok := <-c2: + if ok { + r <- v2 + } else { + c2 = nil + } + } + } + }(ctx, c1, c2, r) + return r +} + +// Filter calls f on each value read from c. If f returns true the value +// is sent on the returned channel. This will leave a goroutine running +// until c is closed or the context is canceled, at which point the +// returned channel is closed. +func Filter[Elem any](ctx context.Context, c <-chan Elem, f func(Elem) bool) <-chan Elem { + r := make(chan Elem) + go func(ctx context.Context, c <-chan Elem, f func(Elem) bool, r chan<- Elem) { + defer close(r) + for { + select { + case <-ctx.Done(): + return + case v, ok := <-c: + if !ok { + return + } + if f(v) { + r <- v + } + } + } + }(ctx, c, f, r) + return r +} + +// Sink returns a channel that discards all values sent to it. +// This will leave a goroutine running until the context is canceled +// or the returned channel is closed. +func Sink[Elem any](ctx context.Context) chan<- Elem { + r := make(chan Elem) + go func(ctx context.Context, r <-chan Elem) { + for { + select { + case <-ctx.Done(): + return + case _, ok := <-r: + if !ok { + return + } + } + } + }(ctx, r) + return r +} + +// An Exclusive is a value that may only be used by a single goroutine +// at a time. This is implemented using channels rather than a mutex. +type Exclusive[Val any] struct { + c chan Val +} + +// MakeExclusive makes an initialized exclusive value. +func MakeExclusive[Val any](initial Val) *Exclusive[Val] { + r := &Exclusive[Val]{ + c: make(chan Val, 1), + } + r.c <- initial + return r +} + +// Acquire acquires the exclusive value for private use. +// It must be released using the Release method. +func (e *Exclusive[Val]) Acquire() Val { + return <-e.c +} + +// TryAcquire attempts to acquire the value. The ok result reports whether +// the value was acquired. If the value is acquired, it must be released +// using the Release method. +func (e *Exclusive[Val]) TryAcquire() (v Val, ok bool) { + select { + case r := <-e.c: + return r, true + default: + return v, false + } +} + +// Release updates and releases the value. +// This method panics if the value has not been acquired. +func (e *Exclusive[Val]) Release(v Val) { + select { + case e.c <- v: + default: + panic("Exclusive Release without Acquire") + } +} + +// Ranger returns a Sender and a Receiver. The Receiver provides a +// Next method to retrieve values. The Sender provides a Send method +// to send values and a Close method to stop sending values. The Next +// method indicates when the Sender has been closed, and the Send +// method indicates when the Receiver has been freed. +// +// This is a convenient way to exit a goroutine sending values when +// the receiver stops reading them. +func Ranger[Elem any]() (*Sender[Elem], *Receiver[Elem]) { + c := make(chan Elem) + d := make(chan struct{}) + s := &Sender[Elem]{ + values: c, + done: d, + } + r := &Receiver[Elem]{ + values: c, + done: d, + } + runtime.SetFinalizer(r, (*Receiver[Elem]).finalize) + return s, r +} + +// A Sender is used to send values to a Receiver. +type Sender[Elem any] struct { + values chan<- Elem + done <-chan struct{} +} + +// Send sends a value to the receiver. It reports whether the value was sent. +// The value will not be sent if the context is closed or the receiver +// is freed. +func (s *Sender[Elem]) Send(ctx context.Context, v Elem) bool { + select { + case <-ctx.Done(): + return false + case s.values <- v: + return true + case <-s.done: + return false + } +} + +// Close tells the receiver that no more values will arrive. +// After Close is called, the Sender may no longer be used. +func (s *Sender[Elem]) Close() { + close(s.values) +} + +// A Receiver receives values from a Sender. +type Receiver[Elem any] struct { + values <-chan Elem + done chan<- struct{} +} + +// Next returns the next value from the channel. The bool result indicates +// whether the value is valid. +func (r *Receiver[Elem]) Next(ctx context.Context) (v Elem, ok bool) { + select { + case <-ctx.Done(): + case v, ok = <-r.values: + } + return v, ok +} + +// finalize is a finalizer for the receiver. +func (r *Receiver[Elem]) finalize() { + close(r.done) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/chansimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/chansimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..a380a3c7e4472a9ff53d660f6d3af18977c5ef81 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/chansimp.dir/main.go @@ -0,0 +1,189 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "context" + "fmt" + "runtime" + "sort" + "sync" + "time" +) + +func TestReadAll() { + c := make(chan int) + go func() { + c <- 4 + c <- 2 + c <- 5 + close(c) + }() + got := a.ReadAll(context.Background(), c) + want := []int{4, 2, 5} + if !a.SliceEqual(got, want) { + panic(fmt.Sprintf("ReadAll returned %v, want %v", got, want)) + } +} + +func TestMerge() { + c1 := make(chan int) + c2 := make(chan int) + go func() { + c1 <- 1 + c1 <- 3 + c1 <- 5 + close(c1) + }() + go func() { + c2 <- 2 + c2 <- 4 + c2 <- 6 + close(c2) + }() + ctx := context.Background() + got := a.ReadAll(ctx, a.Merge(ctx, c1, c2)) + sort.Ints(got) + want := []int{1, 2, 3, 4, 5, 6} + if !a.SliceEqual(got, want) { + panic(fmt.Sprintf("Merge returned %v, want %v", got, want)) + } +} + +func TestFilter() { + c := make(chan int) + go func() { + c <- 1 + c <- 2 + c <- 3 + close(c) + }() + even := func(i int) bool { return i%2 == 0 } + ctx := context.Background() + got := a.ReadAll(ctx, a.Filter(ctx, c, even)) + want := []int{2} + if !a.SliceEqual(got, want) { + panic(fmt.Sprintf("Filter returned %v, want %v", got, want)) + } +} + +func TestSink() { + c := a.Sink[int](context.Background()) + after := time.NewTimer(time.Minute) + defer after.Stop() + send := func(v int) { + select { + case c <- v: + case <-after.C: + panic("timed out sending to Sink") + } + } + send(1) + send(2) + send(3) + close(c) +} + +func TestExclusive() { + val := 0 + ex := a.MakeExclusive(&val) + + var wg sync.WaitGroup + f := func() { + defer wg.Done() + for i := 0; i < 10; i++ { + p := ex.Acquire() + (*p)++ + ex.Release(p) + } + } + + wg.Add(2) + go f() + go f() + + wg.Wait() + if val != 20 { + panic(fmt.Sprintf("after Acquire/Release loop got %d, want 20", val)) + } +} + +func TestExclusiveTry() { + s := "" + ex := a.MakeExclusive(&s) + p, ok := ex.TryAcquire() + if !ok { + panic("TryAcquire failed") + } + *p = "a" + + var wg sync.WaitGroup + wg.Add(1) + go func() { + defer wg.Done() + _, ok := ex.TryAcquire() + if ok { + panic(fmt.Sprintf("TryAcquire succeeded unexpectedly")) + } + }() + wg.Wait() + + ex.Release(p) + + p, ok = ex.TryAcquire() + if !ok { + panic(fmt.Sprintf("TryAcquire failed")) + } +} + +func TestRanger() { + s, r := a.Ranger[int]() + + ctx := context.Background() + go func() { + // Receive one value then exit. + v, ok := r.Next(ctx) + if !ok { + panic(fmt.Sprintf("did not receive any values")) + } else if v != 1 { + panic(fmt.Sprintf("received %d, want 1", v)) + } + }() + + c1 := make(chan bool) + c2 := make(chan bool) + go func() { + defer close(c2) + if !s.Send(ctx, 1) { + panic(fmt.Sprintf("Send failed unexpectedly")) + } + close(c1) + if s.Send(ctx, 2) { + panic(fmt.Sprintf("Send succeeded unexpectedly")) + } + }() + + <-c1 + + // Force a garbage collection to try to get the finalizers to run. + runtime.GC() + + select { + case <-c2: + case <-time.After(time.Minute): + panic("Ranger Send should have failed, but timed out") + } +} + +func main() { + TestReadAll() + TestMerge() + TestFilter() + TestSink() + TestExclusive() + TestExclusiveTry() + TestRanger() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..f5cb6dc7623c86dd82ecc69805965890287b43df --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/a.go @@ -0,0 +1,10 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +//go:noinline +func F[T comparable](a, b T) bool { + return a == b +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..8507c6413770c97680fc9045fc2318dd736519ff --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/b.go @@ -0,0 +1,14 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func B() { + var x int64 + println(a.F(&x, &x)) + var y int32 + println(a.F(&y, &y)) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/c.go b/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..a1c950f1cb876dd92da4cb2daf8df628b461b4e9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/c.go @@ -0,0 +1,14 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +import "./a" + +func C() { + var x int64 + println(a.F(&x, &x)) + var y int32 + println(a.F(&y, &y)) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..920591b04fb3a8d981fa0ae767643fc359a8bb16 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/dedup.dir/main.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./b" + "./c" +) + +func main() { + b.B() + c.C() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/factimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/factimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..0bd73a88e7daef699992f7ce8756334f69f5e42a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/factimp.dir/a.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func Fact[T interface{ int | int64 | float64 }](n T) T { + if n == 1 { + return 1 + } + return n * Fact(n-1) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/factimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/factimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..75e08da01acd81220c0108aa0815243eb3bd5711 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/factimp.dir/main.go @@ -0,0 +1,26 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" +) + +func main() { + const want = 120 + + if got := a.Fact(5); got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + + if got := a.Fact[int64](5); got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + + if got := a.Fact(5.0); got != want { + panic(fmt.Sprintf("got %f, want %f", got, want)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/gencrawler.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/gencrawler.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..50d6b4adebd3359973108f696b031e3dfdc6d23a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/gencrawler.dir/a.go @@ -0,0 +1,27 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +var V val[int] + +type val[T any] struct { + valx T +} + +func (v *val[T]) Print() { + v.print1() +} + +func (v *val[T]) print1() { + println(v.valx) +} + +func (v *val[T]) fnprint1() { + println(v.valx) +} + +func FnPrint[T any](v *val[T]) { + v.fnprint1() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/gencrawler.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/gencrawler.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..198d117df6274cba01a240b2faa3421a41b5014f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/gencrawler.dir/main.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + a.V.Print() + a.FnPrint(&a.V) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/geninline.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/geninline.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..fe5ba22f6ee51a85d7cec7350dab8dbf9eedd2a0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/geninline.dir/a.go @@ -0,0 +1,56 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type IVal[T comparable] interface { + check(want T) +} + +type Val[T comparable] struct { + val T +} + +//go:noinline +func (l *Val[T]) check(want T) { + if l.val != want { + panic("hi") + } +} + +func Test1() { + var l Val[int] + if l.val != 0 { + panic("hi") + } + _ = IVal[int](&l) +} + +func Test2() { + var l Val[float64] + l.val = 3.0 + l.check(float64(3)) + _ = IVal[float64](&l) +} + +type privateVal[T comparable] struct { + val T +} + +//go:noinline +func (l *privateVal[T]) check(want T) { + if l.val != want { + panic("hi") + } +} + +type Outer struct { + val privateVal[string] +} + +func Test3() { + var o Outer + o.val.check("") + _ = IVal[string](&o.val) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/geninline.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/geninline.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..cfc48859a3eac2ae60fcaa83fc60810bd24fc0b7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/geninline.dir/main.go @@ -0,0 +1,16 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +// Testing inlining of functions that refer to instantiated exported and non-exported +// generic types. + +func main() { + a.Test1() + a.Test2() + a.Test3() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue46461b.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue46461b.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..fcb414266d741c028cf82fd0ff2d7dff1ef5627b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue46461b.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T[U interface{ M() int }] int diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue46461b.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue46461b.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..a4583257ffd657fbe1af1566cd6ad23babbc3e71 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue46461b.dir/b.go @@ -0,0 +1,13 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type X int + +func (X) M() int { return 0 } + +type _ a.T[X] diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue47514c.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue47514c.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..782b1d2a4f83af530938cf484c0c4ce1f2257d18 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue47514c.dir/a.go @@ -0,0 +1,5 @@ +package a + +type Doer[T any] interface { + Do() T +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue47514c.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue47514c.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..0ef423f68070690bef49343f66b6bf1b5a34fff5 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue47514c.dir/main.go @@ -0,0 +1,10 @@ +package main + +import "./a" + +func Do[T any](doer a.Doer[T]) { + doer.Do() +} + +func main() { +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue47775.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue47775.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..b6d7ba97c59c11efb413b23107569e540db3f952 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue47775.dir/b.go @@ -0,0 +1,19 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +type C[T any] struct { +} + +func (c *C[T]) reset() { +} + +func New[T any]() { + c := &C[T]{} + z(c.reset) +} + +func z(interface{}) { +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue47775.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue47775.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..5ec85a49d27575c6f0b9708db0657cabefbd2436 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue47775.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./b" + +func main() { + b.New[int]() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue47892.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue47892.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..b63d604eeb6e1af9b663f9e2bf0bc77d40b3db1c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue47892.dir/a.go @@ -0,0 +1,17 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Index[T any] interface { + G() T +} + +type I1[T any] struct { + a T +} + +func (i *I1[T]) G() T { + return i.a +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue47892.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue47892.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..348e38b638cee4e967a2538acaefa9311012a634 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue47892.dir/main.go @@ -0,0 +1,21 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +type Model[T any] struct { + index a.Index[T] +} + +func NewModel[T any](index a.Index[T]) Model[T] { + return Model[T]{ + index: index, + } +} + +func main() { + _ = NewModel[int]((*a.I1[int])(nil)) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue47892b.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue47892b.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..5adb492578499f394505f812d63ee718bf314d9b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue47892b.dir/a.go @@ -0,0 +1,29 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T struct{ p *int64 } + +type i struct{} + +func G() *T { return &T{nil} } + +func (j i) F(a, b *T) *T { + n := *a.p + *b.p + return &T{&n} +} + +func (j i) G() *T { + return &T{} +} + +type I[Idx any] interface { + G() Idx + F(a, b Idx) Idx +} + +func Gen() I[*T] { + return i{} +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue47892b.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue47892b.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..3cd658f0e37627a5e689225e0018ba03ada2b160 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue47892b.dir/main.go @@ -0,0 +1,17 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +type S[Idx any] struct { + A string + B Idx +} + +type O[Idx any] struct { + A int + B a.I[Idx] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48094.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue48094.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..dd8c16f3ae24f9c32e39a12119c32a2b459379fe --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48094.dir/a.go @@ -0,0 +1,26 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import "unsafe" + +func F[T any]() uintptr { + var t T + return unsafe.Sizeof(t) +} + +func G[T any]() uintptr { + var t T + return unsafe.Alignof(t) +} + +//func H[T any]() uintptr { +// type S struct { +// a T +// b T +// } +// var s S +// return unsafe.Offsetof(s.b) +//} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48094.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue48094.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..78337da9ef27fa1c3636ec5462bb1127c83e0386 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48094.dir/main.go @@ -0,0 +1,20 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + if a.F[int64]() != 8 { + panic("bad") + } + if a.G[int8]() != 1 { + panic("bad") + } + // TODO: enable once 47631 is fixed. + //if a.H[int64]() != 8 { + // panic("bad") + //} +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48094b.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue48094b.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..a113a224f7739d1197e96f6884a9f324e99a1647 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48094b.dir/a.go @@ -0,0 +1,8 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F() { G(0) } +func G[T any](t T) {} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48094b.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue48094b.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..242b34aa3185fae4ae15f69e4337567580984055 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48094b.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func H() { a.F() } diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48185a.dir/p.go b/platform/dbops/binaries/go/go/test/typeparam/issue48185a.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..176c7f4de5c5a8c4d22fa44173c71c267840ee95 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48185a.dir/p.go @@ -0,0 +1,19 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +type MarshalOptions struct { + Marshalers *Marshalers +} + +type Encoder struct {} + +type Marshalers = marshalers[MarshalOptions, Encoder] + +type marshalers[Options, Coder any] struct{} + +func MarshalFuncV1[T any](fn func(T) ([]byte, error)) *Marshalers { + return &Marshalers{} +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48185a.dir/p_test.go b/platform/dbops/binaries/go/go/test/typeparam/issue48185a.dir/p_test.go new file mode 100644 index 0000000000000000000000000000000000000000..a89d69744c994d6705fd62b7c4d8fcbb247ceac9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48185a.dir/p_test.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./p" + +func main() { + _ = p.MarshalFuncV1[int](func(int) ([]byte, error) { return nil, nil }) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48185b.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue48185b.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..9aed60cfaee7394cabd7b3a596fe0b575dfaa8f9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48185b.dir/a.go @@ -0,0 +1,37 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import ( + "reflect" + "sync" +) + +type addressableValue struct{ reflect.Value } + +type arshalers[Options, Coder any] struct { + fncVals []typedArshaler[Options, Coder] + fncCache sync.Map // map[reflect.Type]unmarshaler +} +type typedArshaler[Options, Coder any] struct { + typ reflect.Type + fnc func(Options, *Coder, addressableValue) error +} + +type UnmarshalOptions1 struct { + // Unmarshalers is a list of type-specific unmarshalers to use. + Unmarshalers *arshalers[UnmarshalOptions1, Decoder1] +} + +type Decoder1 struct { +} + +func (a *arshalers[Options, Coder]) lookup(fnc func(Options, *Coder, addressableValue) error, t reflect.Type) func(Options, *Coder, addressableValue) error { + return fnc +} + +func UnmarshalFuncV2[T any](fn func(UnmarshalOptions1, *Decoder1, T) error) *arshalers[UnmarshalOptions1, Decoder1] { + return &arshalers[UnmarshalOptions1, Decoder1]{} +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48185b.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue48185b.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..ea157f7d6d43199a4b3743bcea663844c84df61b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48185b.dir/main.go @@ -0,0 +1,18 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" +) + +func main() { + _ = a.UnmarshalOptions1{ + Unmarshalers: a.UnmarshalFuncV2(func(opts a.UnmarshalOptions1, dec *a.Decoder1, val *interface{}) (err error) { + return fmt.Errorf("error") + }), + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48280.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue48280.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..f66fd30e34ee432300fb932c332fc401818a65e6 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48280.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I[T any] interface { + F() T +} + +type S struct{} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48280.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue48280.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..2c8387dd429686cde5e7a0120f897bce211f4b0b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48280.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + _ = a.S{} +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48306.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue48306.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..fdfd86cb6d4a5dc6390e936ccee80aa92531c6ad --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48306.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I[T any] interface { + F() T +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48306.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue48306.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..260c3c87eb1dca1d1062ac9063eb7c98467a391a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48306.dir/main.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +type S struct{} + +func (*S) F() *S { return nil } + +func main() { + var _ a.I[*S] = &S{} +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48337a.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue48337a.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..6f1b128589bde634cce287f25694c9f3fe9fe003 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48337a.dir/a.go @@ -0,0 +1,32 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import ( + "fmt" + "sync" +) + +type WrapperWithLock[T any] interface { + PrintWithLock() +} + +func NewWrapperWithLock[T any](value T) WrapperWithLock[T] { + return &wrapperWithLock[T]{ + Object: value, + } +} + +type wrapperWithLock[T any] struct { + Lock sync.Mutex + Object T +} + +func (w *wrapperWithLock[T]) PrintWithLock() { + w.Lock.Lock() + defer w.Lock.Unlock() + + fmt.Println(w.Object) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48337a.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue48337a.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..ddf672414e65882827111c57ca9f5034f243a531 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48337a.dir/main.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + obj := a.NewWrapperWithLock("this file does import sync") + obj.PrintWithLock() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48337b.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue48337b.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..a3c2e88a2f2ba317f4ed91e77d87efbe226890b9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48337b.dir/a.go @@ -0,0 +1,25 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Container[T any] struct { + X T +} + +func NewContainer[T any](x T) *Container[T] { + return &Container[T]{x} +} + +type MetaContainer struct { + C *Container[Value] +} + +type Value struct{} + +func NewMetaContainer() *MetaContainer { + c := NewContainer(Value{}) + // c := &Container[Value]{Value{}} // <-- this works + return &MetaContainer{c} +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48337b.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue48337b.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..0318b67608730300291bd6cc8ec78bac570e614d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48337b.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + a.NewMetaContainer() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48454.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue48454.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..9613916a4c8bb8df1cee6fff49151c682c08d925 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48454.dir/a.go @@ -0,0 +1,16 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import "sync" + +type Val[T any] struct { + mu sync.RWMutex + val T +} + +func (v *Val[T]) Has() { + v.mu.RLock() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48454.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue48454.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..deb59d2ec84444b82389e4329e67e6038b2ab5bd --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48454.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type Session struct { + privateField a.Val[string] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48454.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue48454.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..ad9d290a8a467bfc5513ff4eb2e7c8eda109f295 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48454.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./b" + +func main() { + var _ b.Session +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48462.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue48462.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..26c704dbe4617dd30d9166ed5639088f616590bb --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48462.dir/a.go @@ -0,0 +1,22 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func Unique[T comparable](set []T) []T { + nset := make([]T, 0, 8) + +loop: + for _, s := range set { + for _, e := range nset { + if s == e { + continue loop + } + } + + nset = append(nset, s) + } + + return nset +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48462.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue48462.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..e615367f3e2090ed9c0d56413df450851b060b6c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48462.dir/main.go @@ -0,0 +1,23 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "fmt" + "reflect" + + "./a" +) + +func main() { + e := []int{1, 2, 2, 3, 1, 6} + + got := a.Unique(e) + want := []int{1, 2, 3, 6} + if !reflect.DeepEqual(got, want) { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48716.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue48716.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..63e599d9a18696840d7c9ca9db716470e0e59f07 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48716.dir/a.go @@ -0,0 +1,51 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Pair[L, R any] struct { + L L + R R +} + +func Two[L, R any](l L, r R) Pair[L, R] { + return Pair[L, R]{L: l, R: r} +} + +type Map[K, V any] interface { + Put(K, V) + Len() int + Iterate(func(Pair[K, V]) bool) +} + +type HashMap[K comparable, V any] struct { + m map[K]V +} + +func NewHashMap[K comparable, V any](capacity int) HashMap[K, V] { + var m map[K]V + if capacity >= 1 { + m = make(map[K]V, capacity) + } else { + m = map[K]V{} + } + + return HashMap[K, V]{m: m} +} + +func (m HashMap[K, V]) Put(k K, v V) { + m.m[k] = v +} + +func (m HashMap[K, V]) Len() int { + return len(m.m) +} + +func (m HashMap[K, V]) Iterate(cb func(Pair[K, V]) bool) { + for k, v := range m.m { + if !cb(Two(k, v)) { + return + } + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48716.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue48716.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..13a126e8690662350a8f1422e566ec3de2afe932 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48716.dir/main.go @@ -0,0 +1,58 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" +) + +// Creates copy of set +func Copy[T comparable](src MapSet[T]) (dst MapSet[T]) { + dst = HashSet[T](src.Len()) + Fill(src, dst) + return +} + +// Fill src from dst +func Fill[T any](src, dst MapSet[T]) { + src.Iterate(func(t T) bool { + dst.Add(t) + return true + }) + return +} + +type MapSet[T any] struct { + m a.Map[T, struct{}] +} + +func HashSet[T comparable](capacity int) MapSet[T] { + return FromMap[T](a.NewHashMap[T, struct{}](capacity)) +} + +func FromMap[T any](m a.Map[T, struct{}]) MapSet[T] { + return MapSet[T]{ + m: m, + } +} + +func (s MapSet[T]) Add(t T) { + s.m.Put(t, struct{}{}) +} + +func (s MapSet[T]) Len() int { + return s.m.Len() +} + +func (s MapSet[T]) Iterate(cb func(T) bool) { + s.m.Iterate(func(p a.Pair[T, struct{}]) bool { + return cb(p.L) + }) +} + +func main() { + x := FromMap[int](a.NewHashMap[int, struct{}](1)) + Copy[int](x) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48962.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue48962.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..a6d273476edaded7f033a9dc82e36618eb5b2812 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48962.dir/a.go @@ -0,0 +1,12 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type ( + A[P any] [10]P + S[P any] struct{ f P } + P[P any] *P + M[K comparable, V any] map[K]V +) diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue48962.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue48962.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..e4eaa068197863a978486f5e25d7464916ce82b5 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue48962.dir/b.go @@ -0,0 +1,51 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type ( + lA[P any] [10]P + lS[P any] struct{ f P } + lP[P any] *P + lM[K comparable, V any] map[K]V +) + +// local cycles +type ( + A lA[A] // ERROR "invalid recursive type" + S lS[S] // ERROR "invalid recursive type" + P lP[P] // ok (indirection through lP) + M1 lM[int, M1] // ok (indirection through lM) + M2 lM[lA[byte], M2] // ok (indirection through lM) + + A2 lA[lS[lP[A2]]] // ok (indirection through lP) + A3 lA[lS[lS[A3]]] // ERROR "invalid recursive type" +) + +// cycles through imported types +type ( + Ai a.A[Ai] // ERROR "invalid recursive type" + Si a.S[Si] // ERROR "invalid recursive type" + Pi a.P[Pi] // ok (indirection through a.P) + M1i a.M[int, M1i] // ok (indirection through a.M) + M2i a.M[a.A[byte], M2i] // ok (indirection through a.M) + + A2i a.A[a.S[a.P[A2i]]] // ok (indirection through a.P) + A3i a.A[a.S[a.S[A3i]]] // ERROR "invalid recursive type" + + T2 a.S[T0[T2]] // ERROR "invalid recursive type" + T3 T0[Ai] // no follow-on error here +) + +// test case from issue + +type T0[P any] struct { + f P +} + +type T1 struct { // ERROR "invalid recursive type" + _ T0[T1] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49027.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue49027.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..da88297965ec213caba577b318242dcec217fc6f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49027.dir/a.go @@ -0,0 +1,55 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func Conv(v interface{}) string { + return conv[string](v) +} + +func conv[T any](v interface{}) T { + return v.(T) +} + +func Conv2(v interface{}) (string, bool) { + return conv2[string](v) +} + +func conv2[T any](v interface{}) (T, bool) { + x, ok := v.(T) + return x, ok +} + +func Conv3(v interface{}) string { + return conv3[string](v) +} + +func conv3[T any](v interface{}) T { + switch v := v.(type) { + case T: + return v + default: + var z T + return z + } +} + +type Mystring string + +func (Mystring) Foo() { +} + +func Conv4(v interface{Foo()}) Mystring { + return conv4[Mystring](v) +} + +func conv4[T interface{Foo()}](v interface{Foo()}) T { + switch v := v.(type) { + case T: + return v + default: + var z T + return z + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49027.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue49027.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..d998c5bd22a043ebf7a09aac8692a8053b88bbec --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49027.dir/main.go @@ -0,0 +1,33 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" +) + +func main() { + s := "foo" + x := a.Conv(s) + if x != s { + panic(fmt.Sprintf("got %s wanted %s", x, s)) + } + y, ok := a.Conv2(s) + if !ok { + panic("conversion failed") + } + if y != s { + panic(fmt.Sprintf("got %s wanted %s", y, s)) + } + z := a.Conv3(s) + if z != s { + panic(fmt.Sprintf("got %s wanted %s", z, s)) + } + w := a.Conv4(a.Mystring(s)) + if w != a.Mystring(s) { + panic(fmt.Sprintf("got %s wanted %s", w, s)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..34c99657d49b9594393b02ba792de821102e8418 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T[P any] struct { + x P +} + +type U struct { + a,b int +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..e5f1e1290eb8ddd17ccf444e63cae7ba38c44c9a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/b.go @@ -0,0 +1,17 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +//go:noinline +func F() interface{} { + return a.T[int]{} +} + +//go:noinline +func G() interface{} { + return struct{ X, Y a.U }{} +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/c.go b/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..34ea7c3ffae86f2c17af762047fcdee613975d66 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/c.go @@ -0,0 +1,17 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +import "./a" + +//go:noinline +func F() interface{} { + return a.T[int]{} +} + +//go:noinline +func G() interface{} { + return struct{ X, Y a.U }{} +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..58bb8a017f16f3882c978e986846593b5dac18ee --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49241.dir/main.go @@ -0,0 +1,21 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./b" + "./c" +) + +func main() { + if b.G() != c.G() { + println(b.G(), c.G()) + panic("bad") + } + if b.F() != c.F() { + println(b.F(), c.F()) + panic("bad") + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49246.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue49246.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..97459ee7481de590169e3453c77399aa1f4807b1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49246.dir/a.go @@ -0,0 +1,20 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type R[T any] struct{ v T } + +func (r R[T]) Self() R[T] { return R[T]{} } + +type Fn[T any] func() R[T] + +func X() (r R[int]) { return r.Self() } + +func Y[T any](a Fn[T]) Fn[int] { + return func() (r R[int]) { + // No crash: return R[int]{} + return r.Self() + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49246.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue49246.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..5141b72fd4ddceb5d2ec320481bec4e7f95546fb --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49246.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func Crash() { a.Y(a.X)() } diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49497.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue49497.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..86062d446ffff60a62f53625b1b287919a2638bb --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49497.dir/a.go @@ -0,0 +1,26 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F[T any]() A[T] { + var x A[T] + return x +} + +type A[T any] struct { + b B[T] +} + +func (a A[T]) M() C[T] { + return C[T]{ + B: a.b, + } +} + +type B[T any] struct{} + +type C[T any] struct { + B B[T] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49497.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue49497.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..e74dae08598ced8e8b1d8eeba9bd082b5bc4a520 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49497.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + a.F[string]() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49524.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue49524.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..f40075e953ee6ae0b15f7f2492169ec43c1996b8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49524.dir/a.go @@ -0,0 +1,8 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F[T any]() { +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49524.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue49524.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..8787e7ea69b365137ef2964dd460333eb208ec0c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49524.dir/main.go @@ -0,0 +1,11 @@ +package main + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +import "./a" + +func main() { + a.F[int]() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49536.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue49536.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..a95ad60812cbaa3683174fb6fdefa0606e9547a1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49536.dir/a.go @@ -0,0 +1,12 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F() interface{} { return new(T[int]) } + +type T[P any] int + +func (x *T[P]) One() int { return x.Two() } +func (x *T[P]) Two() int { return 0 } diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49536.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue49536.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..b08a77b9de1c2d64d6ac1958ecc588e2f6237716 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49536.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var _ = a.F() diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49659.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue49659.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..718bc0c5fce5d7dbd7c305e082a9280b0a780338 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49659.dir/a.go @@ -0,0 +1,13 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type A[T any] struct { + a int +} + +func (a A[T]) F() { + _ = &a.a +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49659.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue49659.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..4818a42a486f373e6cf863fdd4bea25aee9e0cf4 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49659.dir/b.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type B[T any] struct { + v a.A[T] +} + +func (b B[T]) F() { + b.v.F() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49667.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue49667.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..3b1889f699272da8af5b7cd06a29fe589f7e5cef --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49667.dir/a.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type A[T any] struct { +} + +func (a A[T]) F() { + _ = a +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49667.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue49667.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..81cdb80036dc14ce87cf0988bb10015aabcee68c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49667.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type B[T any] struct { + _ a.A[T] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49667.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue49667.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..f9fa60f3f533a0a952cd7ff22f3efce8b59861ca --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49667.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./b" + +func main() { + var _ b.B[int] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49893.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue49893.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..bc810cd3dd5300752cd3b36322aecc983b68c245 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49893.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Option[T any] interface { + ToSeq() Seq[T] +} + +type Seq[T any] []T + +func (r Seq[T]) Find(p func(v T) bool) Option[T] { + panic("") +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49893.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue49893.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..b86b53666489149a7c31a1e60adc0d96e96644cd --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49893.dir/b.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type Ap1[A, B any] struct { + opt a.Option[A] +} + +type Ap2[A, B any] struct { + opt a.Option[A] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue49893.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue49893.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..447212d027648f1fee31e1fe35c823f16f04a6ae --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue49893.dir/main.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./b" + "fmt" +) + +func main() { + opt := b.Ap1[string, string]{} + fmt.Println(opt) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50121.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue50121.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..ca11b6b27a2d1a6dc3eafb188b3dd4335bf6bfa1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50121.dir/a.go @@ -0,0 +1,26 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import ( + "math/rand" +) + +type Integer interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr +} + +type Builder[T Integer] struct{} + +func (r Builder[T]) New() T { + return T(rand.Int()) +} + +var IntBuilder = Builder[int]{} + +func BuildInt() int { + return IntBuilder.New() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50121.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue50121.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..3978ef4fba8353eb58201a769ab2aa1909a73613 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50121.dir/main.go @@ -0,0 +1,18 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" +) + +//go:noinline +func BuildInt() int { + return a.BuildInt() +} + +func main() { + BuildInt() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..4ddbb6ea847765f0b8d3dd1a990a1dff3f950280 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/a.go @@ -0,0 +1,16 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Integer interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr +} + +type Builder[T Integer] struct{} + +func (r Builder[T]) New() T { + return T(42) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..efa6cbbc307e378bc66d8a6dc6b3c70aa22d12ac --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import ( + "./a" +) + +var IntBuilder = a.Builder[int]{} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/c.go b/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/c.go new file mode 100644 index 0000000000000000000000000000000000000000..169135678dad1ec1600523268d5337fd7798019e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/c.go @@ -0,0 +1,13 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package c + +import ( + "./b" +) + +func BuildInt() int { + return b.IntBuilder.New() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/d.go b/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/d.go new file mode 100644 index 0000000000000000000000000000000000000000..93b40c921e04a77240a8a8cc07518c4a46edc623 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/d.go @@ -0,0 +1,13 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package d + +import ( + "./c" +) + +func BuildInt() int { + return c.BuildInt() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..33986018506d5964c51617bbe142051daf21e90f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50121b.dir/main.go @@ -0,0 +1,12 @@ +package main + +import ( + "./d" + "fmt" +) + +func main() { + if got, want := d.BuildInt(), 42; got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50437.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue50437.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..4a136b52ae2d00539ac5aa587d5bc2839bdbb9a5 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50437.dir/a.go @@ -0,0 +1,43 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type MarshalOptions struct { + *typedArshalers[MarshalOptions] +} + +func Marshal(in interface{}) (out []byte, err error) { + return MarshalOptions{}.Marshal(in) +} + +func (mo MarshalOptions) Marshal(in interface{}) (out []byte, err error) { + err = mo.MarshalNext(in) + return nil, err +} + +func (mo MarshalOptions) MarshalNext(in interface{}) error { + a := new(arshaler) + a.marshal = func(MarshalOptions) error { return nil } + return a.marshal(mo) +} + +type arshaler struct { + marshal func(MarshalOptions) error +} + +type typedArshalers[Options any] struct { + m M +} + +func (a *typedArshalers[Options]) lookup(fnc func(Options) error) (func(Options) error, bool) { + a.m.Load(nil) + return fnc, false +} + +type M struct {} + +func (m *M) Load(key any) (value any, ok bool) { + return +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50437.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue50437.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..afddc3f3307493bbc47b47af165c95d9189f455c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50437.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func f() { + a.Marshal(map[int]int{}) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50481b.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue50481b.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..d458357c51f2f670ca86e4dad258ec600e95d120 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50481b.dir/b.go @@ -0,0 +1,16 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "fmt" + +type Foo[T1 ~string, T2 ~int] struct { + ValueA T1 + ValueB T2 +} + +func (f *Foo[_, _]) String() string { + return fmt.Sprintf("%v %v", f.ValueA, f.ValueB) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50481b.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue50481b.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..6a5067c9fb2d862fd09c5a4c2106aeab39e47189 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50481b.dir/main.go @@ -0,0 +1,23 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that type substitution and export/import works correctly even for a method of +// a generic type that has multiple blank type params. + +package main + +import ( + "./b" + "fmt" +) + +func main() { + foo := &b.Foo[string, int]{ + ValueA: "i am a string", + ValueB: 123, + } + if got, want := fmt.Sprintln(foo), "i am a string 123\n"; got != want { + panic(fmt.Sprintf("got %s, want %s", got, want)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50481c.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue50481c.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..384ba23f989ed0a1a11c4b77d9a99869256fda0a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50481c.dir/a.go @@ -0,0 +1,30 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type A interface { + int | int64 +} + +type B interface { + string +} + +type C interface { + String() string +} + +type Myint int + +func (i Myint) String() string { + return "aa" +} + +type T[P A, _ C, _ B] int + +func (v T[P, Q, R]) test() { + var r Q + r.String() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50481c.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue50481c.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..178542bc380eb3657ffd39d59033d587c5824a33 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50481c.dir/main.go @@ -0,0 +1,18 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that type substitution works and export/import works correctly even for a +// generic type that has multiple blank type params. + +package main + +import ( + "./a" + "fmt" +) + +func main() { + var x a.T[int, a.Myint, string] + fmt.Printf("%v\n", x) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50485.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue50485.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..97cf4d254951a29988d715bec1af8787923943b0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50485.dir/a.go @@ -0,0 +1,238 @@ +package a + +import "fmt" + +type ImplicitOrd interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | + ~float32 | ~float64 | + ~string +} + +func LessGiven[T ImplicitOrd]() Ord[T] { + return LessFunc[T](func(a, b T) bool { + return a < b + }) +} + +type Eq[T any] interface { + Eqv(a T, b T) bool +} + +type Ord[T any] interface { + Eq[T] + Less(a T, b T) bool +} + +type LessFunc[T any] func(a, b T) bool + +func (r LessFunc[T]) Eqv(a, b T) bool { + return r(a, b) == false && r(b, a) == false +} + +func (r LessFunc[T]) Less(a, b T) bool { + return r(a, b) +} + +type Option[T any] struct { + v *T +} + +func (r Option[T]) IsDefined() bool { + return r.v != nil +} + +func (r Option[T]) IsEmpty() bool { + return !r.IsDefined() +} + +func (r Option[T]) Get() T { + return *r.v +} + +func (r Option[T]) String() string { + if r.IsDefined() { + return fmt.Sprintf("Some(%v)", r.v) + } else { + return "None" + } +} + +func (r Option[T]) OrElse(t T) T { + if r.IsDefined() { + return *r.v + } + return t +} + +func (r Option[T]) Recover(f func() T) Option[T] { + if r.IsDefined() { + return r + } + t := f() + return Option[T]{&t} +} + +type Func1[A1, R any] func(a1 A1) R + +type Func2[A1, A2, R any] func(a1 A1, a2 A2) R + +func (r Func2[A1, A2, R]) Curried() Func1[A1, Func1[A2, R]] { + return func(a1 A1) Func1[A2, R] { + return Func1[A2, R](func(a2 A2) R { + return r(a1, a2) + }) + } +} + +type HList interface { + sealed() +} + +// Header is constrains interface type, enforce Head type of Cons is HT +type Header[HT any] interface { + HList + Head() HT +} + +// Cons means H :: T +// zero value of Cons[H,T] is not allowed. +// so Cons defined as interface type +type Cons[H any, T HList] interface { + HList + Head() H + Tail() T +} + +type Nil struct { +} + +func (r Nil) Head() Nil { + return r +} + +func (r Nil) Tail() Nil { + return r +} + +func (r Nil) String() string { + return "Nil" +} + +func (r Nil) sealed() { + +} + +type hlistImpl[H any, T HList] struct { + head H + tail T +} + +func (r hlistImpl[H, T]) Head() H { + return r.head +} + +func (r hlistImpl[H, T]) Tail() T { + return r.tail +} + +func (r hlistImpl[H, T]) String() string { + return fmt.Sprintf("%v :: %v", r.head, r.tail) +} + +func (r hlistImpl[H, T]) sealed() { + +} + +func hlist[H any, T HList](h H, t T) Cons[H, T] { + return hlistImpl[H, T]{h, t} +} + +func Concat[H any, T HList](h H, t T) Cons[H, T] { + return hlist(h, t) +} + +func Empty() Nil { + return Nil{} +} +func Some[T any](v T) Option[T] { + return Option[T]{}.Recover(func() T { + return v + }) +} + +func None[T any]() Option[T] { + return Option[T]{} +} + +func Ap[T, U any](t Option[Func1[T, U]], a Option[T]) Option[U] { + return FlatMap(t, func(f Func1[T, U]) Option[U] { + return Map(a, f) + }) +} + +func Map[T, U any](opt Option[T], f func(v T) U) Option[U] { + return FlatMap(opt, func(v T) Option[U] { + return Some(f(v)) + }) +} + +func FlatMap[T, U any](opt Option[T], fn func(v T) Option[U]) Option[U] { + if opt.IsDefined() { + return fn(opt.Get()) + } + return None[U]() +} + +type ApplicativeFunctor1[H Header[HT], HT, A, R any] struct { + h Option[H] + fn Option[Func1[A, R]] +} + +func (r ApplicativeFunctor1[H, HT, A, R]) ApOption(a Option[A]) Option[R] { + return Ap(r.fn, a) +} + +func (r ApplicativeFunctor1[H, HT, A, R]) Ap(a A) Option[R] { + return r.ApOption(Some(a)) +} + +func Applicative1[A, R any](fn Func1[A, R]) ApplicativeFunctor1[Nil, Nil, A, R] { + return ApplicativeFunctor1[Nil, Nil, A, R]{Some(Empty()), Some(fn)} +} + +type ApplicativeFunctor2[H Header[HT], HT, A1, A2, R any] struct { + h Option[H] + fn Option[Func1[A1, Func1[A2, R]]] +} + +func (r ApplicativeFunctor2[H, HT, A1, A2, R]) ApOption(a Option[A1]) ApplicativeFunctor1[Cons[A1, H], A1, A2, R] { + + nh := FlatMap(r.h, func(hv H) Option[Cons[A1, H]] { + return Map(a, func(av A1) Cons[A1, H] { + return Concat(av, hv) + }) + }) + + return ApplicativeFunctor1[Cons[A1, H], A1, A2, R]{nh, Ap(r.fn, a)} +} +func (r ApplicativeFunctor2[H, HT, A1, A2, R]) Ap(a A1) ApplicativeFunctor1[Cons[A1, H], A1, A2, R] { + + return r.ApOption(Some(a)) +} + +func Applicative2[A1, A2, R any](fn Func2[A1, A2, R]) ApplicativeFunctor2[Nil, Nil, A1, A2, R] { + return ApplicativeFunctor2[Nil, Nil, A1, A2, R]{Some(Empty()), Some(fn.Curried())} +} +func OrdOption[T any](m Ord[T]) Ord[Option[T]] { + return LessFunc[Option[T]](func(t1 Option[T], t2 Option[T]) bool { + if !t1.IsDefined() && !t2.IsDefined() { + return false + } + return Applicative2(m.Less).ApOption(t1).ApOption(t2).OrElse(!t1.IsDefined()) + }) +} + +func Given[T ImplicitOrd]() Ord[T] { + return LessGiven[T]() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50485.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue50485.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..7181b937fd6c0ef3676f2e9b1d7e3c42c98a9cda --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50485.dir/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "./a" +) + +func main() { + _ = a.OrdOption(a.Given[int]()) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50486.dir/goerror_fp.go b/platform/dbops/binaries/go/go/test/typeparam/issue50486.dir/goerror_fp.go new file mode 100644 index 0000000000000000000000000000000000000000..fec9095f79678f6cb6f91c7fe06d62b84f72c948 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50486.dir/goerror_fp.go @@ -0,0 +1,75 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package goerror_fp + +type Seq[T any] []T + +func (r Seq[T]) Size() int { + return len(r) +} + +func (r Seq[T]) Append(items ...T) Seq[T] { + tail := Seq[T](items) + ret := make(Seq[T], r.Size()+tail.Size()) + + for i := range r { + ret[i] = r[i] + } + + for i := range tail { + ret[i+r.Size()] = tail[i] + } + + return ret +} + +func (r Seq[T]) Iterator() Iterator[T] { + idx := 0 + + return Iterator[T]{ + IsHasNext: func() bool { + return idx < r.Size() + }, + GetNext: func() T { + ret := r[idx] + idx++ + return ret + }, + } +} + +type Iterator[T any] struct { + IsHasNext func() bool + GetNext func() T +} + +func (r Iterator[T]) ToSeq() Seq[T] { + ret := Seq[T]{} + for r.HasNext() { + ret = append(ret, r.Next()) + } + return ret +} + +func (r Iterator[T]) Map(f func(T) any) Iterator[any] { + return MakeIterator(r.HasNext, func() any { + return f(r.Next()) + }) +} + +func (r Iterator[T]) HasNext() bool { + return r.IsHasNext() +} + +func (r Iterator[T]) Next() T { + return r.GetNext() +} + +func MakeIterator[T any](has func() bool, next func() T) Iterator[T] { + return Iterator[T]{ + IsHasNext: has, + GetNext: next, + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50486.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue50486.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..c2c8eea73d7bcc9c2dad20945043caafa25e2d3c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50486.dir/main.go @@ -0,0 +1,16 @@ +package main + +import fp "./goerror_fp" + +func Fold[A, B any](zero B, a A, f func(B, A) B) B { + return f(zero, a) +} + +func main() { + + var v any = "hello" + Fold(fp.Seq[any]{}, v, func(seq fp.Seq[any], v any) fp.Seq[any] { + return seq.Append(v) + }) + +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50552.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue50552.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..89b9bcb87775ea5888ede70fadd1f39bbb24f315 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50552.dir/a.go @@ -0,0 +1,16 @@ +package a + +type Builder[T any] struct{} + +func (r Builder[T]) New() T { + var v T + return v +} + +func (r Builder[T]) New2() T { + return r.New() +} + +func BuildInt() int { + return Builder[int]{}.New() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50552.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue50552.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..0ff2ed360877ac251ab957ba77b5beb6973e0c1a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50552.dir/main.go @@ -0,0 +1,20 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" +) + +func BuildInt() int { + return a.BuildInt() +} + +func main() { + if got, want := BuildInt(), 0; got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50561.dir/diameter.go b/platform/dbops/binaries/go/go/test/typeparam/issue50561.dir/diameter.go new file mode 100644 index 0000000000000000000000000000000000000000..2bfe92405da520ff78bc5ef3925269ab90d7296f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50561.dir/diameter.go @@ -0,0 +1,86 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package diameter + +type Runnable interface { + Run() +} + +// RunnableFunc is converter which converts function to Runnable interface +type RunnableFunc func() + +// Run is Runnable.Run +func (r RunnableFunc) Run() { + r() +} + +type Executor interface { + ExecuteUnsafe(runnable Runnable) +} + +type Promise[T any] interface { + Future() Future[T] + Success(value T) bool + Failure(err error) bool + IsCompleted() bool + Complete(result Try[T]) bool +} + +type Future[T any] interface { + OnFailure(cb func(err error), ctx ...Executor) + OnSuccess(cb func(success T), ctx ...Executor) + Foreach(f func(v T), ctx ...Executor) + OnComplete(cb func(try Try[T]), ctx ...Executor) + IsCompleted() bool + // Value() Option[Try[T]] + Failed() Future[error] + Recover(f func(err error) T, ctx ...Executor) Future[T] + RecoverWith(f func(err error) Future[T], ctx ...Executor) Future[T] +} + +type Try[T any] struct { + v *T + err error +} + +func (r Try[T]) IsSuccess() bool { + return r.v != nil +} + +type ByteBuffer struct { + pos int + buf []byte + underflow error +} + +// InboundHandler is extends of uclient.NetInboundHandler +type InboundHandler interface { + OriginHost() string + OriginRealm() string +} + +type transactionID struct { + hopID uint32 + endID uint32 +} + +type roundTripper struct { + promise map[transactionID]Promise[*ByteBuffer] + host string + realm string +} + +func (r *roundTripper) OriginHost() string { + return r.host +} +func (r *roundTripper) OriginRealm() string { + return r.realm +} + +func NewInboundHandler(host string, realm string, productName string) InboundHandler { + ret := &roundTripper{promise: make(map[transactionID]Promise[*ByteBuffer]), host: host, realm: realm} + + return ret +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50561.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue50561.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..3e656bde32dc81d1045700e2bb06fdc66e5190d5 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50561.dir/main.go @@ -0,0 +1,13 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./diameter" +) + +func main() { + diameter.NewInboundHandler("hello", "world", "hi") +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/a0.go b/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/a0.go new file mode 100644 index 0000000000000000000000000000000000000000..61d353e462cd69fb821403344c5a97afe9bc87db --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/a0.go @@ -0,0 +1,23 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a0 + +type Builder[T any] struct{} + +func (r Builder[T]) New1() T { + var v T + return v +} + +func (r Builder[T]) New2() T { + var v T + return v +} + +type IntBuilder struct{} + +func (b IntBuilder) New() int { + return Builder[int]{}.New2() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/a1.go b/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/a1.go new file mode 100644 index 0000000000000000000000000000000000000000..36624b4bd67ac876b793c513eae0b16d709c8e15 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/a1.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a1 + +import "./a0" + +func New() int { + return a0.IntBuilder{}.New() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/a2.go b/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/a2.go new file mode 100644 index 0000000000000000000000000000000000000000..c28be66f6bab288ff603c5eb355b38f0f829d43d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/a2.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a2 + +import "./a0" + +func New() int { + return a0.Builder[int]{}.New1() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..b0b6844ccc2858ea6182a208f5b39f8a56ff353f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50598.dir/main.go @@ -0,0 +1,22 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "fmt" + + "./a1" + "./a2" +) + +func New() int { + return a1.New() + a2.New() +} + +func main() { + if got, want := New(), 0; got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50841.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue50841.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..37e023370187e345e031ffba266425ac03c94801 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50841.dir/a.go @@ -0,0 +1,22 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func Marshal[foobar any]() { + _ = NewEncoder[foobar]() +} + +func NewEncoder[foobar any]() *Encoder[foobar] { + return nil +} + +type Encoder[foobar any] struct { +} + +func (e *Encoder[foobar]) EncodeToken(t Token[foobar]) { + +} + +type Token[foobar any] any diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue50841.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue50841.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..38e3de3a6bb6aa8970b787da3ab3c9d6b56272b0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue50841.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func F() { + a.Marshal[int]() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51219.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue51219.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..29670df0d3a764eddd6a8fd293aa022bb27c736d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51219.dir/a.go @@ -0,0 +1,20 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +// Type I is the first basic test for the issue, which relates to a type that is recursive +// via a type constraint. (In this test, I -> IConstraint -> MyStruct -> I.) +type JsonRaw []byte + +type MyStruct struct { + x *I[JsonRaw] +} + +type IConstraint interface { + JsonRaw | MyStruct +} + +type I[T IConstraint] struct { +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51219.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue51219.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..14c6d179d2b38e32454840da1281c8a7d3252909 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51219.dir/main.go @@ -0,0 +1,16 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" +) + +func main() { + var x a.I[a.JsonRaw] + + fmt.Printf("%v\n", x) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51219b.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue51219b.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..19049406a6d9e978ed683ae301675372c60641c3 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51219b.dir/a.go @@ -0,0 +1,37 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Interaction[DataT InteractionDataConstraint] struct { +} + +type InteractionDataConstraint interface { + []byte | + UserCommandInteractionData +} + +type UserCommandInteractionData struct { + resolvedInteractionWithOptions +} + +type resolvedInteractionWithOptions struct { + Resolved Resolved `json:"resolved,omitempty"` +} + +type Resolved struct { + Users ResolvedData[User] `json:"users,omitempty"` +} + +type ResolvedData[T ResolvedDataConstraint] map[uint64]T + +type ResolvedDataConstraint interface { + User | Message +} + +type User struct{} + +type Message struct { + Interaction *Interaction[[]byte] `json:"interaction,omitempty"` +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51219b.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue51219b.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..8413d666b7e2cd9fce155d9aeedc8897a5443dc2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51219b.dir/b.go @@ -0,0 +1,14 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import ( + "./a" +) + +// InteractionRequest is an incoming request Interaction +type InteractionRequest[T a.InteractionDataConstraint] struct { + a.Interaction[T] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51219b.dir/p.go b/platform/dbops/binaries/go/go/test/typeparam/issue51219b.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..9f8b840d48b1b748e0771ffedca213bbf83e9219 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51219b.dir/p.go @@ -0,0 +1,14 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import ( + "./b" +) + +// ResponseWriterMock mocks corde's ResponseWriter interface +type ResponseWriterMock struct { + x b.InteractionRequest[[]byte] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51250a.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue51250a.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..12dd60a3d16b51630c20805168a77a04908dcfb2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51250a.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type G[T any] struct { + x T +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51250a.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue51250a.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..114c9f80f702f42f04b3e837c592c136465a2ae6 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51250a.dir/b.go @@ -0,0 +1,24 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +type T struct { a int } + +var I interface{} = a.G[T]{} + +//go:noinline +func F(x interface{}) { + switch x.(type) { + case a.G[T]: + case int: + panic("bad") + case float64: + panic("bad") + default: + panic("bad") + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51250a.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue51250a.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..45288be482679de77f599fe2b94ef5b32dc9a382 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51250a.dir/main.go @@ -0,0 +1,24 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "./b" +) + +func main() { + switch b.I.(type) { + case a.G[b.T]: + case int: + panic("bad") + case float64: + panic("bad") + default: + panic("bad") + } + + b.F(a.G[b.T]{}) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51367.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue51367.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..be0c3b0688bb91e68fdb3484c5f861b128e93a8f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51367.dir/a.go @@ -0,0 +1,14 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type A[T any] struct{} + +func (_ A[T]) Method() {} + +func DoSomething[P any]() { + a := A[*byte]{} + a.Method() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51367.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue51367.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..1de8793d4db0c9c4de77a449a791f6e1675e33da --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51367.dir/main.go @@ -0,0 +1,13 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" +) + +func main() { + a.DoSomething[byte]() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51423.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue51423.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..e824d0e1654d604204d9c6500d8a0d56834001e7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51423.dir/a.go @@ -0,0 +1,17 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Comparator[T any] func(v1, v2 T) int + +func CompareInt[T ~int](a, b T) int { + if a < b { + return -1 + } + if a == b { + return 0 + } + return 1 +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51423.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue51423.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..2bad19fbdac9f62797a88fad53ded351023fe6d5 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51423.dir/b.go @@ -0,0 +1,11 @@ +package b + +import "./a" + +func C() a.Comparator[int] { + return a.CompareInt[int] +} + +func main() { + _ = C()(1, 2) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51836.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue51836.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..e9223c9aa8270f1b9b82a23e4fe3340c5882f2e6 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51836.dir/a.go @@ -0,0 +1,8 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T[K any] struct { +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51836.dir/aa.go b/platform/dbops/binaries/go/go/test/typeparam/issue51836.dir/aa.go new file mode 100644 index 0000000000000000000000000000000000000000..d774be282e5aa814078fa94af7272cf915cef254 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51836.dir/aa.go @@ -0,0 +1,13 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import ( + "./a" +) + +type T[K any] struct { + t a.T[K] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue51836.dir/p.go b/platform/dbops/binaries/go/go/test/typeparam/issue51836.dir/p.go new file mode 100644 index 0000000000000000000000000000000000000000..98197ae0fd9dac5df2e48a52f19a5de210343f2d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue51836.dir/p.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package p + +import ( + a "./aa" +) + +var Foo a.T[int] diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue52117.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue52117.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..e571ea94623cc707777c16ba0578af487e934254 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue52117.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func Compare[T int | uint](a, b T) int { + return 0 +} + +type Slice[T int | uint] struct{} + +func (l Slice[T]) Comparator() func(v1, v2 T) int { + return Compare[T] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue52117.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/issue52117.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..3d3bf4ced9e2f8315391f6be2993848520ff2be0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue52117.dir/b.go @@ -0,0 +1,7 @@ +package b + +import "./a" + +func Test() { + var _ a.Slice[uint] +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue54302.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/issue54302.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..52875ab5e15808181672567b8e48dd8f2f306c8c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue54302.dir/a.go @@ -0,0 +1,20 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func A() { + B[int](new(G[int])) +} + +func B[T any](iface interface{ M(T) }) { + x, ok := iface.(*G[T]) + if !ok || iface != x { + panic("FAIL") + } +} + +type G[T any] struct{} + +func (*G[T]) M(T) {} diff --git a/platform/dbops/binaries/go/go/test/typeparam/issue54302.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/issue54302.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..b4c6cd142dcfc8572371a78c1c916d36d3c8e25b --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/issue54302.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + a.A() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/listimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/listimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..e9c46d6f325b8f7ab4358752faeb327a7ae9bbee --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/listimp.dir/a.go @@ -0,0 +1,53 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Ordered interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | + ~float32 | ~float64 | + ~string +} + +// List is a linked list of ordered values of type T. +type List[T Ordered] struct { + Next *List[T] + Val T +} + +func (l *List[T]) Largest() T { + var max T + for p := l; p != nil; p = p.Next { + if p.Val > max { + max = p.Val + } + } + return max +} + +type OrderedNum interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | + ~float32 | ~float64 +} + +// ListNum is a linked _List of ordered numeric values of type T. +type ListNum[T OrderedNum] struct { + Next *ListNum[T] + Val T +} + +const Clip = 5 + +// ClippedLargest returns the largest in the list of OrderNums, but a max of 5. +func (l *ListNum[T]) ClippedLargest() T { + var max T + for p := l; p != nil; p = p.Next { + if p.Val > max && p.Val < Clip { + max = p.Val + } + } + return max +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/listimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/listimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..652a34a0828846ef93dc4475f30e5e6b62b7a11f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/listimp.dir/main.go @@ -0,0 +1,52 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" +) + +func main() { + i3 := &a.List[int]{nil, 1} + i2 := &a.List[int]{i3, 3} + i1 := &a.List[int]{i2, 2} + if got, want := i1.Largest(), 3; got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + + b3 := &a.List[byte]{nil, byte(1)} + b2 := &a.List[byte]{b3, byte(3)} + b1 := &a.List[byte]{b2, byte(2)} + if got, want := b1.Largest(), byte(3); got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + + f3 := &a.List[float64]{nil, 13.5} + f2 := &a.List[float64]{f3, 1.2} + f1 := &a.List[float64]{f2, 4.5} + if got, want := f1.Largest(), 13.5; got != want { + panic(fmt.Sprintf("got %f, want %f", got, want)) + } + + s3 := &a.List[string]{nil, "dd"} + s2 := &a.List[string]{s3, "aa"} + s1 := &a.List[string]{s2, "bb"} + if got, want := s1.Largest(), "dd"; got != want { + panic(fmt.Sprintf("got %s, want %s", got, want)) + } + j3 := &a.ListNum[int]{nil, 1} + j2 := &a.ListNum[int]{j3, 32} + j1 := &a.ListNum[int]{j2, 2} + if got, want := j1.ClippedLargest(), 2; got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + g3 := &a.ListNum[float64]{nil, 13.5} + g2 := &a.ListNum[float64]{g3, 1.2} + g1 := &a.ListNum[float64]{g2, 4.5} + if got, want := g1.ClippedLargest(), 4.5; got != want { + panic(fmt.Sprintf("got %f, want %f", got, want)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/listimp2.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/listimp2.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..3a7dfc3999a0db856c877a5cc2c4f21c899e801c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/listimp2.dir/a.go @@ -0,0 +1,298 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import ( + "fmt" +) + +// Element is an element of a linked list. +type Element[T any] struct { + // Next and previous pointers in the doubly-linked list of elements. + // To simplify the implementation, internally a list l is implemented + // as a ring, such that &l.root is both the next element of the last + // list element (l.Back()) and the previous element of the first list + // element (l.Front()). + next, prev *Element[T] + + // The list to which this element belongs. + list *List[T] + + // The value stored with this element. + Value T +} + +// Next returns the next list element or nil. +func (e *Element[T]) Next() *Element[T] { + if p := e.next; e.list != nil && p != &e.list.root { + return p + } + return nil +} + +// Prev returns the previous list element or nil. +func (e *Element[T]) Prev() *Element[T] { + if p := e.prev; e.list != nil && p != &e.list.root { + return p + } + return nil +} + +// List represents a doubly linked list. +// The zero value for List is an empty list ready to use. +type List[T any] struct { + root Element[T] // sentinel list element, only &root, root.prev, and root.next are used + len int // current list length excluding (this) sentinel element +} + +// Init initializes or clears list l. +func (l *List[T]) Init() *List[T] { + l.root.next = &l.root + l.root.prev = &l.root + l.len = 0 + return l +} + +// New returns an initialized list. +func New[T any]() *List[T] { return new(List[T]).Init() } + +// Len returns the number of elements of list l. +// The complexity is O(1). +func (l *List[_]) Len() int { return l.len } + +// Front returns the first element of list l or nil if the list is empty. +func (l *List[T]) Front() *Element[T] { + if l.len == 0 { + return nil + } + return l.root.next +} + +// Back returns the last element of list l or nil if the list is empty. +func (l *List[T]) Back() *Element[T] { + if l.len == 0 { + return nil + } + return l.root.prev +} + +// lazyInit lazily initializes a zero List value. +func (l *List[_]) lazyInit() { + if l.root.next == nil { + l.Init() + } +} + +// insert inserts e after at, increments l.len, and returns e. +func (l *List[T]) insert(e, at *Element[T]) *Element[T] { + e.prev = at + e.next = at.next + e.prev.next = e + e.next.prev = e + e.list = l + l.len++ + return e +} + +// insertValue is a convenience wrapper for insert(&Element[T]{Value: v}, at). +func (l *List[T]) insertValue(v T, at *Element[T]) *Element[T] { + return l.insert(&Element[T]{Value: v}, at) +} + +// remove removes e from its list, decrements l.len, and returns e. +func (l *List[T]) remove(e *Element[T]) *Element[T] { + e.prev.next = e.next + e.next.prev = e.prev + e.next = nil // avoid memory leaks + e.prev = nil // avoid memory leaks + e.list = nil + l.len-- + return e +} + +// move moves e to next to at and returns e. +func (l *List[T]) move(e, at *Element[T]) *Element[T] { + if e == at { + return e + } + e.prev.next = e.next + e.next.prev = e.prev + + e.prev = at + e.next = at.next + e.prev.next = e + e.next.prev = e + + return e +} + +// Remove removes e from l if e is an element of list l. +// It returns the element value e.Value. +// The element must not be nil. +func (l *List[T]) Remove(e *Element[T]) T { + if e.list == l { + // if e.list == l, l must have been initialized when e was inserted + // in l or l == nil (e is a zero Element) and l.remove will crash + l.remove(e) + } + return e.Value +} + +// PushFront inserts a new element e with value v at the front of list l and returns e. +func (l *List[T]) PushFront(v T) *Element[T] { + l.lazyInit() + return l.insertValue(v, &l.root) +} + +// PushBack inserts a new element e with value v at the back of list l and returns e. +func (l *List[T]) PushBack(v T) *Element[T] { + l.lazyInit() + return l.insertValue(v, l.root.prev) +} + +// InsertBefore inserts a new element e with value v immediately before mark and returns e. +// If mark is not an element of l, the list is not modified. +// The mark must not be nil. +func (l *List[T]) InsertBefore(v T, mark *Element[T]) *Element[T] { + if mark.list != l { + return nil + } + // see comment in List.Remove about initialization of l + return l.insertValue(v, mark.prev) +} + +// InsertAfter inserts a new element e with value v immediately after mark and returns e. +// If mark is not an element of l, the list is not modified. +// The mark must not be nil. +func (l *List[T]) InsertAfter(v T, mark *Element[T]) *Element[T] { + if mark.list != l { + return nil + } + // see comment in List.Remove about initialization of l + return l.insertValue(v, mark) +} + +// MoveToFront moves element e to the front of list l. +// If e is not an element of l, the list is not modified. +// The element must not be nil. +func (l *List[T]) MoveToFront(e *Element[T]) { + if e.list != l || l.root.next == e { + return + } + // see comment in List.Remove about initialization of l + l.move(e, &l.root) +} + +// MoveToBack moves element e to the back of list l. +// If e is not an element of l, the list is not modified. +// The element must not be nil. +func (l *List[T]) MoveToBack(e *Element[T]) { + if e.list != l || l.root.prev == e { + return + } + // see comment in List.Remove about initialization of l + l.move(e, l.root.prev) +} + +// MoveBefore moves element e to its new position before mark. +// If e or mark is not an element of l, or e == mark, the list is not modified. +// The element and mark must not be nil. +func (l *List[T]) MoveBefore(e, mark *Element[T]) { + if e.list != l || e == mark || mark.list != l { + return + } + l.move(e, mark.prev) +} + +// MoveAfter moves element e to its new position after mark. +// If e or mark is not an element of l, or e == mark, the list is not modified. +// The element and mark must not be nil. +func (l *List[T]) MoveAfter(e, mark *Element[T]) { + if e.list != l || e == mark || mark.list != l { + return + } + l.move(e, mark) +} + +// PushBackList inserts a copy of an other list at the back of list l. +// The lists l and other may be the same. They must not be nil. +func (l *List[T]) PushBackList(other *List[T]) { + l.lazyInit() + for i, e := other.Len(), other.Front(); i > 0; i, e = i-1, e.Next() { + l.insertValue(e.Value, l.root.prev) + } +} + +// PushFrontList inserts a copy of an other list at the front of list l. +// The lists l and other may be the same. They must not be nil. +func (l *List[T]) PushFrontList(other *List[T]) { + l.lazyInit() + for i, e := other.Len(), other.Back(); i > 0; i, e = i-1, e.Prev() { + l.insertValue(e.Value, &l.root) + } +} + +// Transform runs a transform function on a list returning a new list. +func Transform[TElem1, TElem2 any](lst *List[TElem1], f func(TElem1) TElem2) *List[TElem2] { + ret := New[TElem2]() + for p := lst.Front(); p != nil; p = p.Next() { + ret.PushBack(f(p.Value)) + } + return ret +} + +func CheckListLen[T any](l *List[T], len int) bool { + if n := l.Len(); n != len { + panic(fmt.Sprintf("l.Len() = %d, want %d", n, len)) + return false + } + return true +} + +func CheckListPointers[T any](l *List[T], es []*Element[T]) { + root := &l.root + + if !CheckListLen(l, len(es)) { + return + } + + // zero length lists must be the zero value or properly initialized (sentinel circle) + if len(es) == 0 { + if l.root.next != nil && l.root.next != root || l.root.prev != nil && l.root.prev != root { + panic(fmt.Sprintf("l.root.next = %p, l.root.prev = %p; both should both be nil or %p", l.root.next, l.root.prev, root)) + } + return + } + // len(es) > 0 + + // check internal and external prev/next connections + for i, e := range es { + prev := root + Prev := (*Element[T])(nil) + if i > 0 { + prev = es[i-1] + Prev = prev + } + if p := e.prev; p != prev { + panic(fmt.Sprintf("elt[%d](%p).prev = %p, want %p", i, e, p, prev)) + } + if p := e.Prev(); p != Prev { + panic(fmt.Sprintf("elt[%d](%p).Prev() = %p, want %p", i, e, p, Prev)) + } + + next := root + Next := (*Element[T])(nil) + if i < len(es)-1 { + next = es[i+1] + Next = next + } + if n := e.next; n != next { + panic(fmt.Sprintf("elt[%d](%p).next = %p, want %p", i, e, n, next)) + } + if n := e.Next(); n != Next { + panic(fmt.Sprintf("elt[%d](%p).Next() = %p, want %p", i, e, n, Next)) + } + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/listimp2.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/listimp2.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..c3b936eada0033ffaecd6c832658f069d8d21357 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/listimp2.dir/main.go @@ -0,0 +1,315 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" + "strconv" +) + +func TestList() { + l := a.New[string]() + a.CheckListPointers(l, []*(a.Element[string]){}) + + // Single element list + e := l.PushFront("a") + a.CheckListPointers(l, []*(a.Element[string]){e}) + l.MoveToFront(e) + a.CheckListPointers(l, []*(a.Element[string]){e}) + l.MoveToBack(e) + a.CheckListPointers(l, []*(a.Element[string]){e}) + l.Remove(e) + a.CheckListPointers(l, []*(a.Element[string]){}) + + // Bigger list + l2 := a.New[int]() + e2 := l2.PushFront(2) + e1 := l2.PushFront(1) + e3 := l2.PushBack(3) + e4 := l2.PushBack(600) + a.CheckListPointers(l2, []*(a.Element[int]){e1, e2, e3, e4}) + + l2.Remove(e2) + a.CheckListPointers(l2, []*(a.Element[int]){e1, e3, e4}) + + l2.MoveToFront(e3) // move from middle + a.CheckListPointers(l2, []*(a.Element[int]){e3, e1, e4}) + + l2.MoveToFront(e1) + l2.MoveToBack(e3) // move from middle + a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e3}) + + l2.MoveToFront(e3) // move from back + a.CheckListPointers(l2, []*(a.Element[int]){e3, e1, e4}) + l2.MoveToFront(e3) // should be no-op + a.CheckListPointers(l2, []*(a.Element[int]){e3, e1, e4}) + + l2.MoveToBack(e3) // move from front + a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e3}) + l2.MoveToBack(e3) // should be no-op + a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e3}) + + e2 = l2.InsertBefore(2, e1) // insert before front + a.CheckListPointers(l2, []*(a.Element[int]){e2, e1, e4, e3}) + l2.Remove(e2) + e2 = l2.InsertBefore(2, e4) // insert before middle + a.CheckListPointers(l2, []*(a.Element[int]){e1, e2, e4, e3}) + l2.Remove(e2) + e2 = l2.InsertBefore(2, e3) // insert before back + a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e2, e3}) + l2.Remove(e2) + + e2 = l2.InsertAfter(2, e1) // insert after front + a.CheckListPointers(l2, []*(a.Element[int]){e1, e2, e4, e3}) + l2.Remove(e2) + e2 = l2.InsertAfter(2, e4) // insert after middle + a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e2, e3}) + l2.Remove(e2) + e2 = l2.InsertAfter(2, e3) // insert after back + a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e3, e2}) + l2.Remove(e2) + + // Check standard iteration. + sum := 0 + for e := l2.Front(); e != nil; e = e.Next() { + sum += e.Value + } + if sum != 604 { + panic(fmt.Sprintf("sum over l = %d, want 604", sum)) + } + + // Clear all elements by iterating + var next *a.Element[int] + for e := l2.Front(); e != nil; e = next { + next = e.Next() + l2.Remove(e) + } + a.CheckListPointers(l2, []*(a.Element[int]){}) +} + +func checkList[T comparable](l *a.List[T], es []interface{}) { + if !a.CheckListLen(l, len(es)) { + return + } + + i := 0 + for e := l.Front(); e != nil; e = e.Next() { + le := e.Value + // Comparison between a generically-typed variable le and an interface. + if le != es[i] { + panic(fmt.Sprintf("elt[%d].Value = %v, want %v", i, le, es[i])) + } + i++ + } +} + +func TestExtending() { + l1 := a.New[int]() + l2 := a.New[int]() + + l1.PushBack(1) + l1.PushBack(2) + l1.PushBack(3) + + l2.PushBack(4) + l2.PushBack(5) + + l3 := a.New[int]() + l3.PushBackList(l1) + checkList(l3, []interface{}{1, 2, 3}) + l3.PushBackList(l2) + checkList(l3, []interface{}{1, 2, 3, 4, 5}) + + l3 = a.New[int]() + l3.PushFrontList(l2) + checkList(l3, []interface{}{4, 5}) + l3.PushFrontList(l1) + checkList(l3, []interface{}{1, 2, 3, 4, 5}) + + checkList(l1, []interface{}{1, 2, 3}) + checkList(l2, []interface{}{4, 5}) + + l3 = a.New[int]() + l3.PushBackList(l1) + checkList(l3, []interface{}{1, 2, 3}) + l3.PushBackList(l3) + checkList(l3, []interface{}{1, 2, 3, 1, 2, 3}) + + l3 = a.New[int]() + l3.PushFrontList(l1) + checkList(l3, []interface{}{1, 2, 3}) + l3.PushFrontList(l3) + checkList(l3, []interface{}{1, 2, 3, 1, 2, 3}) + + l3 = a.New[int]() + l1.PushBackList(l3) + checkList(l1, []interface{}{1, 2, 3}) + l1.PushFrontList(l3) + checkList(l1, []interface{}{1, 2, 3}) +} + +func TestRemove() { + l := a.New[int]() + e1 := l.PushBack(1) + e2 := l.PushBack(2) + a.CheckListPointers(l, []*(a.Element[int]){e1, e2}) + e := l.Front() + l.Remove(e) + a.CheckListPointers(l, []*(a.Element[int]){e2}) + l.Remove(e) + a.CheckListPointers(l, []*(a.Element[int]){e2}) +} + +func TestIssue4103() { + l1 := a.New[int]() + l1.PushBack(1) + l1.PushBack(2) + + l2 := a.New[int]() + l2.PushBack(3) + l2.PushBack(4) + + e := l1.Front() + l2.Remove(e) // l2 should not change because e is not an element of l2 + if n := l2.Len(); n != 2 { + panic(fmt.Sprintf("l2.Len() = %d, want 2", n)) + } + + l1.InsertBefore(8, e) + if n := l1.Len(); n != 3 { + panic(fmt.Sprintf("l1.Len() = %d, want 3", n)) + } +} + +func TestIssue6349() { + l := a.New[int]() + l.PushBack(1) + l.PushBack(2) + + e := l.Front() + l.Remove(e) + if e.Value != 1 { + panic(fmt.Sprintf("e.value = %d, want 1", e.Value)) + } + if e.Next() != nil { + panic(fmt.Sprintf("e.Next() != nil")) + } + if e.Prev() != nil { + panic(fmt.Sprintf("e.Prev() != nil")) + } +} + +func TestMove() { + l := a.New[int]() + e1 := l.PushBack(1) + e2 := l.PushBack(2) + e3 := l.PushBack(3) + e4 := l.PushBack(4) + + l.MoveAfter(e3, e3) + a.CheckListPointers(l, []*(a.Element[int]){e1, e2, e3, e4}) + l.MoveBefore(e2, e2) + a.CheckListPointers(l, []*(a.Element[int]){e1, e2, e3, e4}) + + l.MoveAfter(e3, e2) + a.CheckListPointers(l, []*(a.Element[int]){e1, e2, e3, e4}) + l.MoveBefore(e2, e3) + a.CheckListPointers(l, []*(a.Element[int]){e1, e2, e3, e4}) + + l.MoveBefore(e2, e4) + a.CheckListPointers(l, []*(a.Element[int]){e1, e3, e2, e4}) + e2, e3 = e3, e2 + + l.MoveBefore(e4, e1) + a.CheckListPointers(l, []*(a.Element[int]){e4, e1, e2, e3}) + e1, e2, e3, e4 = e4, e1, e2, e3 + + l.MoveAfter(e4, e1) + a.CheckListPointers(l, []*(a.Element[int]){e1, e4, e2, e3}) + e2, e3, e4 = e4, e2, e3 + + l.MoveAfter(e2, e3) + a.CheckListPointers(l, []*(a.Element[int]){e1, e3, e2, e4}) + e2, e3 = e3, e2 +} + +// Test PushFront, PushBack, PushFrontList, PushBackList with uninitialized a.List +func TestZeroList() { + var l1 = new(a.List[int]) + l1.PushFront(1) + checkList(l1, []interface{}{1}) + + var l2 = new(a.List[int]) + l2.PushBack(1) + checkList(l2, []interface{}{1}) + + var l3 = new(a.List[int]) + l3.PushFrontList(l1) + checkList(l3, []interface{}{1}) + + var l4 = new(a.List[int]) + l4.PushBackList(l2) + checkList(l4, []interface{}{1}) +} + +// Test that a list l is not modified when calling InsertBefore with a mark that is not an element of l. +func TestInsertBeforeUnknownMark() { + var l a.List[int] + l.PushBack(1) + l.PushBack(2) + l.PushBack(3) + l.InsertBefore(1, new(a.Element[int])) + checkList(&l, []interface{}{1, 2, 3}) +} + +// Test that a list l is not modified when calling InsertAfter with a mark that is not an element of l. +func TestInsertAfterUnknownMark() { + var l a.List[int] + l.PushBack(1) + l.PushBack(2) + l.PushBack(3) + l.InsertAfter(1, new(a.Element[int])) + checkList(&l, []interface{}{1, 2, 3}) +} + +// Test that a list l is not modified when calling MoveAfter or MoveBefore with a mark that is not an element of l. +func TestMoveUnknownMark() { + var l1 a.List[int] + e1 := l1.PushBack(1) + + var l2 a.List[int] + e2 := l2.PushBack(2) + + l1.MoveAfter(e1, e2) + checkList(&l1, []interface{}{1}) + checkList(&l2, []interface{}{2}) + + l1.MoveBefore(e1, e2) + checkList(&l1, []interface{}{1}) + checkList(&l2, []interface{}{2}) +} + +// Test the Transform function. +func TestTransform() { + l1 := a.New[int]() + l1.PushBack(1) + l1.PushBack(2) + l2 := a.Transform(l1, strconv.Itoa) + checkList(l2, []interface{}{"1", "2"}) +} + +func main() { + TestList() + TestExtending() + TestRemove() + TestIssue4103() + TestIssue6349() + TestMove() + TestZeroList() + TestInsertBeforeUnknownMark() + TestInsertAfterUnknownMark() + TestTransform() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mapimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/mapimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..cbfa80ac6b1d338bf40a4d6c76da0f3f419c60b2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mapimp.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +// Map calls the function f on every element of the slice s, +// returning a new slice of the results. +func Mapper[F, T any](s []F, f func(F) T) []T { + r := make([]T, len(s)) + for i, v := range s { + r[i] = f(v) + } + return r +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mapimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/mapimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..8a56ce2bfb391f7e48938eb574fd1ce0a3644b76 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mapimp.dir/main.go @@ -0,0 +1,28 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" + "reflect" + "strconv" +) + +func main() { + got := a.Mapper([]int{1, 2, 3}, strconv.Itoa) + want := []string{"1", "2", "3"} + if !reflect.DeepEqual(got, want) { + panic(fmt.Sprintf("got %s, want %s", got, want)) + } + + fgot := a.Mapper([]float64{2.5, 2.3, 3.5}, func(f float64) string { + return strconv.FormatFloat(f, 'f', -1, 64) + }) + fwant := []string{"2.5", "2.3", "3.5"} + if !reflect.DeepEqual(fgot, fwant) { + panic(fmt.Sprintf("got %s, want %s", fgot, fwant)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mapsimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/mapsimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..696e2a568014a9b0edb23cb9438557d2e2914526 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mapsimp.dir/a.go @@ -0,0 +1,108 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +// SliceEqual reports whether two slices are equal: the same length and all +// elements equal. All floating point NaNs are considered equal. +func SliceEqual[Elem comparable](s1, s2 []Elem) bool { + if len(s1) != len(s2) { + return false + } + for i, v1 := range s1 { + v2 := s2[i] + if v1 != v2 { + isNaN := func(f Elem) bool { return f != f } + if !isNaN(v1) || !isNaN(v2) { + return false + } + } + } + return true +} + +// Keys returns the keys of the map m. +// The keys will be an indeterminate order. +func Keys[K comparable, V any](m map[K]V) []K { + r := make([]K, 0, len(m)) + for k := range m { + r = append(r, k) + } + return r +} + +// Values returns the values of the map m. +// The values will be in an indeterminate order. +func Values[K comparable, V any](m map[K]V) []V { + r := make([]V, 0, len(m)) + for _, v := range m { + r = append(r, v) + } + return r +} + +// Equal reports whether two maps contain the same key/value pairs. +// Values are compared using ==. +func Equal[K, V comparable](m1, m2 map[K]V) bool { + if len(m1) != len(m2) { + return false + } + for k, v1 := range m1 { + if v2, ok := m2[k]; !ok || v1 != v2 { + return false + } + } + return true +} + +// Copy returns a copy of m. +func Copy[K comparable, V any](m map[K]V) map[K]V { + r := make(map[K]V, len(m)) + for k, v := range m { + r[k] = v + } + return r +} + +// Add adds all key/value pairs in m2 to m1. Keys in m2 that are already +// present in m1 will be overwritten with the value in m2. +func Add[K comparable, V any](m1, m2 map[K]V) { + for k, v := range m2 { + m1[k] = v + } +} + +// Sub removes all keys in m2 from m1. Keys in m2 that are not present +// in m1 are ignored. The values in m2 are ignored. +func Sub[K comparable, V any](m1, m2 map[K]V) { + for k := range m2 { + delete(m1, k) + } +} + +// Intersect removes all keys from m1 that are not present in m2. +// Keys in m2 that are not in m1 are ignored. The values in m2 are ignored. +func Intersect[K comparable, V any](m1, m2 map[K]V) { + for k := range m1 { + if _, ok := m2[k]; !ok { + delete(m1, k) + } + } +} + +// Filter deletes any key/value pairs from m for which f returns false. +func Filter[K comparable, V any](m map[K]V, f func(K, V) bool) { + for k, v := range m { + if !f(k, v) { + delete(m, k) + } + } +} + +// TransformValues applies f to each value in m. The keys remain unchanged. +func TransformValues[K comparable, V any](m map[K]V, f func(V) V) { + for k, v := range m { + m[k] = f(v) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mapsimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/mapsimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..45f7d39f931e009444e51f1e14728930b407d9cf --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mapsimp.dir/main.go @@ -0,0 +1,156 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" + "math" + "sort" +) + +var m1 = map[int]int{1: 2, 2: 4, 4: 8, 8: 16} +var m2 = map[int]string{1: "2", 2: "4", 4: "8", 8: "16"} + +func TestKeys() { + want := []int{1, 2, 4, 8} + + got1 := a.Keys(m1) + sort.Ints(got1) + if !a.SliceEqual(got1, want) { + panic(fmt.Sprintf("a.Keys(%v) = %v, want %v", m1, got1, want)) + } + + got2 := a.Keys(m2) + sort.Ints(got2) + if !a.SliceEqual(got2, want) { + panic(fmt.Sprintf("a.Keys(%v) = %v, want %v", m2, got2, want)) + } +} + +func TestValues() { + got1 := a.Values(m1) + want1 := []int{2, 4, 8, 16} + sort.Ints(got1) + if !a.SliceEqual(got1, want1) { + panic(fmt.Sprintf("a.Values(%v) = %v, want %v", m1, got1, want1)) + } + + got2 := a.Values(m2) + want2 := []string{"16", "2", "4", "8"} + sort.Strings(got2) + if !a.SliceEqual(got2, want2) { + panic(fmt.Sprintf("a.Values(%v) = %v, want %v", m2, got2, want2)) + } +} + +func TestEqual() { + if !a.Equal(m1, m1) { + panic(fmt.Sprintf("a.Equal(%v, %v) = false, want true", m1, m1)) + } + if a.Equal(m1, nil) { + panic(fmt.Sprintf("a.Equal(%v, nil) = true, want false", m1)) + } + if a.Equal(nil, m1) { + panic(fmt.Sprintf("a.Equal(nil, %v) = true, want false", m1)) + } + if !a.Equal[int, int](nil, nil) { + panic("a.Equal(nil, nil) = false, want true") + } + if ms := map[int]int{1: 2}; a.Equal(m1, ms) { + panic(fmt.Sprintf("a.Equal(%v, %v) = true, want false", m1, ms)) + } + + // Comparing NaN for equality is expected to fail. + mf := map[int]float64{1: 0, 2: math.NaN()} + if a.Equal(mf, mf) { + panic(fmt.Sprintf("a.Equal(%v, %v) = true, want false", mf, mf)) + } +} + +func TestCopy() { + m2 := a.Copy(m1) + if !a.Equal(m1, m2) { + panic(fmt.Sprintf("a.Copy(%v) = %v, want %v", m1, m2, m1)) + } + m2[16] = 32 + if a.Equal(m1, m2) { + panic(fmt.Sprintf("a.Equal(%v, %v) = true, want false", m1, m2)) + } +} + +func TestAdd() { + mc := a.Copy(m1) + a.Add(mc, mc) + if !a.Equal(mc, m1) { + panic(fmt.Sprintf("a.Add(%v, %v) = %v, want %v", m1, m1, mc, m1)) + } + a.Add(mc, map[int]int{16: 32}) + want := map[int]int{1: 2, 2: 4, 4: 8, 8: 16, 16: 32} + if !a.Equal(mc, want) { + panic(fmt.Sprintf("a.Add result = %v, want %v", mc, want)) + } +} + +func TestSub() { + mc := a.Copy(m1) + a.Sub(mc, mc) + if len(mc) > 0 { + panic(fmt.Sprintf("a.Sub(%v, %v) = %v, want empty map", m1, m1, mc)) + } + mc = a.Copy(m1) + a.Sub(mc, map[int]int{1: 0}) + want := map[int]int{2: 4, 4: 8, 8: 16} + if !a.Equal(mc, want) { + panic(fmt.Sprintf("a.Sub result = %v, want %v", mc, want)) + } +} + +func TestIntersect() { + mc := a.Copy(m1) + a.Intersect(mc, mc) + if !a.Equal(mc, m1) { + panic(fmt.Sprintf("a.Intersect(%v, %v) = %v, want %v", m1, m1, mc, m1)) + } + a.Intersect(mc, map[int]int{1: 0, 2: 0}) + want := map[int]int{1: 2, 2: 4} + if !a.Equal(mc, want) { + panic(fmt.Sprintf("a.Intersect result = %v, want %v", mc, want)) + } +} + +func TestFilter() { + mc := a.Copy(m1) + a.Filter(mc, func(int, int) bool { return true }) + if !a.Equal(mc, m1) { + panic(fmt.Sprintf("a.Filter(%v, true) = %v, want %v", m1, mc, m1)) + } + a.Filter(mc, func(k, v int) bool { return k < 3 }) + want := map[int]int{1: 2, 2: 4} + if !a.Equal(mc, want) { + panic(fmt.Sprintf("a.Filter result = %v, want %v", mc, want)) + } +} + +func TestTransformValues() { + mc := a.Copy(m1) + a.TransformValues(mc, func(i int) int { return i / 2 }) + want := map[int]int{1: 1, 2: 2, 4: 4, 8: 8} + if !a.Equal(mc, want) { + panic(fmt.Sprintf("a.TransformValues result = %v, want %v", mc, want)) + } +} + +func main() { + TestKeys() + TestValues() + TestEqual() + TestCopy() + TestAdd() + TestSub() + TestIntersect() + TestFilter() + TestTransformValues() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/1.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/1.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..a668eb52dc9dc13d0457e3a8ed3a8049cefac904 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/1.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type T[_ any] int + +func F() { _ = new(T[int]) } diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/1.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/1.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..af6fef3f6d8bad40de56f7c1803ef5990191abc7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/1.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { a.F() } diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/1.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/1.go new file mode 100644 index 0000000000000000000000000000000000000000..b83fbd7af16a576c16e0fc73b84f1ca0f618b756 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/1.go @@ -0,0 +1,7 @@ +// compiledir + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ignored diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/10.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/10.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..95e111d3470a1a7259d398b3d68ec26f70b6ed65 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/10.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I[T any] interface{ M() T } diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/10.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/10.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..0ef28fd02de3282e61ce2ebb2b0278db1ee4d9f3 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/10.dir/b.go @@ -0,0 +1,17 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +var m = a.I[int].M + +var never bool + +func main() { + if never { + m(nil) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/10.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/10.go new file mode 100644 index 0000000000000000000000000000000000000000..40df49f83bef07a3f4c5d8fd4000d97484c3f224 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/10.go @@ -0,0 +1,7 @@ +// rundir + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ignored diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/12.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/12.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..ee8be939a8fadd5985e56a491ae2d3e19928ef11 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/12.dir/a.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type S[T any] struct { + F T +} + +var X = S[int]{} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/12.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/12.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..2891322e298867275828c331830fa8bbd3fda114 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/12.dir/main.go @@ -0,0 +1,13 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" +) + +func main() { + _ = a.X +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/12.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/12.go new file mode 100644 index 0000000000000000000000000000000000000000..0316402a78d0de8f3090a30064ebf2f543c68171 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/12.go @@ -0,0 +1,9 @@ +// rundir + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Reported by Cuong Manh Le. + +package ignored diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/13.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/13.go new file mode 100644 index 0000000000000000000000000000000000000000..8e11352b5148407f2f857bc2a836fca7d5192f3c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/13.go @@ -0,0 +1,84 @@ +// run + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +// Interface which will be used as a regular interface type and as a type bound. +type Mer interface{ + M() +} + +// Interface that is a superset of Mer. +type Mer2 interface { + M() + String() string +} + +func F[T Mer](t T) { + T.M(t) + t.M() +} + +type MyMer int + +func (MyMer) M() {} +func (MyMer) String() string { + return "aa" +} + +// Parameterized interface +type Abs[T any] interface { + Abs() T +} + +func G[T Abs[U], U any](t T) { + T.Abs(t) + t.Abs() +} + +type MyInt int +func (m MyInt) Abs() MyInt { + if m < 0 { + return -m + } + return m +} + +type Abs2 interface { + Abs() MyInt +} + + +func main() { + mm := MyMer(3) + ms := struct{ Mer }{Mer: mm } + + // Testing F with an interface type arg: Mer and Mer2 + F[Mer](mm) + F[Mer2](mm) + F[struct{ Mer }](ms) + F[*struct{ Mer }](&ms) + + ms2 := struct { MyMer }{MyMer: mm} + ms3 := struct { *MyMer }{MyMer: &mm} + + // Testing F with a concrete type arg + F[MyMer](mm) + F[*MyMer](&mm) + F[struct{ MyMer }](ms2) + F[struct{ *MyMer }](ms3) + F[*struct{ MyMer }](&ms2) + F[*struct{ *MyMer }](&ms3) + + // Testing G with a concrete type args + mi := MyInt(-3) + G[MyInt,MyInt](mi) + + // Interface Abs[MyInt] holding an mi. + intMi := Abs[MyInt](mi) + // First type arg here is Abs[MyInt], an interface type. + G[Abs[MyInt],MyInt](intMi) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/14.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/14.go new file mode 100644 index 0000000000000000000000000000000000000000..4af990c49a4a1f5bd3fc055bda84ce258dc7cdb6 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/14.go @@ -0,0 +1,40 @@ +// run + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +// Zero returns the zero value of T +func Zero[T any]() (_ T) { + return +} + +type AnyInt[X any] int + +func (AnyInt[X]) M() { + var have interface{} = Zero[X]() + var want interface{} = Zero[MyInt]() + + if have != want { + println("FAIL") + } +} + +type I interface{ M() } + +type MyInt int +type U = AnyInt[MyInt] + +var x = U(0) +var i I = x + +func main() { + x.M() + U.M(x) + (*U).M(&x) + + i.M() + I.M(x) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/15.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/15.go new file mode 100644 index 0000000000000000000000000000000000000000..b03ad6f21048404f917fa8960b004757360314ee --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/15.go @@ -0,0 +1,69 @@ +// run -goexperiment fieldtrack + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that generics, promoted methods, and //go:nointerface +// interoperate as expected. + +package main + +import ( + "reflect" +) + +func TypeString[T any]() string { + return reflect.TypeOf(new(T)).Elem().String() +} + +func Test[T, Bad, Good any]() { + switch interface{}(new(T)).(type) { + case Bad: + println("FAIL:", TypeString[T](), "matched", TypeString[Bad]()) + case Good: + // ok + default: + println("FAIL:", TypeString[T](), "did not match", TypeString[Good]()) + } +} + +func TestE[T any]() { Test[T, interface{ EBad() }, interface{ EGood() }]() } +func TestX[T any]() { Test[T, interface{ XBad() }, interface{ XGood() }]() } + +type E struct{} + +//go:nointerface +func (E) EBad() {} +func (E) EGood() {} + +type X[T any] struct{ E } + +//go:nointerface +func (X[T]) XBad() {} +func (X[T]) XGood() {} + +type W struct{ X[int] } + +func main() { + _ = E.EGood + _ = E.EBad + + TestE[E]() + + _ = X[int].EGood + _ = X[int].EBad + _ = X[int].XGood + _ = X[int].XBad + + TestE[X[int]]() + TestX[X[int]]() + + _ = W.EGood + _ = W.EBad + _ = W.XGood + _ = W.XBad + + TestE[W]() + TestX[W]() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/16.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/16.go new file mode 100644 index 0000000000000000000000000000000000000000..f4f79b9aac5d1583f35dc9e0971d0e3368beef6f --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/16.go @@ -0,0 +1,34 @@ +// run + +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that type assertion panics mention the real interface type, +// not their shape type. + +package main + +import ( + "fmt" + "runtime" + "strings" +) + +func main() { + // The exact error message isn't important, but it should mention + // `main.T`, not `go.shape.int_0`. + if have := F[T](); !strings.Contains(have, "interface { T() main.T }") { + fmt.Printf("FAIL: unexpected panic message: %q\n", have) + } +} + +type T int + +func F[T any]() (res string) { + defer func() { + res = recover().(runtime.Error).Error() + }() + _ = interface{ T() T }(nil).(T) + return +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/17.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/17.go new file mode 100644 index 0000000000000000000000000000000000000000..12385c3f9eea78c05ee73d576123a3a40aeaa250 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/17.go @@ -0,0 +1,110 @@ +// run + +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that implicit conversions of derived types to interface type +// in range loops work correctly. + +package main + +import ( + "fmt" + "reflect" +) + +func main() { + test{"int", "V"}.match(RangeArrayAny[V]()) + test{"int", "V"}.match(RangeArrayIface[V]()) + test{"V"}.match(RangeChanAny[V]()) + test{"V"}.match(RangeChanIface[V]()) + test{"K", "V"}.match(RangeMapAny[K, V]()) + test{"K", "V"}.match(RangeMapIface[K, V]()) + test{"int", "V"}.match(RangeSliceAny[V]()) + test{"int", "V"}.match(RangeSliceIface[V]()) +} + +type test []string + +func (t test) match(args ...any) { + if len(t) != len(args) { + fmt.Printf("FAIL: want %v values, have %v\n", len(t), len(args)) + return + } + for i, want := range t { + if have := reflect.TypeOf(args[i]).Name(); want != have { + fmt.Printf("FAIL: %v: want type %v, have %v\n", i, want, have) + } + } +} + +type iface interface{ M() int } + +type K int +type V int + +func (K) M() int { return 0 } +func (V) M() int { return 0 } + +func RangeArrayAny[V any]() (k, v any) { + for k, v = range [...]V{zero[V]()} { + } + return +} + +func RangeArrayIface[V iface]() (k any, v iface) { + for k, v = range [...]V{zero[V]()} { + } + return +} + +func RangeChanAny[V any]() (v any) { + for v = range chanOf(zero[V]()) { + } + return +} + +func RangeChanIface[V iface]() (v iface) { + for v = range chanOf(zero[V]()) { + } + return +} + +func RangeMapAny[K comparable, V any]() (k, v any) { + for k, v = range map[K]V{zero[K](): zero[V]()} { + } + return +} + +func RangeMapIface[K interface { + iface + comparable +}, V iface]() (k, v iface) { + for k, v = range map[K]V{zero[K](): zero[V]()} { + } + return +} + +func RangeSliceAny[V any]() (k, v any) { + for k, v = range []V{zero[V]()} { + } + return +} + +func RangeSliceIface[V iface]() (k any, v iface) { + for k, v = range []V{zero[V]()} { + } + return +} + +func chanOf[T any](elems ...T) chan T { + c := make(chan T, len(elems)) + for _, elem := range elems { + c <- elem + } + close(c) + return c +} + +func zero[T any]() (_ T) { return } diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/18.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/18.go new file mode 100644 index 0000000000000000000000000000000000000000..f4a4ec73c5eb6e35e84510ec165c58bd9e80e466 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/18.go @@ -0,0 +1,26 @@ +// run + +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that implicit conversions to interface type in a select/case +// clause are compiled correctly. + +package main + +import "fmt" + +func main() { f[int]() } + +func f[T any]() { + ch := make(chan T) + close(ch) + + var i, ok any + select { + case i, ok = <-ch: + } + + fmt.Printf("%T %T\n", i, ok) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/18.out b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/18.out new file mode 100644 index 0000000000000000000000000000000000000000..19f1c39a22d9959068430358d5f49a01581cd7a5 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/18.out @@ -0,0 +1 @@ +int bool diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/19.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/19.go new file mode 100644 index 0000000000000000000000000000000000000000..53d979a1f249565955b322ce3a01bc80dc61fe20 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/19.go @@ -0,0 +1,32 @@ +// run + +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that type parameter methods are handled correctly, even when +// the instantiating type argument has additional methods. + +package main + +func main() { + F(X(0)) +} + +type I interface{ B() } + +func F[T I](t T) { + CallMethod(t) + MethodExpr[T]()(t) + MethodVal(t)() +} + +func CallMethod[T I](t T) { t.B() } +func MethodExpr[T I]() func(T) { return T.B } +func MethodVal[T I](t T) func() { return t.B } + +type X int + +func (X) A() { panic("FAIL") } +func (X) B() {} +func (X) C() { panic("FAIL") } diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/2.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/2.go new file mode 100644 index 0000000000000000000000000000000000000000..ad548e6a549f92693f5bf91cf991cae0f851f6b8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/2.go @@ -0,0 +1,20 @@ +// compile + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +type T[A, B, C any] int + +func (T[A, B, C]) m(x int) { + if x <= 0 { + return + } + T[B, C, A](0).m(x - 1) +} + +func main() { + T[int8, int16, int32](0).m(3) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/20.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/20.go new file mode 100644 index 0000000000000000000000000000000000000000..6b97ca102c344052cb5630ef619ca62e122057a9 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/20.go @@ -0,0 +1,38 @@ +// run + +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that method expressions with a derived receiver type and +// promoted methods work correctly. + +package main + +func main() { + F[int]() + F[string]() +} + +func F[X any]() { + call(T[X].M, T[X].N) +} + +func call[X any](fns ...func(T[X]) int) { + for want, fn := range fns { + if have := fn(T[X]{}); have != want { + println("FAIL:", have, "!=", want) + } + } +} + +type T[X any] struct { + E1 + *E2[*X] +} + +type E1 struct{} +type E2[_ any] struct{} + +func (E1) M() int { return 0 } +func (*E2[_]) N() int { return 1 } diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/21.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/21.go new file mode 100644 index 0000000000000000000000000000000000000000..da10ae3ea329889c75552360673ca15ef1ceea8e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/21.go @@ -0,0 +1,26 @@ +// run + +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that devirtualization doesn't introduce spurious type +// assertion failures due to shaped and non-shaped interfaces having +// distinct itabs. + +package main + +func main() { + F[int]() +} + +func F[T any]() { + var i I[T] = X(0) + i.M() +} + +type I[T any] interface{ M() } + +type X int + +func (X) M() {} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/3.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/3.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..cf456e8d48f17422ebb16183066d6556f371f04e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/3.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F[T interface{ chan int }](c T) {} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/3.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/3.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..0cfd142f4c454e8222253d97e5a48cab273580d5 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/3.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func g() { a.F(make(chan int)) } diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/3.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/3.go new file mode 100644 index 0000000000000000000000000000000000000000..b83fbd7af16a576c16e0fc73b84f1ca0f618b756 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/3.go @@ -0,0 +1,7 @@ +// compiledir + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ignored diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/4.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/4.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..cb672949eaedcd8faaeb72beb135078c6de41a7e --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/4.dir/a.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F[T any](T) { +Loop: + for { + break Loop + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/4.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/4.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..e1fb0e7c5eaabc3af41c320fe9adfda6a22e7eab --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/4.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func f() { a.F(0) } diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/4.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/4.go new file mode 100644 index 0000000000000000000000000000000000000000..b83fbd7af16a576c16e0fc73b84f1ca0f618b756 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/4.go @@ -0,0 +1,7 @@ +// compiledir + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ignored diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/5.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/5.go new file mode 100644 index 0000000000000000000000000000000000000000..00d3b71be0ee53f71e4482b4dd7fb46fb0681e87 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/5.go @@ -0,0 +1,15 @@ +// compile + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type X[T any] int + +func (X[T]) F(T) {} + +func x() { + X[interface{}](0).F(0) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/6.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/6.go new file mode 100644 index 0000000000000000000000000000000000000000..ed57009436850f1c59335f8c442cb45b2c10549c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/6.go @@ -0,0 +1,11 @@ +// compile + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I[T any] interface{ M() T } + +var _ = I[int].M diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/7.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/7.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..59c5995611834a9cbec9ca3b2aa9f9588011ea36 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/7.dir/a.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type I[T any] interface{ M() T } + +var X I[int] diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/7.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/7.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..9f70530811482ea8213ec47efd5f76593a432814 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/7.dir/b.go @@ -0,0 +1,9 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +var _ = a.X diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/7.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/7.go new file mode 100644 index 0000000000000000000000000000000000000000..b83fbd7af16a576c16e0fc73b84f1ca0f618b756 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/7.go @@ -0,0 +1,7 @@ +// compiledir + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ignored diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/8.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/8.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..607fe5e0af2e098b1083bbe81c12c3f7dfa58506 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/8.dir/a.go @@ -0,0 +1,7 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F[T interface{ comparable }]() {} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/8.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/8.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..ef2637b894fb69c563689081f44dc3f431a9ee5d --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/8.dir/b.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func init() { + a.F[func()]() // ERROR "does not satisfy comparable" +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/8.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/8.go new file mode 100644 index 0000000000000000000000000000000000000000..e3a470b4195ab9ee0b49030efa76975b00b284f7 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/8.go @@ -0,0 +1,7 @@ +// errorcheckdir + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package ignored diff --git a/platform/dbops/binaries/go/go/test/typeparam/mdempsky/9.go b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/9.go new file mode 100644 index 0000000000000000000000000000000000000000..948a9e532e0c7661cdacdd36a5a65dfc7a544798 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mdempsky/9.go @@ -0,0 +1,11 @@ +// compile + +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func f[V any]() []V { return []V{0: *new(V)} } + +func g() { f[int]() } diff --git a/platform/dbops/binaries/go/go/test/typeparam/mincheck.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/mincheck.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..fa0f249e61510c3a136fc0c66b3cff4d3f876df0 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mincheck.dir/a.go @@ -0,0 +1,16 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Ordered interface { + int | int64 | float64 +} + +func Min[T Ordered](x, y T) T { + if x < y { + return x + } + return y +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mincheck.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/mincheck.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..6f85f9e5e12bf0514a10633ed34c07b06d193e42 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mincheck.dir/main.go @@ -0,0 +1,38 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" +) + +func main() { + const want = 2 + if got := a.Min[int](2, 3); got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + + if got := a.Min(2, 3); got != want { + panic(fmt.Sprintf("want %d, got %d", want, got)) + } + + if got := a.Min[float64](3.5, 2.0); got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + + if got := a.Min(3.5, 2.0); got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + + const want2 = "ay" + if got := a.Min[string]("bb", "ay"); got != want2 { // ERROR "string does not satisfy" + panic(fmt.Sprintf("got %d, want %d", got, want2)) + } + + if got := a.Min("bb", "ay"); got != want2 { // ERROR "string does not satisfy" + panic(fmt.Sprintf("got %d, want %d", got, want2)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/minimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/minimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..fabde62c5d7218c987cbd64793586c941456451c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/minimp.dir/a.go @@ -0,0 +1,16 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Ordered interface { + ~int | ~int64 | ~float64 | ~string +} + +func Min[T Ordered](x, y T) T { + if x < y { + return x + } + return y +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/minimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/minimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..36bec0f600de2dea6b1ab763b56a9e758c9b7405 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/minimp.dir/main.go @@ -0,0 +1,38 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" +) + +func main() { + const want = 2 + if got := a.Min[int](2, 3); got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + + if got := a.Min(2, 3); got != want { + panic(fmt.Sprintf("want %d, got %d", want, got)) + } + + if got := a.Min[float64](3.5, 2.0); got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + + if got := a.Min(3.5, 2.0); got != want { + panic(fmt.Sprintf("got %d, want %d", got, want)) + } + + const want2 = "ay" + if got := a.Min[string]("bb", "ay"); got != want2 { + panic(fmt.Sprintf("got %d, want %d", got, want2)) + } + + if got := a.Min("bb", "ay"); got != want2 { + panic(fmt.Sprintf("got %d, want %d", got, want2)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/mutualimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/mutualimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..5b924d3ce5dfec687d84c11e0bcf7b145493abcb --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mutualimp.dir/a.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type X int + +func (x X) M() X { return x } + +func F[T interface{ M() U }, U interface{ M() T }]() {} +func G() { F[X, X]() } diff --git a/platform/dbops/binaries/go/go/test/typeparam/mutualimp.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/mutualimp.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..83cc3af2835c55b7c1b5db2ba604d9a5b2da05e8 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/mutualimp.dir/b.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func H() { + a.F[a.X, a.X]() + a.G() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/orderedmapsimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/orderedmapsimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..d6a2de5d7b3e4a7eead46e360ac9a9c04b1293a1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/orderedmapsimp.dir/a.go @@ -0,0 +1,226 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import ( + "context" + "runtime" +) + +type Ordered interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | + ~float32 | ~float64 | + ~string +} + +// Map is an ordered map. +type Map[K, V any] struct { + root *node[K, V] + compare func(K, K) int +} + +// node is the type of a node in the binary tree. +type node[K, V any] struct { + key K + val V + left, right *node[K, V] +} + +// New returns a new map. It takes a comparison function that compares two +// keys and returns < 0 if the first is less, == 0 if they are equal, +// > 0 if the first is greater. +func New[K, V any](compare func(K, K) int) *Map[K, V] { + return &Map[K, V]{compare: compare} +} + +// NewOrdered returns a new map whose key is an ordered type. +// This is like New, but does not require providing a compare function. +// The map compare function uses the obvious key ordering. +func NewOrdered[K Ordered, V any]() *Map[K, V] { + return New[K, V](func(k1, k2 K) int { + switch { + case k1 < k2: + return -1 + case k1 > k2: + return 1 + default: + return 0 + } + }) +} + +// find looks up key in the map, returning either a pointer to the slot of the +// node holding key, or a pointer to the slot where a node would go. +func (m *Map[K, V]) find(key K) **node[K, V] { + pn := &m.root + for *pn != nil { + switch cmp := m.compare(key, (*pn).key); { + case cmp < 0: + pn = &(*pn).left + case cmp > 0: + pn = &(*pn).right + default: + return pn + } + } + return pn +} + +// Insert inserts a new key/value into the map. +// If the key is already present, the value is replaced. +// Reports whether this is a new key. +func (m *Map[K, V]) Insert(key K, val V) bool { + pn := m.find(key) + if *pn != nil { + (*pn).val = val + return false + } + *pn = &node[K, V]{key: key, val: val} + return true +} + +// Find returns the value associated with a key, or the zero value +// if not present. The second result reports whether the key was found. +func (m *Map[K, V]) Find(key K) (V, bool) { + pn := m.find(key) + if *pn == nil { + var zero V + return zero, false + } + return (*pn).val, true +} + +// keyValue is a pair of key and value used while iterating. +type keyValue[K, V any] struct { + key K + val V +} + +// iterate returns an iterator that traverses the map. +func (m *Map[K, V]) Iterate() *Iterator[K, V] { + sender, receiver := Ranger[keyValue[K, V]]() + var f func(*node[K, V]) bool + f = func(n *node[K, V]) bool { + if n == nil { + return true + } + // Stop the traversal if Send fails, which means that + // nothing is listening to the receiver. + return f(n.left) && + sender.Send(context.Background(), keyValue[K, V]{n.key, n.val}) && + f(n.right) + } + go func() { + f(m.root) + sender.Close() + }() + return &Iterator[K, V]{receiver} +} + +// Iterator is used to iterate over the map. +type Iterator[K, V any] struct { + r *Receiver[keyValue[K, V]] +} + +// Next returns the next key and value pair, and a boolean that reports +// whether they are valid. If not valid, we have reached the end of the map. +func (it *Iterator[K, V]) Next() (K, V, bool) { + keyval, ok := it.r.Next(context.Background()) + if !ok { + var zerok K + var zerov V + return zerok, zerov, false + } + return keyval.key, keyval.val, true +} + +// Equal reports whether two slices are equal: the same length and all +// elements equal. All floating point NaNs are considered equal. +func SliceEqual[Elem comparable](s1, s2 []Elem) bool { + if len(s1) != len(s2) { + return false + } + for i, v1 := range s1 { + v2 := s2[i] + if v1 != v2 { + isNaN := func(f Elem) bool { return f != f } + if !isNaN(v1) || !isNaN(v2) { + return false + } + } + } + return true +} + +// Ranger returns a Sender and a Receiver. The Receiver provides a +// Next method to retrieve values. The Sender provides a Send method +// to send values and a Close method to stop sending values. The Next +// method indicates when the Sender has been closed, and the Send +// method indicates when the Receiver has been freed. +// +// This is a convenient way to exit a goroutine sending values when +// the receiver stops reading them. +func Ranger[Elem any]() (*Sender[Elem], *Receiver[Elem]) { + c := make(chan Elem) + d := make(chan struct{}) + s := &Sender[Elem]{ + values: c, + done: d, + } + r := &Receiver[Elem]{ + values: c, + done: d, + } + runtime.SetFinalizer(r, (*Receiver[Elem]).finalize) + return s, r +} + +// A Sender is used to send values to a Receiver. +type Sender[Elem any] struct { + values chan<- Elem + done <-chan struct{} +} + +// Send sends a value to the receiver. It reports whether the value was sent. +// The value will not be sent if the context is closed or the receiver +// is freed. +func (s *Sender[Elem]) Send(ctx context.Context, v Elem) bool { + select { + case <-ctx.Done(): + return false + case s.values <- v: + return true + case <-s.done: + return false + } +} + +// Close tells the receiver that no more values will arrive. +// After Close is called, the Sender may no longer be used. +func (s *Sender[Elem]) Close() { + close(s.values) +} + +// A Receiver receives values from a Sender. +type Receiver[Elem any] struct { + values <-chan Elem + done chan<- struct{} +} + +// Next returns the next value from the channel. The bool result indicates +// whether the value is valid. +func (r *Receiver[Elem]) Next(ctx context.Context) (v Elem, ok bool) { + select { + case <-ctx.Done(): + case v, ok = <-r.values: + } + return v, ok +} + +// finalize is a finalizer for the receiver. +func (r *Receiver[Elem]) finalize() { + close(r.done) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/orderedmapsimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/orderedmapsimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..7758a75c233776aad8ea0e118b55a7536ea50d76 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/orderedmapsimp.dir/main.go @@ -0,0 +1,64 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "bytes" + "fmt" +) + +func TestMap() { + m := a.New[[]byte, int](bytes.Compare) + + if _, found := m.Find([]byte("a")); found { + panic(fmt.Sprintf("unexpectedly found %q in empty map", []byte("a"))) + } + + for _, c := range []int{'a', 'c', 'b'} { + if !m.Insert([]byte(string(c)), c) { + panic(fmt.Sprintf("key %q unexpectedly already present", []byte(string(c)))) + } + } + if m.Insert([]byte("c"), 'x') { + panic(fmt.Sprintf("key %q unexpectedly not present", []byte("c"))) + } + + if v, found := m.Find([]byte("a")); !found { + panic(fmt.Sprintf("did not find %q", []byte("a"))) + } else if v != 'a' { + panic(fmt.Sprintf("key %q returned wrong value %c, expected %c", []byte("a"), v, 'a')) + } + if v, found := m.Find([]byte("c")); !found { + panic(fmt.Sprintf("did not find %q", []byte("c"))) + } else if v != 'x' { + panic(fmt.Sprintf("key %q returned wrong value %c, expected %c", []byte("c"), v, 'x')) + } + + if _, found := m.Find([]byte("d")); found { + panic(fmt.Sprintf("unexpectedly found %q", []byte("d"))) + } + + gather := func(it *a.Iterator[[]byte, int]) []int { + var r []int + for { + _, v, ok := it.Next() + if !ok { + return r + } + r = append(r, v) + } + } + got := gather(m.Iterate()) + want := []int{'a', 'b', 'x'} + if !a.SliceEqual(got, want) { + panic(fmt.Sprintf("Iterate returned %v, want %v", got, want)) + } + +} + +func main() { + TestMap() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/pairimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/pairimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..a984fba37b6e6655d8ba2031166d7b575737927c --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/pairimp.dir/a.go @@ -0,0 +1,10 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Pair[F1, F2 any] struct { + Field1 F1 + Field2 F2 +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/pairimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/pairimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..f76da434d4cfe34deaf4534df90f5d1bd101e9cd --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/pairimp.dir/main.go @@ -0,0 +1,30 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" + "unsafe" +) + +func main() { + p := a.Pair[int32, int64]{1, 2} + if got, want := unsafe.Sizeof(p.Field1), uintptr(4); got != want { + panic(fmt.Sprintf("unexpected f1 size == %d, want %d", got, want)) + } + if got, want := unsafe.Sizeof(p.Field2), uintptr(8); got != want { + panic(fmt.Sprintf("unexpected f2 size == %d, want %d", got, want)) + } + + type mypair struct { + Field1 int32 + Field2 int64 + } + mp := mypair(p) + if mp.Field1 != 1 || mp.Field2 != 2 { + panic(fmt.Sprintf("mp == %#v, want %#v", mp, mypair{1, 2})) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/recoverimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/recoverimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..a465fd1545fe9deda77d80575f100b4af9d60d30 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/recoverimp.dir/a.go @@ -0,0 +1,16 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +import "fmt" + +func F[T any](a T) { + defer func() { + if x := recover(); x != nil { + fmt.Printf("panic: %v\n", x) + } + }() + panic(a) +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/recoverimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/recoverimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..d8cfa3875c0b5e69208e9253edb4b0b8388b5950 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/recoverimp.dir/main.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./a" + +func main() { + a.F(5.3) + a.F("hello") +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/select.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/select.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..983e4b1d5f7cd8c4deb00ce7a43893fb4b09a3e2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/select.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +func F[T any](c, d chan T) T { + select { + case x := <- c: + return x + case x := <- d: + return x + } +} + diff --git a/platform/dbops/binaries/go/go/test/typeparam/select.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/select.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..6ea3fe2eeac3a4b54e0175211a996aca02e34cec --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/select.dir/main.go @@ -0,0 +1,28 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "sort" + + "./a" +) + +func main() { + c := make(chan int, 1) + d := make(chan int, 1) + + c <- 5 + d <- 6 + + var r [2]int + r[0] = a.F(c, d) + r[1] = a.F(c, d) + sort.Ints(r[:]) + + if r != [2]int{5, 6} { + panic("incorrect results") + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/setsimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/setsimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..92449ce95620caf19ee17019ddecf36c8130ea89 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/setsimp.dir/a.go @@ -0,0 +1,128 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +// SliceEqual reports whether two slices are equal: the same length and all +// elements equal. All floating point NaNs are considered equal. +func SliceEqual[Elem comparable](s1, s2 []Elem) bool { + if len(s1) != len(s2) { + return false + } + for i, v1 := range s1 { + v2 := s2[i] + if v1 != v2 { + isNaN := func(f Elem) bool { return f != f } + if !isNaN(v1) || !isNaN(v2) { + return false + } + } + } + return true +} + +// A Set is a set of elements of some type. +type Set[Elem comparable] struct { + m map[Elem]struct{} +} + +// Make makes a new set. +func Make[Elem comparable]() Set[Elem] { + return Set[Elem]{m: make(map[Elem]struct{})} +} + +// Add adds an element to a set. +func (s Set[Elem]) Add(v Elem) { + s.m[v] = struct{}{} +} + +// Delete removes an element from a set. If the element is not present +// in the set, this does nothing. +func (s Set[Elem]) Delete(v Elem) { + delete(s.m, v) +} + +// Contains reports whether v is in the set. +func (s Set[Elem]) Contains(v Elem) bool { + _, ok := s.m[v] + return ok +} + +// Len returns the number of elements in the set. +func (s Set[Elem]) Len() int { + return len(s.m) +} + +// Values returns the values in the set. +// The values will be in an indeterminate order. +func (s Set[Elem]) Values() []Elem { + r := make([]Elem, 0, len(s.m)) + for v := range s.m { + r = append(r, v) + } + return r +} + +// Equal reports whether two sets contain the same elements. +func Equal[Elem comparable](s1, s2 Set[Elem]) bool { + if len(s1.m) != len(s2.m) { + return false + } + for v1 := range s1.m { + if !s2.Contains(v1) { + return false + } + } + return true +} + +// Copy returns a copy of s. +func (s Set[Elem]) Copy() Set[Elem] { + r := Set[Elem]{m: make(map[Elem]struct{}, len(s.m))} + for v := range s.m { + r.m[v] = struct{}{} + } + return r +} + +// AddSet adds all the elements of s2 to s. +func (s Set[Elem]) AddSet(s2 Set[Elem]) { + for v := range s2.m { + s.m[v] = struct{}{} + } +} + +// SubSet removes all elements in s2 from s. +// Values in s2 that are not in s are ignored. +func (s Set[Elem]) SubSet(s2 Set[Elem]) { + for v := range s2.m { + delete(s.m, v) + } +} + +// Intersect removes all elements from s that are not present in s2. +// Values in s2 that are not in s are ignored. +func (s Set[Elem]) Intersect(s2 Set[Elem]) { + for v := range s.m { + if !s2.Contains(v) { + delete(s.m, v) + } + } +} + +// Iterate calls f on every element in the set. +func (s Set[Elem]) Iterate(f func(Elem)) { + for v := range s.m { + f(v) + } +} + +// Filter deletes any elements from s for which f returns false. +func (s Set[Elem]) Filter(f func(Elem) bool) { + for v := range s.m { + if !f(v) { + delete(s.m, v) + } + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/setsimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/setsimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..e1ec86a6f0d030f43955977c18e814d5265649b1 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/setsimp.dir/main.go @@ -0,0 +1,156 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" + "sort" +) + +func TestSet() { + s1 := a.Make[int]() + if got := s1.Len(); got != 0 { + panic(fmt.Sprintf("Len of empty set = %d, want 0", got)) + } + s1.Add(1) + s1.Add(1) + s1.Add(1) + if got := s1.Len(); got != 1 { + panic(fmt.Sprintf("(%v).Len() == %d, want 1", s1, got)) + } + s1.Add(2) + s1.Add(3) + s1.Add(4) + if got := s1.Len(); got != 4 { + panic(fmt.Sprintf("(%v).Len() == %d, want 4", s1, got)) + } + if !s1.Contains(1) { + panic(fmt.Sprintf("(%v).Contains(1) == false, want true", s1)) + } + if s1.Contains(5) { + panic(fmt.Sprintf("(%v).Contains(5) == true, want false", s1)) + } + vals := s1.Values() + sort.Ints(vals) + w1 := []int{1, 2, 3, 4} + if !a.SliceEqual(vals, w1) { + panic(fmt.Sprintf("(%v).Values() == %v, want %v", s1, vals, w1)) + } +} + +func TestEqual() { + s1 := a.Make[string]() + s2 := a.Make[string]() + if !a.Equal(s1, s2) { + panic(fmt.Sprintf("a.Equal(%v, %v) = false, want true", s1, s2)) + } + s1.Add("hello") + s1.Add("world") + if got := s1.Len(); got != 2 { + panic(fmt.Sprintf("(%v).Len() == %d, want 2", s1, got)) + } + if a.Equal(s1, s2) { + panic(fmt.Sprintf("a.Equal(%v, %v) = true, want false", s1, s2)) + } +} + +func TestCopy() { + s1 := a.Make[float64]() + s1.Add(0) + s2 := s1.Copy() + if !a.Equal(s1, s2) { + panic(fmt.Sprintf("a.Equal(%v, %v) = false, want true", s1, s2)) + } + s1.Add(1) + if a.Equal(s1, s2) { + panic(fmt.Sprintf("a.Equal(%v, %v) = true, want false", s1, s2)) + } +} + +func TestAddSet() { + s1 := a.Make[int]() + s1.Add(1) + s1.Add(2) + s2 := a.Make[int]() + s2.Add(2) + s2.Add(3) + s1.AddSet(s2) + if got := s1.Len(); got != 3 { + panic(fmt.Sprintf("(%v).Len() == %d, want 3", s1, got)) + } + s2.Add(1) + if !a.Equal(s1, s2) { + panic(fmt.Sprintf("a.Equal(%v, %v) = false, want true", s1, s2)) + } +} + +func TestSubSet() { + s1 := a.Make[int]() + s1.Add(1) + s1.Add(2) + s2 := a.Make[int]() + s2.Add(2) + s2.Add(3) + s1.SubSet(s2) + if got := s1.Len(); got != 1 { + panic(fmt.Sprintf("(%v).Len() == %d, want 1", s1, got)) + } + if vals, want := s1.Values(), []int{1}; !a.SliceEqual(vals, want) { + panic(fmt.Sprintf("after SubSet got %v, want %v", vals, want)) + } +} + +func TestIntersect() { + s1 := a.Make[int]() + s1.Add(1) + s1.Add(2) + s2 := a.Make[int]() + s2.Add(2) + s2.Add(3) + s1.Intersect(s2) + if got := s1.Len(); got != 1 { + panic(fmt.Sprintf("(%v).Len() == %d, want 1", s1, got)) + } + if vals, want := s1.Values(), []int{2}; !a.SliceEqual(vals, want) { + panic(fmt.Sprintf("after Intersect got %v, want %v", vals, want)) + } +} + +func TestIterate() { + s1 := a.Make[int]() + s1.Add(1) + s1.Add(2) + s1.Add(3) + s1.Add(4) + tot := 0 + s1.Iterate(func(i int) { tot += i }) + if tot != 10 { + panic(fmt.Sprintf("total of %v == %d, want 10", s1, tot)) + } +} + +func TestFilter() { + s1 := a.Make[int]() + s1.Add(1) + s1.Add(2) + s1.Add(3) + s1.Filter(func(v int) bool { return v%2 == 0 }) + if vals, want := s1.Values(), []int{2}; !a.SliceEqual(vals, want) { + panic(fmt.Sprintf("after Filter got %v, want %v", vals, want)) + } + +} + +func main() { + TestSet() + TestEqual() + TestCopy() + TestAddSet() + TestSubSet() + TestIntersect() + TestIterate() + TestFilter() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/sliceimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/sliceimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..dbcfae893185e3b9f2e07f1060c523c0c48b3155 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/sliceimp.dir/a.go @@ -0,0 +1,141 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Ordered interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | + ~float32 | ~float64 | + ~string +} + +// Max returns the maximum of two values of some ordered type. +func Max[T Ordered](a, b T) T { + if a > b { + return a + } + return b +} + +// Min returns the minimum of two values of some ordered type. +func Min[T Ordered](a, b T) T { + if a < b { + return a + } + return b +} + +// Equal reports whether two slices are equal: the same length and all +// elements equal. All floating point NaNs are considered equal. +func Equal[Elem comparable](s1, s2 []Elem) bool { + if len(s1) != len(s2) { + return false + } + for i, v1 := range s1 { + v2 := s2[i] + if v1 != v2 { + isNaN := func(f Elem) bool { return f != f } + if !isNaN(v1) || !isNaN(v2) { + return false + } + } + } + return true +} + +// EqualFn reports whether two slices are equal using a comparison +// function on each element. +func EqualFn[Elem any](s1, s2 []Elem, eq func(Elem, Elem) bool) bool { + if len(s1) != len(s2) { + return false + } + for i, v1 := range s1 { + v2 := s2[i] + if !eq(v1, v2) { + return false + } + } + return true +} + +// Map turns a []Elem1 to a []Elem2 using a mapping function. +func Map[Elem1, Elem2 any](s []Elem1, f func(Elem1) Elem2) []Elem2 { + r := make([]Elem2, len(s)) + for i, v := range s { + r[i] = f(v) + } + return r +} + +// Reduce reduces a []Elem1 to a single value of type Elem2 using +// a reduction function. +func Reduce[Elem1, Elem2 any](s []Elem1, initializer Elem2, f func(Elem2, Elem1) Elem2) Elem2 { + r := initializer + for _, v := range s { + r = f(r, v) + } + return r +} + +// Filter filters values from a slice using a filter function. +func Filter[Elem any](s []Elem, f func(Elem) bool) []Elem { + var r []Elem + for _, v := range s { + if f(v) { + r = append(r, v) + } + } + return r +} + +// Max returns the maximum element in a slice of some ordered type. +// If the slice is empty it returns the zero value of the element type. +func SliceMax[Elem Ordered](s []Elem) Elem { + if len(s) == 0 { + var zero Elem + return zero + } + return Reduce(s[1:], s[0], Max[Elem]) +} + +// Min returns the minimum element in a slice of some ordered type. +// If the slice is empty it returns the zero value of the element type. +func SliceMin[Elem Ordered](s []Elem) Elem { + if len(s) == 0 { + var zero Elem + return zero + } + return Reduce(s[1:], s[0], Min[Elem]) +} + +// Append adds values to the end of a slice, returning a new slice. +// This is like the predeclared append function; it's an example +// of how to write it using generics. We used to write code like +// this before append was added to the language, but we had to write +// a separate copy for each type. +func Append[T any](s []T, t ...T) []T { + lens := len(s) + tot := lens + len(t) + if tot <= cap(s) { + s = s[:tot] + } else { + news := make([]T, tot, tot+tot/2) + Copy(news, s) + s = news + } + Copy(s[lens:tot], t) + return s +} + +// Copy copies values from t to s, stopping when either slice is full, +// returning the number of values copied. This is like the predeclared +// copy function; it's an example of how to write it using generics. +func Copy[T any](s, t []T) int { + i := 0 + for ; i < len(s) && i < len(t); i++ { + s[i] = t[i] + } + return i +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/sliceimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/sliceimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..ec13188ba9654d3b1c0e0fd774c6792643542d4a --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/sliceimp.dir/main.go @@ -0,0 +1,179 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" + "math" + "strings" +) + +type Integer interface { + ~int | ~int8 | ~int16 | ~int32 | ~int64 | + ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr +} + +func TestEqual() { + s1 := []int{1, 2, 3} + if !a.Equal(s1, s1) { + panic(fmt.Sprintf("a.Equal(%v, %v) = false, want true", s1, s1)) + } + s2 := []int{1, 2, 3} + if !a.Equal(s1, s2) { + panic(fmt.Sprintf("a.Equal(%v, %v) = false, want true", s1, s2)) + } + s2 = append(s2, 4) + if a.Equal(s1, s2) { + panic(fmt.Sprintf("a.Equal(%v, %v) = true, want false", s1, s2)) + } + + s3 := []float64{1, 2, math.NaN()} + if !a.Equal(s3, s3) { + panic(fmt.Sprintf("a.Equal(%v, %v) = false, want true", s3, s3)) + } + + if a.Equal(s1, nil) { + panic(fmt.Sprintf("a.Equal(%v, nil) = true, want false", s1)) + } + if a.Equal(nil, s1) { + panic(fmt.Sprintf("a.Equal(nil, %v) = true, want false", s1)) + } + if !a.Equal(s1[:0], nil) { + panic(fmt.Sprintf("a.Equal(%v, nil = false, want true", s1[:0])) + } +} + +func offByOne[Elem Integer](a, b Elem) bool { + return a == b+1 || a == b-1 +} + +func TestEqualFn() { + s1 := []int{1, 2, 3} + s2 := []int{2, 3, 4} + if a.EqualFn(s1, s1, offByOne[int]) { + panic(fmt.Sprintf("a.EqualFn(%v, %v, offByOne) = true, want false", s1, s1)) + } + if !a.EqualFn(s1, s2, offByOne[int]) { + panic(fmt.Sprintf("a.EqualFn(%v, %v, offByOne) = false, want true", s1, s2)) + } + + if !a.EqualFn(s1[:0], nil, offByOne[int]) { + panic(fmt.Sprintf("a.EqualFn(%v, nil, offByOne) = false, want true", s1[:0])) + } + + s3 := []string{"a", "b", "c"} + s4 := []string{"A", "B", "C"} + if !a.EqualFn(s3, s4, strings.EqualFold) { + panic(fmt.Sprintf("a.EqualFn(%v, %v, strings.EqualFold) = false, want true", s3, s4)) + } +} + +func TestMap() { + s1 := []int{1, 2, 3} + s2 := a.Map(s1, func(i int) float64 { return float64(i) * 2.5 }) + if want := []float64{2.5, 5, 7.5}; !a.Equal(s2, want) { + panic(fmt.Sprintf("a.Map(%v, ...) = %v, want %v", s1, s2, want)) + } + + s3 := []string{"Hello", "World"} + s4 := a.Map(s3, strings.ToLower) + if want := []string{"hello", "world"}; !a.Equal(s4, want) { + panic(fmt.Sprintf("a.Map(%v, strings.ToLower) = %v, want %v", s3, s4, want)) + } + + s5 := a.Map(nil, func(i int) int { return i }) + if len(s5) != 0 { + panic(fmt.Sprintf("a.Map(nil, identity) = %v, want empty slice", s5)) + } +} + +func TestReduce() { + s1 := []int{1, 2, 3} + r := a.Reduce(s1, 0, func(f float64, i int) float64 { return float64(i)*2.5 + f }) + if want := 15.0; r != want { + panic(fmt.Sprintf("a.Reduce(%v, 0, ...) = %v, want %v", s1, r, want)) + } + + if got := a.Reduce(nil, 0, func(i, j int) int { return i + j }); got != 0 { + panic(fmt.Sprintf("a.Reduce(nil, 0, add) = %v, want 0", got)) + } +} + +func TestFilter() { + s1 := []int{1, 2, 3} + s2 := a.Filter(s1, func(i int) bool { return i%2 == 0 }) + if want := []int{2}; !a.Equal(s2, want) { + panic(fmt.Sprintf("a.Filter(%v, even) = %v, want %v", s1, s2, want)) + } + + if s3 := a.Filter(s1[:0], func(i int) bool { return true }); len(s3) > 0 { + panic(fmt.Sprintf("a.Filter(%v, identity) = %v, want empty slice", s1[:0], s3)) + } +} + +func TestMax() { + s1 := []int{1, 2, 3, -5} + if got, want := a.SliceMax(s1), 3; got != want { + panic(fmt.Sprintf("a.Max(%v) = %d, want %d", s1, got, want)) + } + + s2 := []string{"aaa", "a", "aa", "aaaa"} + if got, want := a.SliceMax(s2), "aaaa"; got != want { + panic(fmt.Sprintf("a.Max(%v) = %q, want %q", s2, got, want)) + } + + if got, want := a.SliceMax(s2[:0]), ""; got != want { + panic(fmt.Sprintf("a.Max(%v) = %q, want %q", s2[:0], got, want)) + } +} + +func TestMin() { + s1 := []int{1, 2, 3, -5} + if got, want := a.SliceMin(s1), -5; got != want { + panic(fmt.Sprintf("a.Min(%v) = %d, want %d", s1, got, want)) + } + + s2 := []string{"aaa", "a", "aa", "aaaa"} + if got, want := a.SliceMin(s2), "a"; got != want { + panic(fmt.Sprintf("a.Min(%v) = %q, want %q", s2, got, want)) + } + + if got, want := a.SliceMin(s2[:0]), ""; got != want { + panic(fmt.Sprintf("a.Min(%v) = %q, want %q", s2[:0], got, want)) + } +} + +func TestAppend() { + s := []int{1, 2, 3} + s = a.Append(s, 4, 5, 6) + want := []int{1, 2, 3, 4, 5, 6} + if !a.Equal(s, want) { + panic(fmt.Sprintf("after a.Append got %v, want %v", s, want)) + } +} + +func TestCopy() { + s1 := []int{1, 2, 3} + s2 := []int{4, 5} + if got := a.Copy(s1, s2); got != 2 { + panic(fmt.Sprintf("a.Copy returned %d, want 2", got)) + } + want := []int{4, 5, 3} + if !a.Equal(s1, want) { + panic(fmt.Sprintf("after a.Copy got %v, want %v", s1, want)) + } +} +func main() { + TestEqual() + TestEqualFn() + TestMap() + TestReduce() + TestFilter() + TestMax() + TestMin() + TestAppend() + TestCopy() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/stringerimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/stringerimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..3f70937ff55e862ed1fbf8dc206d830f56a97f59 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/stringerimp.dir/a.go @@ -0,0 +1,16 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Stringer interface { + String() string +} + +func Stringify[T Stringer](s []T) (ret []string) { + for _, v := range s { + ret = append(ret, v.String()) + } + return ret +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/stringerimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/stringerimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..9b41d3bc1db010c996e69ea005d090651b6ca463 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/stringerimp.dir/main.go @@ -0,0 +1,38 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" + "reflect" + "strconv" +) + +type myint int + +func (i myint) String() string { + return strconv.Itoa(int(i)) +} + +func main() { + x := []myint{myint(1), myint(2), myint(3)} + + got := a.Stringify(x) + want := []string{"1", "2", "3"} + if !reflect.DeepEqual(got, want) { + panic(fmt.Sprintf("got %s, want %s", got, want)) + } + + m1 := myint(1) + m2 := myint(2) + m3 := myint(3) + y := []*myint{&m1, &m2, &m3} + got2 := a.Stringify(y) + want2 := []string{"1", "2", "3"} + if !reflect.DeepEqual(got2, want2) { + panic(fmt.Sprintf("got %s, want %s", got2, want2)) + } +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/structinit.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/structinit.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..c76d1551adbeea9b19e3f500deac9405f0c64fc4 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/structinit.dir/a.go @@ -0,0 +1,15 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type S[T any] struct { +} + +func (b *S[T]) build() *X[T] { + return &X[T]{f:0} +} +type X[T any] struct { + f int +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/structinit.dir/b.go b/platform/dbops/binaries/go/go/test/typeparam/structinit.dir/b.go new file mode 100644 index 0000000000000000000000000000000000000000..40a929bcaede4af5d4a496b07de5c78565934b12 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/structinit.dir/b.go @@ -0,0 +1,12 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package b + +import "./a" + +func B() { + var x a.S[int] + _ = x +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/structinit.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/structinit.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..c564171879578c48318ee7284953e5f363fa8131 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/structinit.dir/main.go @@ -0,0 +1,11 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "./b" + +func main() { + b.B() +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/valimp.dir/a.go b/platform/dbops/binaries/go/go/test/typeparam/valimp.dir/a.go new file mode 100644 index 0000000000000000000000000000000000000000..2ed0063cfd6473855a71a27e3327130ae6c553a2 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/valimp.dir/a.go @@ -0,0 +1,32 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package a + +type Value[T any] struct { + val T +} + +// The noinline directive should survive across import, and prevent instantiations +// of these functions from being inlined. + +//go:noinline +func Get[T any](v *Value[T]) T { + return v.val +} + +//go:noinline +func Set[T any](v *Value[T], val T) { + v.val = val +} + +//go:noinline +func (v *Value[T]) Set(val T) { + v.val = val +} + +//go:noinline +func (v *Value[T]) Get() T { + return v.val +} diff --git a/platform/dbops/binaries/go/go/test/typeparam/valimp.dir/main.go b/platform/dbops/binaries/go/go/test/typeparam/valimp.dir/main.go new file mode 100644 index 0000000000000000000000000000000000000000..e357af4615f1ab74c623d640bb236fddc5723f79 --- /dev/null +++ b/platform/dbops/binaries/go/go/test/typeparam/valimp.dir/main.go @@ -0,0 +1,55 @@ +// Copyright 2021 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import ( + "./a" + "fmt" +) + +func main() { + var v1 a.Value[int] + + a.Set(&v1, 1) + if got, want := a.Get(&v1), 1; got != want { + panic(fmt.Sprintf("Get() == %d, want %d", got, want)) + } + v1.Set(2) + if got, want := v1.Get(), 2; got != want { + panic(fmt.Sprintf("Get() == %d, want %d", got, want)) + } + v1p := new(a.Value[int]) + a.Set(v1p, 3) + if got, want := a.Get(v1p), 3; got != want { + panic(fmt.Sprintf("Get() == %d, want %d", got, want)) + } + + v1p.Set(4) + if got, want := v1p.Get(), 4; got != want { + panic(fmt.Sprintf("Get() == %d, want %d", got, want)) + } + + var v2 a.Value[string] + a.Set(&v2, "a") + if got, want := a.Get(&v2), "a"; got != want { + panic(fmt.Sprintf("Get() == %q, want %q", got, want)) + } + + v2.Set("b") + if got, want := a.Get(&v2), "b"; got != want { + panic(fmt.Sprintf("Get() == %q, want %q", got, want)) + } + + v2p := new(a.Value[string]) + a.Set(v2p, "c") + if got, want := a.Get(v2p), "c"; got != want { + panic(fmt.Sprintf("Get() == %d, want %d", got, want)) + } + + v2p.Set("d") + if got, want := v2p.Get(), "d"; got != want { + panic(fmt.Sprintf("Get() == %d, want %d", got, want)) + } +} diff --git a/platform/dbops/configs/dragonfly/dragonfly-node1.conf b/platform/dbops/configs/dragonfly/dragonfly-node1.conf new file mode 100644 index 0000000000000000000000000000000000000000..b60cc35c8a271c57b930e2f233a6cb402dc813c2 --- /dev/null +++ b/platform/dbops/configs/dragonfly/dragonfly-node1.conf @@ -0,0 +1,10 @@ +port 18000 +protected-mode no +maxmemory 8gb +maxmemory-policy allkeys-lru +appendonly yes +appendfsync everysec +save 86400 1 +dir /data/adaptai/platform/dbops/data/dragonfly/node1/data +dbfilename dump.rdb +requirepass torrent_cluster_auth diff --git a/platform/dbops/configs/dragonfly/dragonfly-node2.conf b/platform/dbops/configs/dragonfly/dragonfly-node2.conf new file mode 100644 index 0000000000000000000000000000000000000000..70a48197ed4a278f075c334dc9e1b48b738a6bf1 --- /dev/null +++ b/platform/dbops/configs/dragonfly/dragonfly-node2.conf @@ -0,0 +1,10 @@ +port 18001 +protected-mode no +maxmemory 8gb +maxmemory-policy allkeys-lru +appendonly yes +appendfsync everysec +save 86400 1 +dir /data/adaptai/platform/dbops/data/dragonfly/node2/data +dbfilename dump.rdb +requirepass torrent_cluster_auth diff --git a/platform/dbops/configs/dragonfly/dragonfly-node3.conf b/platform/dbops/configs/dragonfly/dragonfly-node3.conf new file mode 100644 index 0000000000000000000000000000000000000000..181c58f0c7e3f377fb24c32e7f6c87e03eef92f6 --- /dev/null +++ b/platform/dbops/configs/dragonfly/dragonfly-node3.conf @@ -0,0 +1,10 @@ +port 18002 +protected-mode no +maxmemory 8gb +maxmemory-policy allkeys-lru +appendonly yes +appendfsync everysec +save 86400 1 +dir /data/adaptai/platform/dbops/data/dragonfly/node3/data +dbfilename dump.rdb +requirepass torrent_cluster_auth diff --git a/platform/dbops/configs/haproxy/scylla-proxy.cfg b/platform/dbops/configs/haproxy/scylla-proxy.cfg new file mode 100644 index 0000000000000000000000000000000000000000..b75a69eac04ea5a0665cbbf9958fd9d43c70509d --- /dev/null +++ b/platform/dbops/configs/haproxy/scylla-proxy.cfg @@ -0,0 +1,23 @@ +global + daemon + log stdout format raw local0 debug + +defaults + log global + mode tcp + option tcplog + timeout connect 5s + timeout client 1m + timeout server 1m + +frontend fe_scylla + bind 0.0.0.0:17542 + default_backend be_scylla + +backend be_scylla + balance roundrobin + option tcp-check + tcp-check connect port 9042 + server scy1 10.0.10.11:9042 check fall 3 rise 2 + server scy2 10.0.10.12:9042 check fall 3 rise 2 + server scy3 10.0.10.13:9042 check fall 3 rise 2 diff --git a/platform/dbops/configs/janusgraph/gremlin-server-17002.yaml b/platform/dbops/configs/janusgraph/gremlin-server-17002.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f88bcf0d0caac4bd8030554921a290291038c804 --- /dev/null +++ b/platform/dbops/configs/janusgraph/gremlin-server-17002.yaml @@ -0,0 +1,16 @@ +# JanusGraph Gremlin Server configuration (placeholder) +host: 0.0.0.0 +port: 17002 +channelizer: org.apache.tinkerpop.gremlin.server.channel.HttpChannelizer +scripts: {} +metrics: { } +threadPoolWorker: 1 +processors: + - { className: org.apache.tinkerpop.gremlin.server.op.processor.StandardOpProcessor, config: { }} +serializers: + - { className: org.apache.tinkerpop.gremlin.util.ser.GraphBinaryMessageSerializerV1, config: {}} + - { className: org.apache.tinkerpop.gremlin.util.ser.GraphSONMessageSerializerV3d0, config: {}} +graphs: + graph: /data/adaptai/platform/dbops/configs/janusgraph/janusgraph-scilla.properties +scriptEngines: + gremlin-groovy: { plugins: { org.janusgraph.graphdb.tinkerpop.plugin.JanusGraphGremlinPlugin: {}}} diff --git a/platform/dbops/configs/janusgraph/gremlin-server.yaml b/platform/dbops/configs/janusgraph/gremlin-server.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b61ada6a27424a4a5edc38199b0d199d1bf0f9f4 --- /dev/null +++ b/platform/dbops/configs/janusgraph/gremlin-server.yaml @@ -0,0 +1,18 @@ +host: 0.0.0.0 +port: 17002 +threadPoolWorker: 4 +gremlinPool: 16 +channelizer: org.apache.tinkerpop.gremlin.server.channel.WebSocketChannelizer +scripts: {} +metrics: { } +serializers: + - { className: org.apache.tinkerpop.gremlin.util.ser.GraphSONMessageSerializerV3d0, config: {}} + - { className: org.apache.tinkerpop.gremlin.util.ser.GraphBinaryMessageSerializerV1, config: {}} +processors: + - { className: org.apache.tinkerpop.gremlin.server.op.processor.StandardOpProcessor, config: { }} +graphs: + graph: /data/adaptai/platform/dbops/configs/janusgraph/janusgraph-cql.properties +scriptEngines: + gremlin-groovy: + plugins: + org.janusgraph.graphdb.tinkerpop.plugin.JanusGraphGremlinPlugin: {} diff --git a/platform/dbops/configs/janusgraph/janusgraph-cql.properties b/platform/dbops/configs/janusgraph/janusgraph-cql.properties new file mode 100644 index 0000000000000000000000000000000000000000..2d5a8ad7a784cb5ac50be8142b8acd6c3d85336f --- /dev/null +++ b/platform/dbops/configs/janusgraph/janusgraph-cql.properties @@ -0,0 +1,24 @@ +# JanusGraph CQL (Scylla) configuration +storage.backend=cql +storage.hostname=10.0.10.11,10.0.10.12,10.0.10.13 +storage.port=9042 +storage.cql.keyspace=janusgraph +storage.cql.local-datacenter=dc1 +storage.username=${SCYLLA_USER} +storage.password=${SCYLLA_PASS} +storage.cql.ssl.enabled=true +storage.cql.ssl.truststore=/data/adaptai/secrets/dataops/ca.pem +storage.read-consistency-level=LOCAL_QUORUM +storage.write-consistency-level=LOCAL_QUORUM +storage.buffer-size=1024 +ids.block-size=200000 +storage.connection-timeout=10000 +storage.connection-pool=16 +storage.max-connections-per-host=16 +storage.max-requests-per-connection=128 +index.search.backend=lucene +index.search.directory=/data/adaptai/platform/dbops/data/janusgraph/index +cache.db-cache=true +cache.db-cache-clean-wait=20 +cache.db-cache-time=180000 +cache.db-cache-size=0.5 diff --git a/platform/dbops/configs/janusgraph/janusgraph-scilla.properties b/platform/dbops/configs/janusgraph/janusgraph-scilla.properties new file mode 100644 index 0000000000000000000000000000000000000000..b4bbd460472b5138248c6b235fe3b54081b20d93 --- /dev/null +++ b/platform/dbops/configs/janusgraph/janusgraph-scilla.properties @@ -0,0 +1,7 @@ +gremlin.graph=org.janusgraph.core.JanusGraphFactory +storage.backend=cassandra +storage.hostname=127.0.0.1 +storage.port=17542 +storage.cql.keyspace=janusgraph +# ScyllaDB is Cassandra-compatible; tune as needed +index.search.backend=lucene diff --git a/platform/dbops/configs/nats/nats.conf b/platform/dbops/configs/nats/nats.conf new file mode 100644 index 0000000000000000000000000000000000000000..615e2a5620cedee6341c3bf7b85a77ae17f6261a --- /dev/null +++ b/platform/dbops/configs/nats/nats.conf @@ -0,0 +1,2 @@ +port: 18222 +http_port: 18222 \ No newline at end of file diff --git a/platform/dbops/configs/nats/nats.conf.tpl b/platform/dbops/configs/nats/nats.conf.tpl new file mode 100644 index 0000000000000000000000000000000000000000..771444ad027923fa7182678399ae65df54fb665c --- /dev/null +++ b/platform/dbops/configs/nats/nats.conf.tpl @@ -0,0 +1,13 @@ +port: 18222 +http: 0.0.0.0:18223 +server_name: "${SERVER_NAME}" + +jetstream { + store_dir: "/data/adaptai/platform/dbops/data/nats" +} + +authorization { + users = [ + { user: "${NATS_USER}", password: "${NATS_PASS}" } + ] +} diff --git a/platform/dbops/configs/qdrant/config.yaml b/platform/dbops/configs/qdrant/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c89b580659184805799dbe0e15b6fe9f5b10102f --- /dev/null +++ b/platform/dbops/configs/qdrant/config.yaml @@ -0,0 +1,7 @@ +service: + grpc_port: 17001 + http_port: 17000 +storage: + storage_path: /data/adaptai/platform/dbops/data/qdrant + snapshots_path: /data/adaptai/platform/dbops/data/qdrant/snapshots +telemetry_disabled: true diff --git a/platform/dbops/configs/qdrant/qdrant.yaml b/platform/dbops/configs/qdrant/qdrant.yaml new file mode 100644 index 0000000000000000000000000000000000000000..92c95fe0eca4f8d8a6843003d1e454e209f8cae9 --- /dev/null +++ b/platform/dbops/configs/qdrant/qdrant.yaml @@ -0,0 +1,14 @@ +service: + host: 0.0.0.0 + http_port: 17000 +storage: + storage_path: /data/adaptai/platform/dbops/data/qdrant + snapshots_path: /data/adaptai/platform/dbops/data/qdrant/snapshots +cluster: + enabled: false +hnsw: + m: 64 + ef_construct: 128 +search: + ef: 256 +telemetry_disabled: true diff --git a/platform/dbops/configs/redis/node1/redis.conf b/platform/dbops/configs/redis/node1/redis.conf new file mode 100644 index 0000000000000000000000000000000000000000..1dd0a12cb7586e93ee22d6bd376d22bcced5b19d --- /dev/null +++ b/platform/dbops/configs/redis/node1/redis.conf @@ -0,0 +1,6 @@ +port 18010 +cluster-enabled yes +cluster-config-file nodes.conf +cluster-node-timeout 5000 +appendonly yes +dir /data/adaptai/platform/dbops/data/redis/node1 \ No newline at end of file diff --git a/platform/dbops/configs/redis/node2/redis.conf b/platform/dbops/configs/redis/node2/redis.conf new file mode 100644 index 0000000000000000000000000000000000000000..dd2a1ba1c946b6bfd677b040c8b5b67781d33d14 --- /dev/null +++ b/platform/dbops/configs/redis/node2/redis.conf @@ -0,0 +1,6 @@ +port 18011 +cluster-enabled yes +cluster-config-file nodes.conf +cluster-node-timeout 5000 +appendonly yes +dir /data/adaptai/platform/dbops/data/redis/node2 \ No newline at end of file diff --git a/platform/dbops/configs/redis/node3/redis.conf b/platform/dbops/configs/redis/node3/redis.conf new file mode 100644 index 0000000000000000000000000000000000000000..dae0bd62d1cc5104c1c98ff9ac40190bff109545 --- /dev/null +++ b/platform/dbops/configs/redis/node3/redis.conf @@ -0,0 +1,6 @@ +port 18012 +cluster-enabled yes +cluster-config-file nodes.conf +cluster-node-timeout 5000 +appendonly yes +dir /data/adaptai/platform/dbops/data/redis/node3 \ No newline at end of file diff --git a/platform/dbops/configs/scylla/cassandra-rackdc.properties b/platform/dbops/configs/scylla/cassandra-rackdc.properties new file mode 100644 index 0000000000000000000000000000000000000000..e39f2d2c5018f2e2cf124d33b9ca1a8cf5a32e1d --- /dev/null +++ b/platform/dbops/configs/scylla/cassandra-rackdc.properties @@ -0,0 +1,2 @@ +dc=dc1 +rack=rack1 diff --git a/platform/dbops/configs/scylla/scylla.yaml b/platform/dbops/configs/scylla/scylla.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0a99a5e4ef082b0f869d76fb2a44040b489231c2 --- /dev/null +++ b/platform/dbops/configs/scylla/scylla.yaml @@ -0,0 +1,11 @@ +# Scylla configuration snapshot (managed externally on Scylla nodes) +seeds: "10.0.10.11,10.0.10.12,10.0.10.13" +authenticator: PasswordAuthenticator +authorizer: CassandraAuthorizer +client_encryption_options: + enabled: true + optional: false + certificate: /data/adaptai/secrets/dataops/scylla_server.crt + keyfile: /data/adaptai/secrets/dataops/scylla_server.key + truststore: /data/adaptai/secrets/dataops/ca.pem +endpoint_snitch: GossipingPropertyFileSnitch diff --git a/platform/dbops/docs/playbooks/incident-cache-surge.md b/platform/dbops/docs/playbooks/incident-cache-surge.md new file mode 100644 index 0000000000000000000000000000000000000000..d5e17b79037f539d38b120a86a440d86c4bc6b69 --- /dev/null +++ b/platform/dbops/docs/playbooks/incident-cache-surge.md @@ -0,0 +1 @@ +# incident-cache-surge diff --git a/platform/dbops/docs/playbooks/incident-graph-timeouts.md b/platform/dbops/docs/playbooks/incident-graph-timeouts.md new file mode 100644 index 0000000000000000000000000000000000000000..8bd658723c52c6ed5fa4b590fd41ffd08e06a031 --- /dev/null +++ b/platform/dbops/docs/playbooks/incident-graph-timeouts.md @@ -0,0 +1 @@ +# incident-graph-timeouts diff --git a/platform/dbops/docs/playbooks/incident-qdrant-heap-spike.md b/platform/dbops/docs/playbooks/incident-qdrant-heap-spike.md new file mode 100644 index 0000000000000000000000000000000000000000..3fccc60bb3495d6a2e22d6148d1754183c810643 --- /dev/null +++ b/platform/dbops/docs/playbooks/incident-qdrant-heap-spike.md @@ -0,0 +1 @@ +# incident-qdrant-heap-spike diff --git a/platform/dbops/docs/playbooks/logrotate-dbops.conf b/platform/dbops/docs/playbooks/logrotate-dbops.conf new file mode 100644 index 0000000000000000000000000000000000000000..30e8570d3e31ef14e588304f1b2b7c990e40a5dd --- /dev/null +++ b/platform/dbops/docs/playbooks/logrotate-dbops.conf @@ -0,0 +1,11 @@ +/data/adaptai/platform/dbops/logs/**/*.log { + daily + rotate 7 + size 20M + missingok + notifempty + compress + delaycompress + dateext + copytruncate +} diff --git a/platform/dbops/docs/playbooks/maintenance-rolling-restart.md b/platform/dbops/docs/playbooks/maintenance-rolling-restart.md new file mode 100644 index 0000000000000000000000000000000000000000..184b16835517eda7c0a5b02560626b9e4c7c48a7 --- /dev/null +++ b/platform/dbops/docs/playbooks/maintenance-rolling-restart.md @@ -0,0 +1 @@ +# maintenance-rolling-restart diff --git a/platform/dbops/docs/playbooks/maintenance-schema-change.md b/platform/dbops/docs/playbooks/maintenance-schema-change.md new file mode 100644 index 0000000000000000000000000000000000000000..adac72b3f9655a00d0962a490a3f921c6036819d --- /dev/null +++ b/platform/dbops/docs/playbooks/maintenance-schema-change.md @@ -0,0 +1 @@ +# maintenance-schema-change diff --git a/platform/dbops/docs/runbooks/dragonfly.md b/platform/dbops/docs/runbooks/dragonfly.md new file mode 100644 index 0000000000000000000000000000000000000000..919673588dcf111866b62a9bc2ab33f3135e416e --- /dev/null +++ b/platform/dbops/docs/runbooks/dragonfly.md @@ -0,0 +1,16 @@ +[← Operator Map](../OPERATOR_MAP.md) + +# dragonfly Runbook +[Back to Operator Map](../OPERATOR_MAP.md) + +- Ports: 18000–18002 (see `/data/adaptai/platform/dbops/ports.yaml`) +- Start/Stop: Supervisor `dragonfly-node{1..3}` (binary `../run/dragonfly`) +- Logs: stable `.../logs` symlink → `.../b//logs` +- Data: stable `.../data/dragonfly/nodeX` → `.../b//data/dragonfly/nodeX` +- Health: `/data/adaptai/platform/dbops/run/health` +- RTC Checklist: disk>25%, deps green, smoke tests pass + +Persistence and Namespacing +- Stable paths: `/data/adaptai/platform/dbops/{data,logs}` +- Backing paths: `/data/adaptai/platform/dbops/b//{data,logs}` +- Bootstrap: `tools/host_namespace_bootstrap.sh` diff --git a/platform/dbops/docs/runbooks/host-namespacing.md b/platform/dbops/docs/runbooks/host-namespacing.md new file mode 100644 index 0000000000000000000000000000000000000000..57a3df9cfe6aa4dc6b890e6170af0bcc319b3aa4 --- /dev/null +++ b/platform/dbops/docs/runbooks/host-namespacing.md @@ -0,0 +1,66 @@ +[← Operator Map](../OPERATOR_MAP.md) + +# Host Namespacing (Persistent /data) +[Back to Operator Map](../OPERATOR_MAP.md) + +Goal: keep all binaries/configs/runtime/data under `/data`, with per-host +namespacing so multiple servers can share the same `/data` volume without +stepping on each other. + +## Layout + +- Stable symlinks (used by configs and tools): + - Data: `/data/adaptai/platform/dbops/data` + - Logs: `/data/adaptai/platform/dbops/logs` +- Host-namespaced backing directories: + - Data: `/data/adaptai/platform/dbops/b//data` + - Logs: `/data/adaptai/platform/dbops/b//logs` + +Services write to the stable paths which are symlinks to the current host’s +backing directories. + +## Bootstrap (idempotent) + +Run: + +``` +/data/adaptai/platform/dbops/tools/host_namespace_bootstrap.sh +``` + +What it does: +- Detects `HOST_ID` via `hostname -s` (override with env) +- Creates `b//data` and `b//logs` +- Moves any existing `data/` and `logs/` content into the host namespace +- Replaces `data/` and `logs/` with symlinks to `b//...` +- Ensures required per-service subdirs exist + +## Service Notes + +- Scylla/JanusGraph: + - JanusGraph backend = `scylla` (current default). We hit Scylla via HAProxy on + `127.0.0.1:17542`; switching to a local Scylla later is supported. + - If provisioning a local Scylla, always use per-host data dirs under + `.../b//data/scylla/` to prevent concurrent access by multiple hosts. +- Qdrant/DragonFly/Redis: + - Data under `.../data//...` (stable), backed by + `.../b//data//...`. + - Supervisor manages all processes; binaries are in `../binaries` and invoked via + `../run` symlinks for consistency. + +## Verification + +- Check symlinks: + - `ls -l /data/adaptai/platform/dbops/data` + - `ls -l /data/adaptai/platform/dbops/logs` +- Supervisor status: + - `supervisorctl -s unix:///data/adaptai/platform/dbops/run/supervisor.sock status` +- Health: + - `checks/qdrant_health.sh`, `checks/dragonfly_cluster_health.sh`, + `checks/redis_cluster_health.sh` + +## Rollback + +- Idempotent: if bootstrap is interrupted, simply rerun the script — it will + reconcile symlinks and directories safely. +- To revert, repoint `data`/`logs` symlinks to a different host namespace or + restore from the `data.bak.*` / `logs.bak.*` backups created by the bootstrap. diff --git a/platform/dbops/docs/runbooks/janusgraph.md b/platform/dbops/docs/runbooks/janusgraph.md new file mode 100644 index 0000000000000000000000000000000000000000..a74e67cff9c0895ba3b6d293ff6f68c4d3d9ee71 --- /dev/null +++ b/platform/dbops/docs/runbooks/janusgraph.md @@ -0,0 +1,20 @@ +[← Operator Map](../OPERATOR_MAP.md) + +# janusgraph Runbook +[Back to Operator Map](../OPERATOR_MAP.md) + +- Ports: Gremlin WS 17002 (see `/data/adaptai/platform/dbops/ports.yaml`) +- Start/Stop: Supervisor runs `tools/render_janus_props.sh` (renders from secrets) +- Logs: stable `.../logs` symlink → `.../b//logs` +- Data: backend Scylla via HAProxy (`127.0.0.1:17542`) or local Scylla +- Health: `/data/adaptai/platform/dbops/run/health` +- RTC Checklist: disk>25%, deps green, smoke tests pass + +Persistence and Namespacing +- Stable paths: `/data/adaptai/platform/dbops/{data,logs}` +- Backing paths: `/data/adaptai/platform/dbops/b//{data,logs}` +- Bootstrap: `tools/host_namespace_bootstrap.sh` + +Backend Modes +- Default: `JANUS_BACKEND=scylla`, `SCYLLA_HOSTS=127.0.0.1:17542` (central via HAProxy) +- Isolated: provision local Scylla and set `SCYLLA_HOSTS=127.0.0.1:9042` diff --git a/platform/dbops/docs/runbooks/pulsar.md b/platform/dbops/docs/runbooks/pulsar.md new file mode 100644 index 0000000000000000000000000000000000000000..3b13e014493f663a3dc387bac1af43c861a558c1 --- /dev/null +++ b/platform/dbops/docs/runbooks/pulsar.md @@ -0,0 +1,14 @@ +# pulsar Runbook +[Back to Operator Map](../OPERATOR_MAP.md) + +- Ports: Broker 18650, Admin HTTP 18880 (see ports.yaml) +- Start/Stop: Supervisor `pulsar` (standalone `-nss`) +- Logs: `.../logs/pulsar` + +Resource Notes +- Pulsar standalone is CPU/RAM heavy. Expect spikes during startup and topic creation. +- For constrained hosts, stop Pulsar when not in use or reduce load by disabling functions/streaming features. + +Persistence +- Binaries: `.../binaries/pulsar` +- Data/Bookie/ZooKeeper are managed internally by standalone mode; for production, use a proper cluster. diff --git a/platform/dbops/docs/runbooks/qdrant.md b/platform/dbops/docs/runbooks/qdrant.md new file mode 100644 index 0000000000000000000000000000000000000000..262b4774e2012b87033aaac8f7b2d6a403125af6 --- /dev/null +++ b/platform/dbops/docs/runbooks/qdrant.md @@ -0,0 +1,16 @@ +[← Operator Map](../OPERATOR_MAP.md) + +# qdrant Runbook +[Back to Operator Map](../OPERATOR_MAP.md) + +- Ports: HTTP 17000, gRPC 17001 (see `/data/adaptai/platform/dbops/ports.yaml`) +- Start/Stop: Supervisor program `qdrant` (binary in `../binaries/qdrant`) +- Logs: stable `.../logs` symlink → `.../b//logs` +- Data: stable `.../data/qdrant` → `.../b//data/qdrant` +- Health: `/data/adaptai/platform/dbops/run/health` +- RTC Checklist: disk>25%, deps green, smoke tests pass + +Persistence and Namespacing +- Stable paths: `/data/adaptai/platform/dbops/{data,logs}` +- Backing paths: `/data/adaptai/platform/dbops/b//{data,logs}` +- Bootstrap: `tools/host_namespace_bootstrap.sh` diff --git a/platform/dbops/docs/runbooks/redis.md b/platform/dbops/docs/runbooks/redis.md new file mode 100644 index 0000000000000000000000000000000000000000..272c1669ad6220448f81323bb5283d0a31e2b08c --- /dev/null +++ b/platform/dbops/docs/runbooks/redis.md @@ -0,0 +1,16 @@ +[← Operator Map](../OPERATOR_MAP.md) + +# redis Runbook +[Back to Operator Map](../OPERATOR_MAP.md) + +- Ports: 18010–18012 (see `/data/adaptai/platform/dbops/ports.yaml`) +- Start/Stop: Supervisor `redis-node{1..3}` (binary `../binaries/redis/redis-server`) +- Logs: stable `.../logs` symlink → `.../b//logs` +- Data: stable `.../data/redis/nodeX` → `.../b//data/redis/nodeX` +- Health: `/data/adaptai/platform/dbops/run/health` +- RTC Checklist: disk>25%, deps green, smoke tests pass + +Persistence and Namespacing +- Stable paths: `/data/adaptai/platform/dbops/{data,logs}` +- Backing paths: `/data/adaptai/platform/dbops/b//{data,logs}` +- Bootstrap: `tools/host_namespace_bootstrap.sh` diff --git a/platform/dbops/docs/runbooks/scylla.md b/platform/dbops/docs/runbooks/scylla.md new file mode 100644 index 0000000000000000000000000000000000000000..cdebed434bfb09333bf4ce53541a2b038352a753 --- /dev/null +++ b/platform/dbops/docs/runbooks/scylla.md @@ -0,0 +1,17 @@ +[← Operator Map](../OPERATOR_MAP.md) + +# scylla Runbook +[Back to Operator Map](../OPERATOR_MAP.md) + +- Ports: CQL policy 17542 (HAProxy → 10.0.10.11–13:9042). See `/data/adaptai/platform/dbops/ports.yaml` +- Default: use HAProxy `scylla-proxy` on this host; Scylla itself runs centrally +- Optional (isolated mode): provision local Scylla on this host +- Logs: stable `.../logs` symlink → `.../b//logs` +- Data (only if local Scylla): stable `.../data/scylla` → `.../b//data/scylla` +- Health: aggregated under `/data/adaptai/platform/dbops/run/health` +- RTC Checklist: disk>25%, deps green, smoke tests pass + +Persistence and Namespacing +- Stable paths: `/data/adaptai/platform/dbops/{data,logs}` +- Backing paths: `/data/adaptai/platform/dbops/b//{data,logs}` +- Bootstrap: `tools/host_namespace_bootstrap.sh` diff --git a/platform/dbops/docs/runbooks/supervisord.md b/platform/dbops/docs/runbooks/supervisord.md new file mode 100644 index 0000000000000000000000000000000000000000..a2bd0f2806018c8cb3ef277356b9e466244940ad --- /dev/null +++ b/platform/dbops/docs/runbooks/supervisord.md @@ -0,0 +1,19 @@ +[← Operator Map](../OPERATOR_MAP.md) + +# supervisord Runbook +[Back to Operator Map](../OPERATOR_MAP.md) + +- Socket: `unix:///data/adaptai/platform/dbops/run/supervisor.sock` +- Configs: `/data/adaptai/platform/dbops/supervisor/conf.d/*.conf` (host-agnostic) +- Start/Stop programs: `supervisorctl -s start|stop ` +- Logs: stable `.../logs` symlink → `.../b//logs` +- Health: `/data/adaptai/platform/dbops/run/health` + +Bring-up on a new server +- Bootstrap host namespace: `tools/host_namespace_bootstrap.sh` +- Reread configs: `supervisorctl -s reread && supervisorctl -s update` +- Programs autostart where configured; otherwise start explicitly. + +Logging +- Program logs rotate via `stdout/stderr_logfile_maxbytes` and `*_backups` in the + program confs. Defaults set for services (20MB x 5) and infra (5MB x 3). diff --git a/platform/dbops/run/health/dragonfly.json b/platform/dbops/run/health/dragonfly.json new file mode 100644 index 0000000000000000000000000000000000000000..4e438380243bb74f18491d3c604f07b462185e80 --- /dev/null +++ b/platform/dbops/run/health/dragonfly.json @@ -0,0 +1 @@ +{"service":"dragonfly","nodes_ok":3,"nodes_warn":0,"health":"green","ts":1756790339} diff --git a/platform/dbops/run/health/nats.json b/platform/dbops/run/health/nats.json new file mode 100644 index 0000000000000000000000000000000000000000..7a9d74bd419717d15dbc9a0427b4365a214b03ed --- /dev/null +++ b/platform/dbops/run/health/nats.json @@ -0,0 +1,7 @@ +{ + "service": "nats", + "tcp_ok": 1, + "http_ok": 1, + "health": "green", + "ts": 1756803618.901508 +} diff --git a/platform/dbops/run/health/qdrant.json b/platform/dbops/run/health/qdrant.json new file mode 100644 index 0000000000000000000000000000000000000000..19e63664b1f3205e45cdd0efb1443eb6e9c7cebf --- /dev/null +++ b/platform/dbops/run/health/qdrant.json @@ -0,0 +1,7 @@ +{ + "service": "qdrant", + "status": 200, + "latency_ms": 9, + "health": "green", + "ts": 1756790339.322065 +} diff --git a/platform/dbops/run/health/redis_cluster.json b/platform/dbops/run/health/redis_cluster.json new file mode 100644 index 0000000000000000000000000000000000000000..89e0a48998a333acf37711dda07fb9204397f2e5 --- /dev/null +++ b/platform/dbops/run/health/redis_cluster.json @@ -0,0 +1 @@ +{"service":"redis_cluster","state":"ok","health":"green","ts":1756790339} diff --git a/platform/dbops/run/reports/connectivity_1756698046.json b/platform/dbops/run/reports/connectivity_1756698046.json new file mode 100644 index 0000000000000000000000000000000000000000..4bdbbb9bd17ea10c83b40ae3b9879f30f37637e1 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698046.json @@ -0,0 +1,78 @@ +{ + "ts": 1756698046.6142175, + "human_ts": "2025-09-01T03:40:46.614271Z", + "dns": { + "localhost": { + "ok": true, + "ip": "127.0.0.1" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "localhost:17000": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "localhost:17001": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "localhost:17002": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://localhost:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='localhost', port=17000): Max retries exceeded with url: /collections (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756698046.txt b/platform/dbops/run/reports/connectivity_1756698046.txt new file mode 100644 index 0000000000000000000000000000000000000000..d931d54c7424294a286b17aa56d9d7783a8de5a5 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698046.txt @@ -0,0 +1,22 @@ +DNS +- localhost: OK (127.0.0.1) +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- localhost:17000: FAIL +- localhost:17001: FAIL +- localhost:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://localhost:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756698763.json b/platform/dbops/run/reports/connectivity_1756698763.json new file mode 100644 index 0000000000000000000000000000000000000000..8b6aa8f50be8adce539b143f64804ab86f17ac83 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698763.json @@ -0,0 +1,76 @@ +{ + "ts": 1756698763.3347614, + "human_ts": "2025-09-01T03:52:43.335667Z", + "dns": { + "localhost": { + "ok": true, + "ip": "127.0.0.1" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "localhost:17000": { + "ok": true + }, + "localhost:17001": { + "ok": true + }, + "localhost:17002": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://localhost:17000/collections": { + "ok": true, + "status": 200 + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756698763.txt b/platform/dbops/run/reports/connectivity_1756698763.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6bada6e80bc88e2eb83d691a6069dcdd5c41696 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698763.txt @@ -0,0 +1,22 @@ +DNS +- localhost: OK (127.0.0.1) +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- localhost:17000: OK +- localhost:17001: OK +- localhost:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://localhost:17000/collections: 200 diff --git a/platform/dbops/run/reports/connectivity_1756698764.json b/platform/dbops/run/reports/connectivity_1756698764.json new file mode 100644 index 0000000000000000000000000000000000000000..b69a8a252d51fed70e492e9b02278817e5d7226b --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698764.json @@ -0,0 +1,76 @@ +{ + "ts": 1756698764.6130533, + "human_ts": "2025-09-01T03:52:44.613967Z", + "dns": { + "localhost": { + "ok": true, + "ip": "127.0.0.1" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "localhost:17000": { + "ok": true + }, + "localhost:17001": { + "ok": true + }, + "localhost:17002": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://localhost:17000/collections": { + "ok": true, + "status": 200 + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756698764.txt b/platform/dbops/run/reports/connectivity_1756698764.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6bada6e80bc88e2eb83d691a6069dcdd5c41696 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698764.txt @@ -0,0 +1,22 @@ +DNS +- localhost: OK (127.0.0.1) +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- localhost:17000: OK +- localhost:17001: OK +- localhost:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://localhost:17000/collections: 200 diff --git a/platform/dbops/run/reports/connectivity_1756698767.json b/platform/dbops/run/reports/connectivity_1756698767.json new file mode 100644 index 0000000000000000000000000000000000000000..0583b3a37e78b220d044a1a7a3396bbaf29dd479 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698767.json @@ -0,0 +1,76 @@ +{ + "ts": 1756698767.7671432, + "human_ts": "2025-09-01T03:52:47.768097Z", + "dns": { + "localhost": { + "ok": true, + "ip": "127.0.0.1" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "localhost:17000": { + "ok": true + }, + "localhost:17001": { + "ok": true + }, + "localhost:17002": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://localhost:17000/collections": { + "ok": true, + "status": 200 + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756698767.txt b/platform/dbops/run/reports/connectivity_1756698767.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6bada6e80bc88e2eb83d691a6069dcdd5c41696 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698767.txt @@ -0,0 +1,22 @@ +DNS +- localhost: OK (127.0.0.1) +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- localhost:17000: OK +- localhost:17001: OK +- localhost:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://localhost:17000/collections: 200 diff --git a/platform/dbops/run/reports/connectivity_1756698806.json b/platform/dbops/run/reports/connectivity_1756698806.json new file mode 100644 index 0000000000000000000000000000000000000000..702e47d3452c35592530d797f8ee6fbdc6d91e65 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698806.json @@ -0,0 +1,76 @@ +{ + "ts": 1756698806.2422938, + "human_ts": "2025-09-01T03:53:26.243206Z", + "dns": { + "localhost": { + "ok": true, + "ip": "127.0.0.1" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "localhost:17000": { + "ok": true + }, + "localhost:17001": { + "ok": true + }, + "localhost:17002": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://localhost:17000/collections": { + "ok": true, + "status": 200 + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756698806.txt b/platform/dbops/run/reports/connectivity_1756698806.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6bada6e80bc88e2eb83d691a6069dcdd5c41696 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698806.txt @@ -0,0 +1,22 @@ +DNS +- localhost: OK (127.0.0.1) +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- localhost:17000: OK +- localhost:17001: OK +- localhost:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://localhost:17000/collections: 200 diff --git a/platform/dbops/run/reports/connectivity_1756698807.json b/platform/dbops/run/reports/connectivity_1756698807.json new file mode 100644 index 0000000000000000000000000000000000000000..0af570bc29dbe14ab1e28b09ab54991d5cccdd9a --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698807.json @@ -0,0 +1,76 @@ +{ + "ts": 1756698807.6611156, + "human_ts": "2025-09-01T03:53:27.662027Z", + "dns": { + "localhost": { + "ok": true, + "ip": "127.0.0.1" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "localhost:17000": { + "ok": true + }, + "localhost:17001": { + "ok": true + }, + "localhost:17002": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://localhost:17000/collections": { + "ok": true, + "status": 200 + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756698807.txt b/platform/dbops/run/reports/connectivity_1756698807.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6bada6e80bc88e2eb83d691a6069dcdd5c41696 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698807.txt @@ -0,0 +1,22 @@ +DNS +- localhost: OK (127.0.0.1) +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- localhost:17000: OK +- localhost:17001: OK +- localhost:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://localhost:17000/collections: 200 diff --git a/platform/dbops/run/reports/connectivity_1756698810.json b/platform/dbops/run/reports/connectivity_1756698810.json new file mode 100644 index 0000000000000000000000000000000000000000..0ec8991aa53a6fc3a8932cc7dca3c277c48adaab --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698810.json @@ -0,0 +1,76 @@ +{ + "ts": 1756698810.13244, + "human_ts": "2025-09-01T03:53:30.133374Z", + "dns": { + "localhost": { + "ok": true, + "ip": "127.0.0.1" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "localhost:17000": { + "ok": true + }, + "localhost:17001": { + "ok": true + }, + "localhost:17002": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://localhost:17000/collections": { + "ok": true, + "status": 200 + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756698810.txt b/platform/dbops/run/reports/connectivity_1756698810.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6bada6e80bc88e2eb83d691a6069dcdd5c41696 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698810.txt @@ -0,0 +1,22 @@ +DNS +- localhost: OK (127.0.0.1) +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- localhost:17000: OK +- localhost:17001: OK +- localhost:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://localhost:17000/collections: 200 diff --git a/platform/dbops/run/reports/connectivity_1756698897.json b/platform/dbops/run/reports/connectivity_1756698897.json new file mode 100644 index 0000000000000000000000000000000000000000..d61058f29e93dd36cf16cf4c187f8af111934892 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698897.json @@ -0,0 +1,82 @@ +{ + "ts": 1756698897.7246723, + "human_ts": "2025-09-01T03:54:57.725582Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756698897.txt b/platform/dbops/run/reports/connectivity_1756698897.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756698897.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756701131.json b/platform/dbops/run/reports/connectivity_1756701131.json new file mode 100644 index 0000000000000000000000000000000000000000..cac1a59447eb704c05f81fc8b2663f6f732b3f36 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756701131.json @@ -0,0 +1,77 @@ +{ + "ts": 1756701131.376819, + "human_ts": "2025-09-01T04:32:11.376887Z", + "dns": { + "qdrant.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "gremlin.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "dragonfly-1.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "dragonfly-2.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "dragonfly-3.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "redis-1.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "redis-2.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "redis-3.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": true + }, + "qdrant.dbops.local:17001": { + "ok": true + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "dragonfly-1.dbops.local:18000": { + "ok": true + }, + "dragonfly-2.dbops.local:18001": { + "ok": true + }, + "dragonfly-3.dbops.local:18002": { + "ok": true + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno 111] Connection refused" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": true, + "status": 200 + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756701131.txt b/platform/dbops/run/reports/connectivity_1756701131.txt new file mode 100644 index 0000000000000000000000000000000000000000..e7d39e88145a83aced686cd74749b2a0adac846a --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756701131.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: OK (172.17.0.3) +- gremlin.dbops.local: OK (172.17.0.3) +- dragonfly-1.dbops.local: OK (172.17.0.3) +- dragonfly-2.dbops.local: OK (172.17.0.3) +- dragonfly-3.dbops.local: OK (172.17.0.3) +- redis-1.dbops.local: OK (172.17.0.3) +- redis-2.dbops.local: OK (172.17.0.3) +- redis-3.dbops.local: OK (172.17.0.3) + +TCP +- qdrant.dbops.local:17000: OK +- qdrant.dbops.local:17001: OK +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: OK +- dragonfly-2.dbops.local:18001: OK +- dragonfly-3.dbops.local:18002: OK +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: 200 diff --git a/platform/dbops/run/reports/connectivity_1756703532.json b/platform/dbops/run/reports/connectivity_1756703532.json new file mode 100644 index 0000000000000000000000000000000000000000..4c90ee760679d8602171455028fc6e9cfda2cc19 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756703532.json @@ -0,0 +1,76 @@ +{ + "ts": 1756703532.91438, + "human_ts": "2025-09-01T05:12:12.914433Z", + "dns": { + "qdrant.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "gremlin.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "dragonfly-1.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "dragonfly-2.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "dragonfly-3.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "redis-1.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "redis-2.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + }, + "redis-3.dbops.local": { + "ok": true, + "ip": "172.17.0.3" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": true + }, + "qdrant.dbops.local:17001": { + "ok": true + }, + "gremlin.dbops.local:17002": { + "ok": true + }, + "dragonfly-1.dbops.local:18000": { + "ok": true + }, + "dragonfly-2.dbops.local:18001": { + "ok": true + }, + "dragonfly-3.dbops.local:18002": { + "ok": true + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno 111] Connection refused" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno 111] Connection refused" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": true, + "status": 200 + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756703532.txt b/platform/dbops/run/reports/connectivity_1756703532.txt new file mode 100644 index 0000000000000000000000000000000000000000..92de23b8344e6cdaced8445d3367645e9107be5d --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756703532.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: OK (172.17.0.3) +- gremlin.dbops.local: OK (172.17.0.3) +- dragonfly-1.dbops.local: OK (172.17.0.3) +- dragonfly-2.dbops.local: OK (172.17.0.3) +- dragonfly-3.dbops.local: OK (172.17.0.3) +- redis-1.dbops.local: OK (172.17.0.3) +- redis-2.dbops.local: OK (172.17.0.3) +- redis-3.dbops.local: OK (172.17.0.3) + +TCP +- qdrant.dbops.local:17000: OK +- qdrant.dbops.local:17001: OK +- gremlin.dbops.local:17002: OK +- dragonfly-1.dbops.local:18000: OK +- dragonfly-2.dbops.local:18001: OK +- dragonfly-3.dbops.local:18002: OK +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: 200 diff --git a/platform/dbops/run/reports/connectivity_1756704595.json b/platform/dbops/run/reports/connectivity_1756704595.json new file mode 100644 index 0000000000000000000000000000000000000000..2f06760efd40cf7ae1f27a50f39703072a94dcf3 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704595.json @@ -0,0 +1,82 @@ +{ + "ts": 1756704595.8321493, + "human_ts": "2025-09-01T05:29:55.833050Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756704595.txt b/platform/dbops/run/reports/connectivity_1756704595.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704595.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756704656.json b/platform/dbops/run/reports/connectivity_1756704656.json new file mode 100644 index 0000000000000000000000000000000000000000..b0acac21f0e7f41851e983c425ba51d07af32a26 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704656.json @@ -0,0 +1,82 @@ +{ + "ts": 1756704656.1700525, + "human_ts": "2025-09-01T05:30:56.170960Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756704656.txt b/platform/dbops/run/reports/connectivity_1756704656.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704656.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756704716.json b/platform/dbops/run/reports/connectivity_1756704716.json new file mode 100644 index 0000000000000000000000000000000000000000..b82853a97fb7c61f3b2839901ff6530c307537f6 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704716.json @@ -0,0 +1,82 @@ +{ + "ts": 1756704716.4963467, + "human_ts": "2025-09-01T05:31:56.497266Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756704716.txt b/platform/dbops/run/reports/connectivity_1756704716.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704716.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756704776.json b/platform/dbops/run/reports/connectivity_1756704776.json new file mode 100644 index 0000000000000000000000000000000000000000..359b443213b480a128deeb7f0d3e67673fbfee80 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704776.json @@ -0,0 +1,82 @@ +{ + "ts": 1756704776.8369863, + "human_ts": "2025-09-01T05:32:56.837882Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756704776.txt b/platform/dbops/run/reports/connectivity_1756704776.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704776.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756704837.json b/platform/dbops/run/reports/connectivity_1756704837.json new file mode 100644 index 0000000000000000000000000000000000000000..f52a3bc79dae5251324be2694e786deac05b1e6e --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704837.json @@ -0,0 +1,82 @@ +{ + "ts": 1756704837.1648307, + "human_ts": "2025-09-01T05:33:57.165758Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756704837.txt b/platform/dbops/run/reports/connectivity_1756704837.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704837.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756704897.json b/platform/dbops/run/reports/connectivity_1756704897.json new file mode 100644 index 0000000000000000000000000000000000000000..a41b2b835f5dfe604fe94b340fbd9d4e14c63087 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704897.json @@ -0,0 +1,82 @@ +{ + "ts": 1756704897.4979122, + "human_ts": "2025-09-01T05:34:57.498841Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756704897.txt b/platform/dbops/run/reports/connectivity_1756704897.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704897.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756704957.json b/platform/dbops/run/reports/connectivity_1756704957.json new file mode 100644 index 0000000000000000000000000000000000000000..2f83c794ea21b581bf42fbf45c726a54a405bf48 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704957.json @@ -0,0 +1,82 @@ +{ + "ts": 1756704957.835391, + "human_ts": "2025-09-01T05:35:57.836330Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756704957.txt b/platform/dbops/run/reports/connectivity_1756704957.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756704957.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705018.json b/platform/dbops/run/reports/connectivity_1756705018.json new file mode 100644 index 0000000000000000000000000000000000000000..aa7eb12816c7df9aa23fc9e89e2ab1e07070080f --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705018.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705018.18714, + "human_ts": "2025-09-01T05:36:58.188051Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705018.txt b/platform/dbops/run/reports/connectivity_1756705018.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705018.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705078.json b/platform/dbops/run/reports/connectivity_1756705078.json new file mode 100644 index 0000000000000000000000000000000000000000..380478ee0e9db5ab5432b46189c234635bf47052 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705078.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705078.5360456, + "human_ts": "2025-09-01T05:37:58.536957Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705078.txt b/platform/dbops/run/reports/connectivity_1756705078.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705078.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705138.json b/platform/dbops/run/reports/connectivity_1756705138.json new file mode 100644 index 0000000000000000000000000000000000000000..974698af6d24f79bf26b9f895638cabc44c80cff --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705138.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705138.87688, + "human_ts": "2025-09-01T05:38:58.877806Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705138.txt b/platform/dbops/run/reports/connectivity_1756705138.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705138.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705199.json b/platform/dbops/run/reports/connectivity_1756705199.json new file mode 100644 index 0000000000000000000000000000000000000000..4b4020ce2fef11a04a5c9c574fd050eef81ea460 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705199.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705199.2131038, + "human_ts": "2025-09-01T05:39:59.214030Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705199.txt b/platform/dbops/run/reports/connectivity_1756705199.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705199.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705259.json b/platform/dbops/run/reports/connectivity_1756705259.json new file mode 100644 index 0000000000000000000000000000000000000000..121eb5a4ceceebe083799d71267dca36fd991443 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705259.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705259.5511792, + "human_ts": "2025-09-01T05:40:59.552111Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705259.txt b/platform/dbops/run/reports/connectivity_1756705259.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705259.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705319.json b/platform/dbops/run/reports/connectivity_1756705319.json new file mode 100644 index 0000000000000000000000000000000000000000..2356bd81191e10a960fc7eb1a0af833390ac76a0 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705319.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705319.8744893, + "human_ts": "2025-09-01T05:41:59.875417Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705319.txt b/platform/dbops/run/reports/connectivity_1756705319.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705319.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705380.json b/platform/dbops/run/reports/connectivity_1756705380.json new file mode 100644 index 0000000000000000000000000000000000000000..df8c6d2e71c2b65825e02e7565939f0e77e7e91b --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705380.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705380.2011755, + "human_ts": "2025-09-01T05:43:00.202109Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705380.txt b/platform/dbops/run/reports/connectivity_1756705380.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705380.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705440.json b/platform/dbops/run/reports/connectivity_1756705440.json new file mode 100644 index 0000000000000000000000000000000000000000..aebf4e8fe00300ec1f6e3d0dbf395afec795e37f --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705440.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705440.524316, + "human_ts": "2025-09-01T05:44:00.525230Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705440.txt b/platform/dbops/run/reports/connectivity_1756705440.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705440.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705500.json b/platform/dbops/run/reports/connectivity_1756705500.json new file mode 100644 index 0000000000000000000000000000000000000000..c0a28e445a8b3ae86fca36a1826a070d7cefcde5 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705500.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705500.8568673, + "human_ts": "2025-09-01T05:45:00.857796Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705500.txt b/platform/dbops/run/reports/connectivity_1756705500.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705500.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705561.json b/platform/dbops/run/reports/connectivity_1756705561.json new file mode 100644 index 0000000000000000000000000000000000000000..97aa09b2b9ca7431c4e206472ce55c5c2e21ca44 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705561.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705561.1947646, + "human_ts": "2025-09-01T05:46:01.195703Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705561.txt b/platform/dbops/run/reports/connectivity_1756705561.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705561.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705621.json b/platform/dbops/run/reports/connectivity_1756705621.json new file mode 100644 index 0000000000000000000000000000000000000000..526f768dcd12e8d11a04d3f386b1400002268cdc --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705621.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705621.52846, + "human_ts": "2025-09-01T05:47:01.529388Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705621.txt b/platform/dbops/run/reports/connectivity_1756705621.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705621.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705681.json b/platform/dbops/run/reports/connectivity_1756705681.json new file mode 100644 index 0000000000000000000000000000000000000000..126bf071ddf18a0618d60085202f4cb099b7a6b4 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705681.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705681.8689551, + "human_ts": "2025-09-01T05:48:01.869850Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705681.txt b/platform/dbops/run/reports/connectivity_1756705681.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705681.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705742.json b/platform/dbops/run/reports/connectivity_1756705742.json new file mode 100644 index 0000000000000000000000000000000000000000..60d8a6570b3ddcd3e3cf80d57cff9e0111032b4c --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705742.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705742.2043536, + "human_ts": "2025-09-01T05:49:02.205297Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705742.txt b/platform/dbops/run/reports/connectivity_1756705742.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705742.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705802.json b/platform/dbops/run/reports/connectivity_1756705802.json new file mode 100644 index 0000000000000000000000000000000000000000..e4554c9ef491107efde0faa68f5f85c6b756997d --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705802.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705802.5410035, + "human_ts": "2025-09-01T05:50:02.541927Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705802.txt b/platform/dbops/run/reports/connectivity_1756705802.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705802.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756705862.json b/platform/dbops/run/reports/connectivity_1756705862.json new file mode 100644 index 0000000000000000000000000000000000000000..089cf1c6a887feab3e998f5cbf3efa6e212e8786 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705862.json @@ -0,0 +1,82 @@ +{ + "ts": 1756705862.8899465, + "human_ts": "2025-09-01T05:51:02.890893Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756705862.txt b/platform/dbops/run/reports/connectivity_1756705862.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756705862.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706225.json b/platform/dbops/run/reports/connectivity_1756706225.json new file mode 100644 index 0000000000000000000000000000000000000000..5feec519acb271c7ab9dcd3f98989189e1479feb --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706225.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706225.2371352, + "human_ts": "2025-09-01T05:57:05.238073Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706225.txt b/platform/dbops/run/reports/connectivity_1756706225.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706225.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706285.json b/platform/dbops/run/reports/connectivity_1756706285.json new file mode 100644 index 0000000000000000000000000000000000000000..6749f99fae1f14120d9091b7f1b057403e0add99 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706285.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706285.5655766, + "human_ts": "2025-09-01T05:58:05.566515Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706285.txt b/platform/dbops/run/reports/connectivity_1756706285.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706285.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706345.json b/platform/dbops/run/reports/connectivity_1756706345.json new file mode 100644 index 0000000000000000000000000000000000000000..7e83da88853e79697af72e0acb172b55201fcf64 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706345.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706345.8962579, + "human_ts": "2025-09-01T05:59:05.897169Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706345.txt b/platform/dbops/run/reports/connectivity_1756706345.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706345.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706406.json b/platform/dbops/run/reports/connectivity_1756706406.json new file mode 100644 index 0000000000000000000000000000000000000000..789647e1a798ecf4cc8b0f377edf7f20da4950a4 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706406.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706406.2355995, + "human_ts": "2025-09-01T06:00:06.236572Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706406.txt b/platform/dbops/run/reports/connectivity_1756706406.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706406.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706466.json b/platform/dbops/run/reports/connectivity_1756706466.json new file mode 100644 index 0000000000000000000000000000000000000000..3de5d1824fc039387f2ff6e63993510b149ba4ec --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706466.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706466.5775716, + "human_ts": "2025-09-01T06:01:06.578508Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706466.txt b/platform/dbops/run/reports/connectivity_1756706466.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706466.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706526.json b/platform/dbops/run/reports/connectivity_1756706526.json new file mode 100644 index 0000000000000000000000000000000000000000..33e091ded95f4bfbf6b84ca701a0c462b2c06632 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706526.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706526.9102118, + "human_ts": "2025-09-01T06:02:06.911125Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706526.txt b/platform/dbops/run/reports/connectivity_1756706526.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706526.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706587.json b/platform/dbops/run/reports/connectivity_1756706587.json new file mode 100644 index 0000000000000000000000000000000000000000..46d56fccc042bcb9c9a4fd63f0ead87413e6e81f --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706587.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706587.2570064, + "human_ts": "2025-09-01T06:03:07.257941Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706587.txt b/platform/dbops/run/reports/connectivity_1756706587.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706587.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706647.json b/platform/dbops/run/reports/connectivity_1756706647.json new file mode 100644 index 0000000000000000000000000000000000000000..5b71a3e888b1ff2684b42987c36c1af7bb0e9fc2 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706647.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706647.6052148, + "human_ts": "2025-09-01T06:04:07.606134Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706647.txt b/platform/dbops/run/reports/connectivity_1756706647.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706647.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706707.json b/platform/dbops/run/reports/connectivity_1756706707.json new file mode 100644 index 0000000000000000000000000000000000000000..e74c945274fa78f3c0a2fe32052a519f13c89547 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706707.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706707.9419036, + "human_ts": "2025-09-01T06:05:07.942808Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706707.txt b/platform/dbops/run/reports/connectivity_1756706707.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706707.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706768.json b/platform/dbops/run/reports/connectivity_1756706768.json new file mode 100644 index 0000000000000000000000000000000000000000..b2bd2aaecf35a09cbeadbeb49a01041eaca510ae --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706768.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706768.3802593, + "human_ts": "2025-09-01T06:06:08.381175Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706768.txt b/platform/dbops/run/reports/connectivity_1756706768.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706768.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706828.json b/platform/dbops/run/reports/connectivity_1756706828.json new file mode 100644 index 0000000000000000000000000000000000000000..60c1b6cec04258f0caac233bb42a4b943e981c50 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706828.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706828.7154355, + "human_ts": "2025-09-01T06:07:08.716355Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706828.txt b/platform/dbops/run/reports/connectivity_1756706828.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706828.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706889.json b/platform/dbops/run/reports/connectivity_1756706889.json new file mode 100644 index 0000000000000000000000000000000000000000..bf7ce195d0d2afa3a1c1eef0b51235ac1d1c8c62 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706889.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706889.0440238, + "human_ts": "2025-09-01T06:08:09.044961Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706889.txt b/platform/dbops/run/reports/connectivity_1756706889.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706889.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756706949.json b/platform/dbops/run/reports/connectivity_1756706949.json new file mode 100644 index 0000000000000000000000000000000000000000..c548787527c61babf2553b304254377d6a0c5a43 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706949.json @@ -0,0 +1,82 @@ +{ + "ts": 1756706949.387042, + "human_ts": "2025-09-01T06:09:09.387964Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756706949.txt b/platform/dbops/run/reports/connectivity_1756706949.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756706949.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707009.json b/platform/dbops/run/reports/connectivity_1756707009.json new file mode 100644 index 0000000000000000000000000000000000000000..35b31f636e47db0d233344267e51788531a0c4a3 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707009.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707009.729369, + "human_ts": "2025-09-01T06:10:09.730294Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707009.txt b/platform/dbops/run/reports/connectivity_1756707009.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707009.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707070.json b/platform/dbops/run/reports/connectivity_1756707070.json new file mode 100644 index 0000000000000000000000000000000000000000..8d78127a09be5b8969f120697d64a6f1bed9136f --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707070.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707070.0571742, + "human_ts": "2025-09-01T06:11:10.058084Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707070.txt b/platform/dbops/run/reports/connectivity_1756707070.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707070.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707130.json b/platform/dbops/run/reports/connectivity_1756707130.json new file mode 100644 index 0000000000000000000000000000000000000000..e48f880bc7b65c71f0cbb905c6b53daa6b30cf20 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707130.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707130.400223, + "human_ts": "2025-09-01T06:12:10.401152Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707130.txt b/platform/dbops/run/reports/connectivity_1756707130.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707130.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707190.json b/platform/dbops/run/reports/connectivity_1756707190.json new file mode 100644 index 0000000000000000000000000000000000000000..8569f8fad795d8abea85000ac27a29fac735f5ab --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707190.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707190.741264, + "human_ts": "2025-09-01T06:13:10.742196Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707190.txt b/platform/dbops/run/reports/connectivity_1756707190.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707190.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707251.json b/platform/dbops/run/reports/connectivity_1756707251.json new file mode 100644 index 0000000000000000000000000000000000000000..e26de28fa226521c1e8a34de04cdeb7f6a86cf97 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707251.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707251.0760775, + "human_ts": "2025-09-01T06:14:11.077022Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707251.txt b/platform/dbops/run/reports/connectivity_1756707251.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707251.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707311.json b/platform/dbops/run/reports/connectivity_1756707311.json new file mode 100644 index 0000000000000000000000000000000000000000..007a847c4e687a2f049035e91eec87e4f6c45c3f --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707311.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707311.4175746, + "human_ts": "2025-09-01T06:15:11.418513Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707311.txt b/platform/dbops/run/reports/connectivity_1756707311.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707311.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707371.json b/platform/dbops/run/reports/connectivity_1756707371.json new file mode 100644 index 0000000000000000000000000000000000000000..79765b976edb71e195527c2bc98f02b9562aafe3 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707371.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707371.7550519, + "human_ts": "2025-09-01T06:16:11.755981Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707371.txt b/platform/dbops/run/reports/connectivity_1756707371.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707371.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707432.json b/platform/dbops/run/reports/connectivity_1756707432.json new file mode 100644 index 0000000000000000000000000000000000000000..9cd679904308025d393f5b4e718ad59770c343f0 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707432.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707432.0908346, + "human_ts": "2025-09-01T06:17:12.091768Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707432.txt b/platform/dbops/run/reports/connectivity_1756707432.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707432.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707492.json b/platform/dbops/run/reports/connectivity_1756707492.json new file mode 100644 index 0000000000000000000000000000000000000000..ac3c65bb9e6bcd00736c14d982a5db5315d61a1b --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707492.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707492.429058, + "human_ts": "2025-09-01T06:18:12.429991Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707492.txt b/platform/dbops/run/reports/connectivity_1756707492.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707492.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707552.json b/platform/dbops/run/reports/connectivity_1756707552.json new file mode 100644 index 0000000000000000000000000000000000000000..a85b89fee833e0bf3f4e2a195d8287a093adb0dc --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707552.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707552.7716856, + "human_ts": "2025-09-01T06:19:12.772600Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707552.txt b/platform/dbops/run/reports/connectivity_1756707552.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707552.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707613.json b/platform/dbops/run/reports/connectivity_1756707613.json new file mode 100644 index 0000000000000000000000000000000000000000..9d905a15838642d4e16b5b9add7dce00ca1401b0 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707613.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707613.1027656, + "human_ts": "2025-09-01T06:20:13.103682Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707613.txt b/platform/dbops/run/reports/connectivity_1756707613.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707613.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707673.json b/platform/dbops/run/reports/connectivity_1756707673.json new file mode 100644 index 0000000000000000000000000000000000000000..c5c51974b3ac5d1c185602176a555a994ff364bd --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707673.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707673.4408083, + "human_ts": "2025-09-01T06:21:13.441724Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707673.txt b/platform/dbops/run/reports/connectivity_1756707673.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707673.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707733.json b/platform/dbops/run/reports/connectivity_1756707733.json new file mode 100644 index 0000000000000000000000000000000000000000..e8c4ddb70da19820ec22f4b2219600a75e6c0f8b --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707733.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707733.76807, + "human_ts": "2025-09-01T06:22:13.768981Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707733.txt b/platform/dbops/run/reports/connectivity_1756707733.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707733.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707794.json b/platform/dbops/run/reports/connectivity_1756707794.json new file mode 100644 index 0000000000000000000000000000000000000000..745436e7c82121038a8b1b19bbf1bdc7bf24c4ed --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707794.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707794.1033535, + "human_ts": "2025-09-01T06:23:14.104263Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707794.txt b/platform/dbops/run/reports/connectivity_1756707794.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707794.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707854.json b/platform/dbops/run/reports/connectivity_1756707854.json new file mode 100644 index 0000000000000000000000000000000000000000..417d617d06ac160d0595d8dc2b0263c5b1f2c881 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707854.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707854.4362662, + "human_ts": "2025-09-01T06:24:14.437177Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707854.txt b/platform/dbops/run/reports/connectivity_1756707854.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707854.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707869.json b/platform/dbops/run/reports/connectivity_1756707869.json new file mode 100644 index 0000000000000000000000000000000000000000..8a0ce6589d996632731668a853eba8341250c6f1 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707869.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707869.240281, + "human_ts": "2025-09-01T06:24:29.241265Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707869.txt b/platform/dbops/run/reports/connectivity_1756707869.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707869.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707870.json b/platform/dbops/run/reports/connectivity_1756707870.json new file mode 100644 index 0000000000000000000000000000000000000000..cba40d0a16716252cbe0d7ee7d698e2f540065bd --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707870.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707870.533219, + "human_ts": "2025-09-01T06:24:30.534107Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707870.txt b/platform/dbops/run/reports/connectivity_1756707870.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707870.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707872.json b/platform/dbops/run/reports/connectivity_1756707872.json new file mode 100644 index 0000000000000000000000000000000000000000..2cbad140d8bee820153dd586240f3277429df26d --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707872.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707872.8514822, + "human_ts": "2025-09-01T06:24:32.852378Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707872.txt b/platform/dbops/run/reports/connectivity_1756707872.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707872.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707929.json b/platform/dbops/run/reports/connectivity_1756707929.json new file mode 100644 index 0000000000000000000000000000000000000000..ddb872a1bffb4e4e9481569aa6c6ee9feb5b8458 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707929.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707929.5723915, + "human_ts": "2025-09-01T06:25:29.573324Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707929.txt b/platform/dbops/run/reports/connectivity_1756707929.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707929.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756707989.json b/platform/dbops/run/reports/connectivity_1756707989.json new file mode 100644 index 0000000000000000000000000000000000000000..b86a0771f6633c94ec28fc4374797db068ea1d17 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707989.json @@ -0,0 +1,82 @@ +{ + "ts": 1756707989.9216788, + "human_ts": "2025-09-01T06:26:29.922588Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756707989.txt b/platform/dbops/run/reports/connectivity_1756707989.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756707989.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708006.json b/platform/dbops/run/reports/connectivity_1756708006.json new file mode 100644 index 0000000000000000000000000000000000000000..05867736d46164c1a8f225b7c5457685e87c7b71 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708006.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708006.5150309, + "human_ts": "2025-09-01T06:26:46.515971Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708006.txt b/platform/dbops/run/reports/connectivity_1756708006.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708006.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708050.json b/platform/dbops/run/reports/connectivity_1756708050.json new file mode 100644 index 0000000000000000000000000000000000000000..63c58da547ae253f0e157d6f870baf3e831beb43 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708050.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708050.2654192, + "human_ts": "2025-09-01T06:27:30.266344Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708050.txt b/platform/dbops/run/reports/connectivity_1756708050.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708050.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708110.json b/platform/dbops/run/reports/connectivity_1756708110.json new file mode 100644 index 0000000000000000000000000000000000000000..431f9a0cd537e424c4ee50f289fedf4bd7a30256 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708110.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708110.5962455, + "human_ts": "2025-09-01T06:28:30.597155Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708110.txt b/platform/dbops/run/reports/connectivity_1756708110.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708110.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708170.json b/platform/dbops/run/reports/connectivity_1756708170.json new file mode 100644 index 0000000000000000000000000000000000000000..140daadcc17df06a453a0b54c415d7448676bd98 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708170.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708170.923357, + "human_ts": "2025-09-01T06:29:30.924258Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708170.txt b/platform/dbops/run/reports/connectivity_1756708170.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708170.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708231.json b/platform/dbops/run/reports/connectivity_1756708231.json new file mode 100644 index 0000000000000000000000000000000000000000..bf9bb9592422c92d7634e72178ef41d98128bbaa --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708231.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708231.2652106, + "human_ts": "2025-09-01T06:30:31.266131Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708231.txt b/platform/dbops/run/reports/connectivity_1756708231.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708231.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708291.json b/platform/dbops/run/reports/connectivity_1756708291.json new file mode 100644 index 0000000000000000000000000000000000000000..d1c3337fad22f421ef892c37a12ef022f55d609f --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708291.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708291.5955682, + "human_ts": "2025-09-01T06:31:31.596502Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708291.txt b/platform/dbops/run/reports/connectivity_1756708291.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708291.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708351.json b/platform/dbops/run/reports/connectivity_1756708351.json new file mode 100644 index 0000000000000000000000000000000000000000..50147c47aca1314f86eb3959b25a7bde8a92daa7 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708351.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708351.9355204, + "human_ts": "2025-09-01T06:32:31.936453Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708351.txt b/platform/dbops/run/reports/connectivity_1756708351.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708351.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708412.json b/platform/dbops/run/reports/connectivity_1756708412.json new file mode 100644 index 0000000000000000000000000000000000000000..5b17577208b497c6365f887374b25d57e545dec7 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708412.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708412.27005, + "human_ts": "2025-09-01T06:33:32.270979Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708412.txt b/platform/dbops/run/reports/connectivity_1756708412.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708412.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708472.json b/platform/dbops/run/reports/connectivity_1756708472.json new file mode 100644 index 0000000000000000000000000000000000000000..367d353fba5e5da84fec97a276f9e28d4d64d9fe --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708472.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708472.6073852, + "human_ts": "2025-09-01T06:34:32.608320Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708472.txt b/platform/dbops/run/reports/connectivity_1756708472.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708472.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708532.json b/platform/dbops/run/reports/connectivity_1756708532.json new file mode 100644 index 0000000000000000000000000000000000000000..175dc588f9e2679a35a5592619f80d91e6350284 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708532.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708532.9460888, + "human_ts": "2025-09-01T06:35:32.947021Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708532.txt b/platform/dbops/run/reports/connectivity_1756708532.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708532.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708600.json b/platform/dbops/run/reports/connectivity_1756708600.json new file mode 100644 index 0000000000000000000000000000000000000000..81af7fd7106b05ab4c2edeab5cf1a0cb8f9f7ab0 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708600.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708600.4301038, + "human_ts": "2025-09-01T06:36:40.431036Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708600.txt b/platform/dbops/run/reports/connectivity_1756708600.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708600.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708688.json b/platform/dbops/run/reports/connectivity_1756708688.json new file mode 100644 index 0000000000000000000000000000000000000000..08d18e083bc60ae8c1f9d3493bfe864af8fc98d2 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708688.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708688.183817, + "human_ts": "2025-09-01T06:38:08.184727Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708688.txt b/platform/dbops/run/reports/connectivity_1756708688.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708688.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708758.json b/platform/dbops/run/reports/connectivity_1756708758.json new file mode 100644 index 0000000000000000000000000000000000000000..e13f16028e893e3f28f6ff87ec9a16c92241e3ca --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708758.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708758.9721415, + "human_ts": "2025-09-01T06:39:18.973077Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708758.txt b/platform/dbops/run/reports/connectivity_1756708758.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708758.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708819.json b/platform/dbops/run/reports/connectivity_1756708819.json new file mode 100644 index 0000000000000000000000000000000000000000..2123fffcfc6b2d5d2cbaf05e2332ecd7c7507544 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708819.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708819.3052406, + "human_ts": "2025-09-01T06:40:19.306165Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708819.txt b/platform/dbops/run/reports/connectivity_1756708819.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708819.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708879.json b/platform/dbops/run/reports/connectivity_1756708879.json new file mode 100644 index 0000000000000000000000000000000000000000..d79df919e74760921c310319f74797f2f046b705 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708879.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708879.6334035, + "human_ts": "2025-09-01T06:41:19.634338Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708879.txt b/platform/dbops/run/reports/connectivity_1756708879.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708879.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756708952.json b/platform/dbops/run/reports/connectivity_1756708952.json new file mode 100644 index 0000000000000000000000000000000000000000..23384a99058a934ee56000e6245c7be4413b66fa --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708952.json @@ -0,0 +1,82 @@ +{ + "ts": 1756708952.069724, + "human_ts": "2025-09-01T06:42:32.070667Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756708952.txt b/platform/dbops/run/reports/connectivity_1756708952.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756708952.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709044.json b/platform/dbops/run/reports/connectivity_1756709044.json new file mode 100644 index 0000000000000000000000000000000000000000..9073ca304c4ec3e89072b34bac32c4063d5a7107 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709044.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709044.6848373, + "human_ts": "2025-09-01T06:44:04.685793Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709044.txt b/platform/dbops/run/reports/connectivity_1756709044.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709044.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709105.json b/platform/dbops/run/reports/connectivity_1756709105.json new file mode 100644 index 0000000000000000000000000000000000000000..7bce9e813201f80a48ac9a6aae4c65a9796173ef --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709105.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709105.039904, + "human_ts": "2025-09-01T06:45:05.040847Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709105.txt b/platform/dbops/run/reports/connectivity_1756709105.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709105.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709165.json b/platform/dbops/run/reports/connectivity_1756709165.json new file mode 100644 index 0000000000000000000000000000000000000000..857fd27e00482f4447871d3c1959e01dd58e5ad3 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709165.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709165.3731935, + "human_ts": "2025-09-01T06:46:05.374136Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709165.txt b/platform/dbops/run/reports/connectivity_1756709165.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709165.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709225.json b/platform/dbops/run/reports/connectivity_1756709225.json new file mode 100644 index 0000000000000000000000000000000000000000..414adb16a50319f8c493cd29f4961c7e70f92124 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709225.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709225.854749, + "human_ts": "2025-09-01T06:47:05.855676Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709225.txt b/platform/dbops/run/reports/connectivity_1756709225.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709225.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709286.json b/platform/dbops/run/reports/connectivity_1756709286.json new file mode 100644 index 0000000000000000000000000000000000000000..6ad9621c59fd1f9dd9274e5207dc65f4144062bc --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709286.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709286.400962, + "human_ts": "2025-09-01T06:48:06.401881Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709286.txt b/platform/dbops/run/reports/connectivity_1756709286.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709286.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709346.json b/platform/dbops/run/reports/connectivity_1756709346.json new file mode 100644 index 0000000000000000000000000000000000000000..9a4760c967d3d753a6ad1dccd45626e4ec5d7cd0 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709346.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709346.742759, + "human_ts": "2025-09-01T06:49:06.743689Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709346.txt b/platform/dbops/run/reports/connectivity_1756709346.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709346.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709407.json b/platform/dbops/run/reports/connectivity_1756709407.json new file mode 100644 index 0000000000000000000000000000000000000000..ee61e8469d474adddf83ef6a1cfe4a73bddf8db6 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709407.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709407.0810888, + "human_ts": "2025-09-01T06:50:07.082019Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709407.txt b/platform/dbops/run/reports/connectivity_1756709407.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709407.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709467.json b/platform/dbops/run/reports/connectivity_1756709467.json new file mode 100644 index 0000000000000000000000000000000000000000..41dc4e7976430497fe36167a48fd46d42ee0cfc6 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709467.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709467.5543969, + "human_ts": "2025-09-01T06:51:07.555327Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709467.txt b/platform/dbops/run/reports/connectivity_1756709467.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709467.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709527.json b/platform/dbops/run/reports/connectivity_1756709527.json new file mode 100644 index 0000000000000000000000000000000000000000..cb35f744ccc5d52461efe15e09d2a5c0a7e82169 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709527.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709527.8875613, + "human_ts": "2025-09-01T06:52:07.888488Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709527.txt b/platform/dbops/run/reports/connectivity_1756709527.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709527.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709588.json b/platform/dbops/run/reports/connectivity_1756709588.json new file mode 100644 index 0000000000000000000000000000000000000000..4f530e6b930198211b31665b65d1b558285366a8 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709588.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709588.2226276, + "human_ts": "2025-09-01T06:53:08.223556Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709588.txt b/platform/dbops/run/reports/connectivity_1756709588.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709588.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709648.json b/platform/dbops/run/reports/connectivity_1756709648.json new file mode 100644 index 0000000000000000000000000000000000000000..da7056bc773fe58335506596c3d4e438f441870d --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709648.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709648.555112, + "human_ts": "2025-09-01T06:54:08.556017Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709648.txt b/platform/dbops/run/reports/connectivity_1756709648.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709648.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709708.json b/platform/dbops/run/reports/connectivity_1756709708.json new file mode 100644 index 0000000000000000000000000000000000000000..46d5c17c38bdef9e1c63bdd32efa9034ed19d2ff --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709708.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709708.8865137, + "human_ts": "2025-09-01T06:55:08.887416Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709708.txt b/platform/dbops/run/reports/connectivity_1756709708.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709708.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709769.json b/platform/dbops/run/reports/connectivity_1756709769.json new file mode 100644 index 0000000000000000000000000000000000000000..a8cf88468e98dcda46fb4fd99360dad41f099297 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709769.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709769.2259164, + "human_ts": "2025-09-01T06:56:09.226840Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709769.txt b/platform/dbops/run/reports/connectivity_1756709769.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709769.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709829.json b/platform/dbops/run/reports/connectivity_1756709829.json new file mode 100644 index 0000000000000000000000000000000000000000..dfff2cf08cf5c89f083527196c50a49b12285334 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709829.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709829.5668921, + "human_ts": "2025-09-01T06:57:09.567823Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709829.txt b/platform/dbops/run/reports/connectivity_1756709829.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709829.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709889.json b/platform/dbops/run/reports/connectivity_1756709889.json new file mode 100644 index 0000000000000000000000000000000000000000..0f5e647f33541b1233ca8f283bfaaee4778c45fa --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709889.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709889.9081576, + "human_ts": "2025-09-01T06:58:09.909083Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709889.txt b/platform/dbops/run/reports/connectivity_1756709889.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709889.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756709950.json b/platform/dbops/run/reports/connectivity_1756709950.json new file mode 100644 index 0000000000000000000000000000000000000000..8b9cb692a0c6919953bef345c84fc91ea8a5c428 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709950.json @@ -0,0 +1,82 @@ +{ + "ts": 1756709950.2565813, + "human_ts": "2025-09-01T06:59:10.257488Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756709950.txt b/platform/dbops/run/reports/connectivity_1756709950.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756709950.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710010.json b/platform/dbops/run/reports/connectivity_1756710010.json new file mode 100644 index 0000000000000000000000000000000000000000..f03acefc5d2f0bdb969d0d03f460c32de41b20df --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710010.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710010.5918226, + "human_ts": "2025-09-01T07:00:10.592744Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710010.txt b/platform/dbops/run/reports/connectivity_1756710010.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710010.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710070.json b/platform/dbops/run/reports/connectivity_1756710070.json new file mode 100644 index 0000000000000000000000000000000000000000..f465e2a15fa79892c66b7de655545cd94bb2ecf1 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710070.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710070.931919, + "human_ts": "2025-09-01T07:01:10.932821Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710070.txt b/platform/dbops/run/reports/connectivity_1756710070.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710070.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710131.json b/platform/dbops/run/reports/connectivity_1756710131.json new file mode 100644 index 0000000000000000000000000000000000000000..d3057508ccaf6a7daa88c6002a92d0332c475bac --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710131.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710131.265972, + "human_ts": "2025-09-01T07:02:11.266889Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710131.txt b/platform/dbops/run/reports/connectivity_1756710131.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710131.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710191.json b/platform/dbops/run/reports/connectivity_1756710191.json new file mode 100644 index 0000000000000000000000000000000000000000..4e53caf1614926b01d77ec3bac433c98d921216d --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710191.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710191.6012187, + "human_ts": "2025-09-01T07:03:11.602128Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710191.txt b/platform/dbops/run/reports/connectivity_1756710191.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710191.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710251.json b/platform/dbops/run/reports/connectivity_1756710251.json new file mode 100644 index 0000000000000000000000000000000000000000..ede0dffbc2db664fdd5131fff381ac10da5e4824 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710251.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710251.935339, + "human_ts": "2025-09-01T07:04:11.936241Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710251.txt b/platform/dbops/run/reports/connectivity_1756710251.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710251.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710312.json b/platform/dbops/run/reports/connectivity_1756710312.json new file mode 100644 index 0000000000000000000000000000000000000000..c587090859aa6ea4717c1e239f2889aac6404ecb --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710312.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710312.2684793, + "human_ts": "2025-09-01T07:05:12.269385Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710312.txt b/platform/dbops/run/reports/connectivity_1756710312.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710312.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710372.json b/platform/dbops/run/reports/connectivity_1756710372.json new file mode 100644 index 0000000000000000000000000000000000000000..8e8b50d8ef334f209a988402cc2c75fd85a05bc9 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710372.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710372.6109273, + "human_ts": "2025-09-01T07:06:12.611821Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710372.txt b/platform/dbops/run/reports/connectivity_1756710372.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710372.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710432.json b/platform/dbops/run/reports/connectivity_1756710432.json new file mode 100644 index 0000000000000000000000000000000000000000..76b016bba6aebde736bf055723e8f0063cf95495 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710432.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710432.9408824, + "human_ts": "2025-09-01T07:07:12.941797Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710432.txt b/platform/dbops/run/reports/connectivity_1756710432.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710432.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710493.json b/platform/dbops/run/reports/connectivity_1756710493.json new file mode 100644 index 0000000000000000000000000000000000000000..cb755f921b2b0c3db6363663343d591fceacfb97 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710493.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710493.435289, + "human_ts": "2025-09-01T07:08:13.436196Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710493.txt b/platform/dbops/run/reports/connectivity_1756710493.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710493.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710553.json b/platform/dbops/run/reports/connectivity_1756710553.json new file mode 100644 index 0000000000000000000000000000000000000000..b85ce92616eb2f0b0155288ec1c50c8fe738a8de --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710553.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710553.7752862, + "human_ts": "2025-09-01T07:09:13.776202Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710553.txt b/platform/dbops/run/reports/connectivity_1756710553.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710553.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710614.json b/platform/dbops/run/reports/connectivity_1756710614.json new file mode 100644 index 0000000000000000000000000000000000000000..ec349c7e971ad9d49cc9e22deb82e7b8a44f5822 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710614.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710614.1122413, + "human_ts": "2025-09-01T07:10:14.113175Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710614.txt b/platform/dbops/run/reports/connectivity_1756710614.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710614.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710674.json b/platform/dbops/run/reports/connectivity_1756710674.json new file mode 100644 index 0000000000000000000000000000000000000000..3d2139f2edce833cd464c9a595b8e7a595e34ab4 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710674.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710674.4884107, + "human_ts": "2025-09-01T07:11:14.489327Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710674.txt b/platform/dbops/run/reports/connectivity_1756710674.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710674.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710734.json b/platform/dbops/run/reports/connectivity_1756710734.json new file mode 100644 index 0000000000000000000000000000000000000000..eabe529ef52be3b9e4eb80fc2e57fa6840a8fd2b --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710734.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710734.8202503, + "human_ts": "2025-09-01T07:12:14.821145Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710734.txt b/platform/dbops/run/reports/connectivity_1756710734.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710734.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710795.json b/platform/dbops/run/reports/connectivity_1756710795.json new file mode 100644 index 0000000000000000000000000000000000000000..1b2ccaeebd5d307110d266cd44d8a534c387d428 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710795.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710795.1498787, + "human_ts": "2025-09-01T07:13:15.150796Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710795.txt b/platform/dbops/run/reports/connectivity_1756710795.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710795.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710855.json b/platform/dbops/run/reports/connectivity_1756710855.json new file mode 100644 index 0000000000000000000000000000000000000000..5b674913c5f30193bbdbde4b8321e77487d33bad --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710855.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710855.4896176, + "human_ts": "2025-09-01T07:14:15.490547Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710855.txt b/platform/dbops/run/reports/connectivity_1756710855.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710855.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710915.json b/platform/dbops/run/reports/connectivity_1756710915.json new file mode 100644 index 0000000000000000000000000000000000000000..ac35c2c9f2ed74eff977b9fba7c295abcc72c16f --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710915.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710915.8318048, + "human_ts": "2025-09-01T07:15:15.832717Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710915.txt b/platform/dbops/run/reports/connectivity_1756710915.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710915.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756710976.json b/platform/dbops/run/reports/connectivity_1756710976.json new file mode 100644 index 0000000000000000000000000000000000000000..dc9015f505cc05122d5eb1ed9d5d59b3beb1fa56 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710976.json @@ -0,0 +1,82 @@ +{ + "ts": 1756710976.173503, + "human_ts": "2025-09-01T07:16:16.174445Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756710976.txt b/platform/dbops/run/reports/connectivity_1756710976.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756710976.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711036.json b/platform/dbops/run/reports/connectivity_1756711036.json new file mode 100644 index 0000000000000000000000000000000000000000..1bc9b269ba246b974f4c393e3457cf9786a6ec1c --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711036.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711036.5639293, + "human_ts": "2025-09-01T07:17:16.564877Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711036.txt b/platform/dbops/run/reports/connectivity_1756711036.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711036.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711096.json b/platform/dbops/run/reports/connectivity_1756711096.json new file mode 100644 index 0000000000000000000000000000000000000000..e7829ddb800cc6eba44530f8a671373fef464755 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711096.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711096.8946567, + "human_ts": "2025-09-01T07:18:16.895618Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711096.txt b/platform/dbops/run/reports/connectivity_1756711096.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711096.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711157.json b/platform/dbops/run/reports/connectivity_1756711157.json new file mode 100644 index 0000000000000000000000000000000000000000..702fd763714a4e42871faa6e7f473fbd3427192c --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711157.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711157.2417924, + "human_ts": "2025-09-01T07:19:17.242727Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711157.txt b/platform/dbops/run/reports/connectivity_1756711157.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711157.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711217.json b/platform/dbops/run/reports/connectivity_1756711217.json new file mode 100644 index 0000000000000000000000000000000000000000..01950c88a5a8e297aa4380e9c593d35715b25a99 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711217.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711217.5698223, + "human_ts": "2025-09-01T07:20:17.570727Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711217.txt b/platform/dbops/run/reports/connectivity_1756711217.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711217.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711280.json b/platform/dbops/run/reports/connectivity_1756711280.json new file mode 100644 index 0000000000000000000000000000000000000000..d2197593e45f3f46d9bacd32e4210997c5dd6bc4 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711280.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711280.4190476, + "human_ts": "2025-09-01T07:21:20.419960Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711280.txt b/platform/dbops/run/reports/connectivity_1756711280.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711280.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711343.json b/platform/dbops/run/reports/connectivity_1756711343.json new file mode 100644 index 0000000000000000000000000000000000000000..fd68e05811711ad31288b5c004c8b71acc891929 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711343.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711343.26856, + "human_ts": "2025-09-01T07:22:23.269464Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711343.txt b/platform/dbops/run/reports/connectivity_1756711343.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711343.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711406.json b/platform/dbops/run/reports/connectivity_1756711406.json new file mode 100644 index 0000000000000000000000000000000000000000..a6e8c7fa4514a64d05180e55e4c30a5966af0722 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711406.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711406.1294148, + "human_ts": "2025-09-01T07:23:26.130332Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711406.txt b/platform/dbops/run/reports/connectivity_1756711406.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711406.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711479.json b/platform/dbops/run/reports/connectivity_1756711479.json new file mode 100644 index 0000000000000000000000000000000000000000..4217f0d9a02ea9e353b856c0d7906f4183719faf --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711479.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711479.003922, + "human_ts": "2025-09-01T07:24:39.004840Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711479.txt b/platform/dbops/run/reports/connectivity_1756711479.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711479.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711539.json b/platform/dbops/run/reports/connectivity_1756711539.json new file mode 100644 index 0000000000000000000000000000000000000000..89f51f891c086ffda220bc1e277ada39bf95102b --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711539.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711539.3393624, + "human_ts": "2025-09-01T07:25:39.340276Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711539.txt b/platform/dbops/run/reports/connectivity_1756711539.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711539.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711599.json b/platform/dbops/run/reports/connectivity_1756711599.json new file mode 100644 index 0000000000000000000000000000000000000000..b2ccdbcb63746cad43681262d86e902d6dffaf84 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711599.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711599.6636627, + "human_ts": "2025-09-01T07:26:39.664565Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711599.txt b/platform/dbops/run/reports/connectivity_1756711599.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711599.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711659.json b/platform/dbops/run/reports/connectivity_1756711659.json new file mode 100644 index 0000000000000000000000000000000000000000..6df2c00cd4e6aec761a704e7899dcef5f3566b49 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711659.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711659.9857867, + "human_ts": "2025-09-01T07:27:39.986718Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711659.txt b/platform/dbops/run/reports/connectivity_1756711659.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711659.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711720.json b/platform/dbops/run/reports/connectivity_1756711720.json new file mode 100644 index 0000000000000000000000000000000000000000..3b4830f971872c833e8d420722c3bc68a207044d --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711720.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711720.326762, + "human_ts": "2025-09-01T07:28:40.327686Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711720.txt b/platform/dbops/run/reports/connectivity_1756711720.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711720.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711780.json b/platform/dbops/run/reports/connectivity_1756711780.json new file mode 100644 index 0000000000000000000000000000000000000000..34d3fea5ae529b108b6fed825fdddb58438c5b6c --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711780.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711780.6758614, + "human_ts": "2025-09-01T07:29:40.676783Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711780.txt b/platform/dbops/run/reports/connectivity_1756711780.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711780.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711841.json b/platform/dbops/run/reports/connectivity_1756711841.json new file mode 100644 index 0000000000000000000000000000000000000000..2ae4ba5c621386b804414038a5abd28a895b53df --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711841.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711841.0143619, + "human_ts": "2025-09-01T07:30:41.015284Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711841.txt b/platform/dbops/run/reports/connectivity_1756711841.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711841.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711901.json b/platform/dbops/run/reports/connectivity_1756711901.json new file mode 100644 index 0000000000000000000000000000000000000000..e9234dcdcb86986a83ee50bd6261da00235dfc26 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711901.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711901.3490553, + "human_ts": "2025-09-01T07:31:41.349991Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711901.txt b/platform/dbops/run/reports/connectivity_1756711901.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711901.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756711961.json b/platform/dbops/run/reports/connectivity_1756711961.json new file mode 100644 index 0000000000000000000000000000000000000000..87f4b6ccfaac62a61e3e8f37981406043c09bf5e --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711961.json @@ -0,0 +1,82 @@ +{ + "ts": 1756711961.7013612, + "human_ts": "2025-09-01T07:32:41.702253Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756711961.txt b/platform/dbops/run/reports/connectivity_1756711961.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756711961.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712022.json b/platform/dbops/run/reports/connectivity_1756712022.json new file mode 100644 index 0000000000000000000000000000000000000000..ae8ebaf3400fa751311ef9589ffa9978f87b65d5 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712022.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712022.0391786, + "human_ts": "2025-09-01T07:33:42.040098Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712022.txt b/platform/dbops/run/reports/connectivity_1756712022.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712022.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712082.json b/platform/dbops/run/reports/connectivity_1756712082.json new file mode 100644 index 0000000000000000000000000000000000000000..01ca1694e530ff7a2ead3c20a1c0ed987deea230 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712082.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712082.373371, + "human_ts": "2025-09-01T07:34:42.374297Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712082.txt b/platform/dbops/run/reports/connectivity_1756712082.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712082.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712142.json b/platform/dbops/run/reports/connectivity_1756712142.json new file mode 100644 index 0000000000000000000000000000000000000000..d043f2bfe8711ab414515d2c0d2a6ca9c7a36b9e --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712142.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712142.701423, + "human_ts": "2025-09-01T07:35:42.702340Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712142.txt b/platform/dbops/run/reports/connectivity_1756712142.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712142.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712203.json b/platform/dbops/run/reports/connectivity_1756712203.json new file mode 100644 index 0000000000000000000000000000000000000000..fd3f15a88edc856706019c8cd12a55c7d32e6d9f --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712203.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712203.0481532, + "human_ts": "2025-09-01T07:36:43.049058Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712203.txt b/platform/dbops/run/reports/connectivity_1756712203.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712203.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712263.json b/platform/dbops/run/reports/connectivity_1756712263.json new file mode 100644 index 0000000000000000000000000000000000000000..1ad8d5fabfb70fc7c394dc254475424279dffd97 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712263.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712263.3892603, + "human_ts": "2025-09-01T07:37:43.390178Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712263.txt b/platform/dbops/run/reports/connectivity_1756712263.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712263.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712323.json b/platform/dbops/run/reports/connectivity_1756712323.json new file mode 100644 index 0000000000000000000000000000000000000000..5d523a9f0df49c40c6a7b26ae223082078a1585b --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712323.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712323.815126, + "human_ts": "2025-09-01T07:38:43.816035Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712323.txt b/platform/dbops/run/reports/connectivity_1756712323.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712323.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712384.json b/platform/dbops/run/reports/connectivity_1756712384.json new file mode 100644 index 0000000000000000000000000000000000000000..ce8d868e033e5057f9bfc0f2534c8d9ec32decd0 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712384.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712384.1540167, + "human_ts": "2025-09-01T07:39:44.154913Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712384.txt b/platform/dbops/run/reports/connectivity_1756712384.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712384.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712444.json b/platform/dbops/run/reports/connectivity_1756712444.json new file mode 100644 index 0000000000000000000000000000000000000000..801f6e19398d87c28bf7d84cc307346c8a6215c8 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712444.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712444.4906855, + "human_ts": "2025-09-01T07:40:44.491616Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712444.txt b/platform/dbops/run/reports/connectivity_1756712444.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712444.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712504.json b/platform/dbops/run/reports/connectivity_1756712504.json new file mode 100644 index 0000000000000000000000000000000000000000..fe732ecdd8f8082618dcad35d3f513b4ff06b483 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712504.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712504.831653, + "human_ts": "2025-09-01T07:41:44.832550Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712504.txt b/platform/dbops/run/reports/connectivity_1756712504.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712504.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712565.json b/platform/dbops/run/reports/connectivity_1756712565.json new file mode 100644 index 0000000000000000000000000000000000000000..10d433d33a5a04173186be10a8d390eef5890dbe --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712565.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712565.1662006, + "human_ts": "2025-09-01T07:42:45.167129Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712565.txt b/platform/dbops/run/reports/connectivity_1756712565.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712565.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712625.json b/platform/dbops/run/reports/connectivity_1756712625.json new file mode 100644 index 0000000000000000000000000000000000000000..e5e1468fb4ee3b37bb1cd41313e58acafadbbabc --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712625.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712625.5041382, + "human_ts": "2025-09-01T07:43:45.505065Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712625.txt b/platform/dbops/run/reports/connectivity_1756712625.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712625.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712685.json b/platform/dbops/run/reports/connectivity_1756712685.json new file mode 100644 index 0000000000000000000000000000000000000000..98314698b1f81b173fee7feb420ac5ef66980a66 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712685.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712685.8485668, + "human_ts": "2025-09-01T07:44:45.849486Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712685.txt b/platform/dbops/run/reports/connectivity_1756712685.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712685.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712746.json b/platform/dbops/run/reports/connectivity_1756712746.json new file mode 100644 index 0000000000000000000000000000000000000000..7f0908f4dacad2126aeb235bfd1b881149f4b4de --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712746.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712746.1691048, + "human_ts": "2025-09-01T07:45:46.170037Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712746.txt b/platform/dbops/run/reports/connectivity_1756712746.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712746.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712806.json b/platform/dbops/run/reports/connectivity_1756712806.json new file mode 100644 index 0000000000000000000000000000000000000000..0595504b86cf636745663170123d06c9116f1e3d --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712806.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712806.5065427, + "human_ts": "2025-09-01T07:46:46.507460Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712806.txt b/platform/dbops/run/reports/connectivity_1756712806.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712806.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712866.json b/platform/dbops/run/reports/connectivity_1756712866.json new file mode 100644 index 0000000000000000000000000000000000000000..80c6790b12c2dfd1cf644ded2ff282f4d973ed56 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712866.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712866.8510334, + "human_ts": "2025-09-01T07:47:46.851934Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712866.txt b/platform/dbops/run/reports/connectivity_1756712866.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712866.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712927.json b/platform/dbops/run/reports/connectivity_1756712927.json new file mode 100644 index 0000000000000000000000000000000000000000..0378b30bc5129224b75b7ec035ad56f983faf42d --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712927.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712927.192229, + "human_ts": "2025-09-01T07:48:47.193149Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712927.txt b/platform/dbops/run/reports/connectivity_1756712927.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712927.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756712987.json b/platform/dbops/run/reports/connectivity_1756712987.json new file mode 100644 index 0000000000000000000000000000000000000000..4aae8d3f27d76907b21cdd3bab3e61ca012fb38c --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712987.json @@ -0,0 +1,82 @@ +{ + "ts": 1756712987.5304637, + "human_ts": "2025-09-01T07:49:47.531377Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756712987.txt b/platform/dbops/run/reports/connectivity_1756712987.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756712987.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713047.json b/platform/dbops/run/reports/connectivity_1756713047.json new file mode 100644 index 0000000000000000000000000000000000000000..edeb95b2a8aa8610a7238524074a20cea539ccb1 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713047.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713047.8611932, + "human_ts": "2025-09-01T07:50:47.862137Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713047.txt b/platform/dbops/run/reports/connectivity_1756713047.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713047.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713108.json b/platform/dbops/run/reports/connectivity_1756713108.json new file mode 100644 index 0000000000000000000000000000000000000000..4464b9eb4c30e37d6e674ce6a080a02c2be07fdc --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713108.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713108.2002044, + "human_ts": "2025-09-01T07:51:48.201130Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713108.txt b/platform/dbops/run/reports/connectivity_1756713108.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713108.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713168.json b/platform/dbops/run/reports/connectivity_1756713168.json new file mode 100644 index 0000000000000000000000000000000000000000..168fa924cc3414b94a6b51616ba35a2595ab54fc --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713168.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713168.530863, + "human_ts": "2025-09-01T07:52:48.531799Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713168.txt b/platform/dbops/run/reports/connectivity_1756713168.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713168.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713228.json b/platform/dbops/run/reports/connectivity_1756713228.json new file mode 100644 index 0000000000000000000000000000000000000000..cdc669b131d4375aee4c064e1d9a7df7397a8289 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713228.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713228.8630755, + "human_ts": "2025-09-01T07:53:48.864001Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713228.txt b/platform/dbops/run/reports/connectivity_1756713228.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713228.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713289.json b/platform/dbops/run/reports/connectivity_1756713289.json new file mode 100644 index 0000000000000000000000000000000000000000..b923490f76caf95a9907fc25ac4d0617e885474a --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713289.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713289.2048142, + "human_ts": "2025-09-01T07:54:49.205768Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713289.txt b/platform/dbops/run/reports/connectivity_1756713289.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713289.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713349.json b/platform/dbops/run/reports/connectivity_1756713349.json new file mode 100644 index 0000000000000000000000000000000000000000..21794deceb5dc93f1ec57275cd589b0bec80adee --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713349.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713349.5622313, + "human_ts": "2025-09-01T07:55:49.563153Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713349.txt b/platform/dbops/run/reports/connectivity_1756713349.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713349.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713410.json b/platform/dbops/run/reports/connectivity_1756713410.json new file mode 100644 index 0000000000000000000000000000000000000000..93920e1c4980d91dab9c4225da0059fc397a01c3 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713410.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713410.1481805, + "human_ts": "2025-09-01T07:56:50.149090Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713410.txt b/platform/dbops/run/reports/connectivity_1756713410.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713410.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713470.json b/platform/dbops/run/reports/connectivity_1756713470.json new file mode 100644 index 0000000000000000000000000000000000000000..02e628f13fce8b9afda53cdbfd0f957d31af1bc8 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713470.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713470.4805396, + "human_ts": "2025-09-01T07:57:50.481461Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713470.txt b/platform/dbops/run/reports/connectivity_1756713470.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713470.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713530.json b/platform/dbops/run/reports/connectivity_1756713530.json new file mode 100644 index 0000000000000000000000000000000000000000..8fc22dbcede7675248198aae8a1d70df3bf1e040 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713530.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713530.803576, + "human_ts": "2025-09-01T07:58:50.804501Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713530.txt b/platform/dbops/run/reports/connectivity_1756713530.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713530.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713591.json b/platform/dbops/run/reports/connectivity_1756713591.json new file mode 100644 index 0000000000000000000000000000000000000000..98f071377ceb0ab9085969c7da73005f92871379 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713591.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713591.1302595, + "human_ts": "2025-09-01T07:59:51.131179Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713591.txt b/platform/dbops/run/reports/connectivity_1756713591.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713591.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713651.json b/platform/dbops/run/reports/connectivity_1756713651.json new file mode 100644 index 0000000000000000000000000000000000000000..4fd83513b991336e3a89468a2855621477c7d580 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713651.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713651.4643872, + "human_ts": "2025-09-01T08:00:51.465272Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713651.txt b/platform/dbops/run/reports/connectivity_1756713651.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713651.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713711.json b/platform/dbops/run/reports/connectivity_1756713711.json new file mode 100644 index 0000000000000000000000000000000000000000..af8cff5a85937fdb0f4bffa444741f06e94e7d34 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713711.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713711.8250911, + "human_ts": "2025-09-01T08:01:51.826003Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713711.txt b/platform/dbops/run/reports/connectivity_1756713711.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713711.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713772.json b/platform/dbops/run/reports/connectivity_1756713772.json new file mode 100644 index 0000000000000000000000000000000000000000..a29f998f033ff5a525df91be47842eec738663dc --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713772.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713772.1615336, + "human_ts": "2025-09-01T08:02:52.162465Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713772.txt b/platform/dbops/run/reports/connectivity_1756713772.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713772.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713832.json b/platform/dbops/run/reports/connectivity_1756713832.json new file mode 100644 index 0000000000000000000000000000000000000000..5e8b623d8ce171f1d04092e0f2562afb4194345d --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713832.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713832.5594513, + "human_ts": "2025-09-01T08:03:52.560381Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713832.txt b/platform/dbops/run/reports/connectivity_1756713832.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713832.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713892.json b/platform/dbops/run/reports/connectivity_1756713892.json new file mode 100644 index 0000000000000000000000000000000000000000..3d69a846459bd4d3453198476424cea9d8762d8d --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713892.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713892.902826, + "human_ts": "2025-09-01T08:04:52.903722Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713892.txt b/platform/dbops/run/reports/connectivity_1756713892.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713892.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756713953.json b/platform/dbops/run/reports/connectivity_1756713953.json new file mode 100644 index 0000000000000000000000000000000000000000..704ec207f73eccb5565d8d58118477391a1d9d76 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713953.json @@ -0,0 +1,82 @@ +{ + "ts": 1756713953.238127, + "human_ts": "2025-09-01T08:05:53.239047Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756713953.txt b/platform/dbops/run/reports/connectivity_1756713953.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756713953.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714013.json b/platform/dbops/run/reports/connectivity_1756714013.json new file mode 100644 index 0000000000000000000000000000000000000000..ab00e03e7c276d1ef069b9d28f94cbdb3486174a --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714013.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714013.5835383, + "human_ts": "2025-09-01T08:06:53.584449Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714013.txt b/platform/dbops/run/reports/connectivity_1756714013.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714013.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714073.json b/platform/dbops/run/reports/connectivity_1756714073.json new file mode 100644 index 0000000000000000000000000000000000000000..6a75a7bf343bae38e21bb2eece7f724f3b988483 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714073.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714073.9214776, + "human_ts": "2025-09-01T08:07:53.922390Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -3] Temporary failure in name resolution" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714073.txt b/platform/dbops/run/reports/connectivity_1756714073.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714073.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714170.json b/platform/dbops/run/reports/connectivity_1756714170.json new file mode 100644 index 0000000000000000000000000000000000000000..25edfeae63f1458b32054fd6bbfc5c1759b74194 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714170.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714170.2909503, + "human_ts": "2025-09-01T08:09:30.291874Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714170.txt b/platform/dbops/run/reports/connectivity_1756714170.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714170.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714230.json b/platform/dbops/run/reports/connectivity_1756714230.json new file mode 100644 index 0000000000000000000000000000000000000000..3eb0aba72a0fec7658c5f0869f89a87d0fb8887c --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714230.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714230.640717, + "human_ts": "2025-09-01T08:10:30.641606Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714230.txt b/platform/dbops/run/reports/connectivity_1756714230.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714230.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714290.json b/platform/dbops/run/reports/connectivity_1756714290.json new file mode 100644 index 0000000000000000000000000000000000000000..09a19168175e3b2a64326081b024a615b7b86e13 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714290.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714290.979725, + "human_ts": "2025-09-01T08:11:30.980615Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714290.txt b/platform/dbops/run/reports/connectivity_1756714290.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714290.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714351.json b/platform/dbops/run/reports/connectivity_1756714351.json new file mode 100644 index 0000000000000000000000000000000000000000..d3383ca10a7f5f7e98309e498f4b2a67ec02a698 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714351.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714351.4494524, + "human_ts": "2025-09-01T08:12:31.450359Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714351.txt b/platform/dbops/run/reports/connectivity_1756714351.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714351.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714411.json b/platform/dbops/run/reports/connectivity_1756714411.json new file mode 100644 index 0000000000000000000000000000000000000000..331a19354c76548c8d515d9e539c70fed5ee718c --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714411.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714411.7893882, + "human_ts": "2025-09-01T08:13:31.790307Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714411.txt b/platform/dbops/run/reports/connectivity_1756714411.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714411.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714472.json b/platform/dbops/run/reports/connectivity_1756714472.json new file mode 100644 index 0000000000000000000000000000000000000000..5b8222b0a71da1c05fe2dc5da823ed35801aca8a --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714472.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714472.1278932, + "human_ts": "2025-09-01T08:14:32.128818Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714472.txt b/platform/dbops/run/reports/connectivity_1756714472.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714472.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714532.json b/platform/dbops/run/reports/connectivity_1756714532.json new file mode 100644 index 0000000000000000000000000000000000000000..9ff8b7fe974f0e19fc0ba31d4fbb473d5775d033 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714532.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714532.465935, + "human_ts": "2025-09-01T08:15:32.466852Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714532.txt b/platform/dbops/run/reports/connectivity_1756714532.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714532.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714592.json b/platform/dbops/run/reports/connectivity_1756714592.json new file mode 100644 index 0000000000000000000000000000000000000000..aefd7677d45c2e5db97e7844d6e94e906f6bf764 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714592.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714592.810715, + "human_ts": "2025-09-01T08:16:32.811635Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714592.txt b/platform/dbops/run/reports/connectivity_1756714592.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714592.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714653.json b/platform/dbops/run/reports/connectivity_1756714653.json new file mode 100644 index 0000000000000000000000000000000000000000..f4be502525c3793026958ba1702e8a8475c803ad --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714653.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714653.1555903, + "human_ts": "2025-09-01T08:17:33.156523Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714653.txt b/platform/dbops/run/reports/connectivity_1756714653.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714653.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714713.json b/platform/dbops/run/reports/connectivity_1756714713.json new file mode 100644 index 0000000000000000000000000000000000000000..f2033c0fe20ed1d1f05d2376858d3e85aa4aaf58 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714713.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714713.4895818, + "human_ts": "2025-09-01T08:18:33.490496Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714713.txt b/platform/dbops/run/reports/connectivity_1756714713.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714713.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714773.json b/platform/dbops/run/reports/connectivity_1756714773.json new file mode 100644 index 0000000000000000000000000000000000000000..2ea2edaac3b33beb810c9223c330d15c004d64d3 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714773.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714773.8292265, + "human_ts": "2025-09-01T08:19:33.830134Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714773.txt b/platform/dbops/run/reports/connectivity_1756714773.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714773.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714834.json b/platform/dbops/run/reports/connectivity_1756714834.json new file mode 100644 index 0000000000000000000000000000000000000000..cb2f190505511a5f55fc4fb9840d14b9fcdbca1f --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714834.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714834.1747506, + "human_ts": "2025-09-01T08:20:34.175670Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714834.txt b/platform/dbops/run/reports/connectivity_1756714834.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714834.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714894.json b/platform/dbops/run/reports/connectivity_1756714894.json new file mode 100644 index 0000000000000000000000000000000000000000..151543ae2ecb76891f2bc28594af3a36424ae561 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714894.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714894.763656, + "human_ts": "2025-09-01T08:21:34.764578Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714894.txt b/platform/dbops/run/reports/connectivity_1756714894.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714894.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756714955.json b/platform/dbops/run/reports/connectivity_1756714955.json new file mode 100644 index 0000000000000000000000000000000000000000..4e396ba00c97e1b271a934131857d7288d5c2c63 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714955.json @@ -0,0 +1,82 @@ +{ + "ts": 1756714955.1156006, + "human_ts": "2025-09-01T08:22:35.116515Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756714955.txt b/platform/dbops/run/reports/connectivity_1756714955.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756714955.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715015.json b/platform/dbops/run/reports/connectivity_1756715015.json new file mode 100644 index 0000000000000000000000000000000000000000..21266cb2e69dff4a30ec8cb9eb344e026c688b3a --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715015.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715015.4665868, + "human_ts": "2025-09-01T08:23:35.467507Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715015.txt b/platform/dbops/run/reports/connectivity_1756715015.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715015.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715075.json b/platform/dbops/run/reports/connectivity_1756715075.json new file mode 100644 index 0000000000000000000000000000000000000000..0fdd37c942b0352d8fc5042fead70bc83be14620 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715075.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715075.8067067, + "human_ts": "2025-09-01T08:24:35.807654Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715075.txt b/platform/dbops/run/reports/connectivity_1756715075.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715075.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715136.json b/platform/dbops/run/reports/connectivity_1756715136.json new file mode 100644 index 0000000000000000000000000000000000000000..5221cc542b999d414b58c8480d4a9cfd2fb69372 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715136.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715136.2817504, + "human_ts": "2025-09-01T08:25:36.282688Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715136.txt b/platform/dbops/run/reports/connectivity_1756715136.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715136.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715196.json b/platform/dbops/run/reports/connectivity_1756715196.json new file mode 100644 index 0000000000000000000000000000000000000000..743d6ac2886c258e854d9742804b78c8e93771b3 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715196.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715196.6153119, + "human_ts": "2025-09-01T08:26:36.616239Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715196.txt b/platform/dbops/run/reports/connectivity_1756715196.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715196.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715256.json b/platform/dbops/run/reports/connectivity_1756715256.json new file mode 100644 index 0000000000000000000000000000000000000000..1dcce8fcfe9050a228b0e0a0d4afa1d9243195e2 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715256.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715256.9457703, + "human_ts": "2025-09-01T08:27:36.946669Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715256.txt b/platform/dbops/run/reports/connectivity_1756715256.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715256.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715317.json b/platform/dbops/run/reports/connectivity_1756715317.json new file mode 100644 index 0000000000000000000000000000000000000000..c24bd94dcd9a053a47f4d724d57185a5ad2fd9ba --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715317.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715317.2778337, + "human_ts": "2025-09-01T08:28:37.278790Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715317.txt b/platform/dbops/run/reports/connectivity_1756715317.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715317.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715377.json b/platform/dbops/run/reports/connectivity_1756715377.json new file mode 100644 index 0000000000000000000000000000000000000000..ecef8ab4900ada619bcdb72dd7eb3660b347e990 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715377.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715377.6247537, + "human_ts": "2025-09-01T08:29:37.625682Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715377.txt b/platform/dbops/run/reports/connectivity_1756715377.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715377.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715437.json b/platform/dbops/run/reports/connectivity_1756715437.json new file mode 100644 index 0000000000000000000000000000000000000000..7d91e8ac4de2e87f1844151ac226945d1e455f46 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715437.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715437.9517794, + "human_ts": "2025-09-01T08:30:37.952710Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715437.txt b/platform/dbops/run/reports/connectivity_1756715437.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715437.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715498.json b/platform/dbops/run/reports/connectivity_1756715498.json new file mode 100644 index 0000000000000000000000000000000000000000..ddf9f8e60f3a570ba89181fff313856bb1fdcd06 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715498.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715498.289356, + "human_ts": "2025-09-01T08:31:38.290317Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715498.txt b/platform/dbops/run/reports/connectivity_1756715498.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715498.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715558.json b/platform/dbops/run/reports/connectivity_1756715558.json new file mode 100644 index 0000000000000000000000000000000000000000..f8df839468e43d568c894fb0179c65acc0d48221 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715558.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715558.6399536, + "human_ts": "2025-09-01T08:32:38.640883Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715558.txt b/platform/dbops/run/reports/connectivity_1756715558.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715558.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715618.json b/platform/dbops/run/reports/connectivity_1756715618.json new file mode 100644 index 0000000000000000000000000000000000000000..535ae875141f52bb20afbfd12e1ff68d81c81374 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715618.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715618.9712589, + "human_ts": "2025-09-01T08:33:38.972190Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715618.txt b/platform/dbops/run/reports/connectivity_1756715618.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715618.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715679.json b/platform/dbops/run/reports/connectivity_1756715679.json new file mode 100644 index 0000000000000000000000000000000000000000..91483fb6345033501ef8a8b5c8cd48de82a72146 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715679.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715679.3060935, + "human_ts": "2025-09-01T08:34:39.307000Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715679.txt b/platform/dbops/run/reports/connectivity_1756715679.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715679.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715739.json b/platform/dbops/run/reports/connectivity_1756715739.json new file mode 100644 index 0000000000000000000000000000000000000000..e72d206e06564dcfb15db3a224d25998646eb3df --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715739.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715739.6392133, + "human_ts": "2025-09-01T08:35:39.640148Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715739.txt b/platform/dbops/run/reports/connectivity_1756715739.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715739.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715799.json b/platform/dbops/run/reports/connectivity_1756715799.json new file mode 100644 index 0000000000000000000000000000000000000000..cc167b6a36c9f0174c3c2b09a299221d74f04481 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715799.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715799.9765923, + "human_ts": "2025-09-01T08:36:39.977564Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715799.txt b/platform/dbops/run/reports/connectivity_1756715799.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715799.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715860.json b/platform/dbops/run/reports/connectivity_1756715860.json new file mode 100644 index 0000000000000000000000000000000000000000..83423203c2937bbd32d32c95945d3cfe633ec845 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715860.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715860.3158593, + "human_ts": "2025-09-01T08:37:40.316797Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715860.txt b/platform/dbops/run/reports/connectivity_1756715860.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715860.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715920.json b/platform/dbops/run/reports/connectivity_1756715920.json new file mode 100644 index 0000000000000000000000000000000000000000..d1557400ad86bcfdc73e8a9a2b377ac65ec6d9cd --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715920.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715920.6615334, + "human_ts": "2025-09-01T08:38:40.662465Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715920.txt b/platform/dbops/run/reports/connectivity_1756715920.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715920.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756715980.json b/platform/dbops/run/reports/connectivity_1756715980.json new file mode 100644 index 0000000000000000000000000000000000000000..98222509da934cd7d6c3bffe87c3cc3e4de27dd4 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715980.json @@ -0,0 +1,82 @@ +{ + "ts": 1756715980.997639, + "human_ts": "2025-09-01T08:39:40.998560Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756715980.txt b/platform/dbops/run/reports/connectivity_1756715980.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756715980.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716041.json b/platform/dbops/run/reports/connectivity_1756716041.json new file mode 100644 index 0000000000000000000000000000000000000000..ae33436239445d2421b91351ca395008c9f7ec3f --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716041.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716041.3344314, + "human_ts": "2025-09-01T08:40:41.335370Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716041.txt b/platform/dbops/run/reports/connectivity_1756716041.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716041.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716101.json b/platform/dbops/run/reports/connectivity_1756716101.json new file mode 100644 index 0000000000000000000000000000000000000000..8bdd58aa861c283733802e3395fc1227b384ab25 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716101.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716101.6716492, + "human_ts": "2025-09-01T08:41:41.672570Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716101.txt b/platform/dbops/run/reports/connectivity_1756716101.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716101.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716162.json b/platform/dbops/run/reports/connectivity_1756716162.json new file mode 100644 index 0000000000000000000000000000000000000000..e9bc489b6edd22d818dbf649fe1ab30a5de7aa0b --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716162.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716162.0076337, + "human_ts": "2025-09-01T08:42:42.008564Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716162.txt b/platform/dbops/run/reports/connectivity_1756716162.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716162.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716222.json b/platform/dbops/run/reports/connectivity_1756716222.json new file mode 100644 index 0000000000000000000000000000000000000000..b7c9f4ffb0077eceb0411933e62cac055ca8c71f --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716222.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716222.339315, + "human_ts": "2025-09-01T08:43:42.340264Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716222.txt b/platform/dbops/run/reports/connectivity_1756716222.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716222.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716282.json b/platform/dbops/run/reports/connectivity_1756716282.json new file mode 100644 index 0000000000000000000000000000000000000000..7c5233804bb538c20cb83bdd24c71d0ec56bf4a6 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716282.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716282.6777284, + "human_ts": "2025-09-01T08:44:42.678650Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716282.txt b/platform/dbops/run/reports/connectivity_1756716282.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716282.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716343.json b/platform/dbops/run/reports/connectivity_1756716343.json new file mode 100644 index 0000000000000000000000000000000000000000..5db4fc6ab7388d1fb08eea494305e3a8bdb0a598 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716343.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716343.0186033, + "human_ts": "2025-09-01T08:45:43.019548Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716343.txt b/platform/dbops/run/reports/connectivity_1756716343.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716343.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716403.json b/platform/dbops/run/reports/connectivity_1756716403.json new file mode 100644 index 0000000000000000000000000000000000000000..313f948bf4524519bb43c13f9b71990043fc4401 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716403.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716403.5502982, + "human_ts": "2025-09-01T08:46:43.551226Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716403.txt b/platform/dbops/run/reports/connectivity_1756716403.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716403.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716463.json b/platform/dbops/run/reports/connectivity_1756716463.json new file mode 100644 index 0000000000000000000000000000000000000000..315f5fd00456bc12154f67d329f5f5a7de15a8b5 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716463.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716463.947653, + "human_ts": "2025-09-01T08:47:43.948598Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716463.txt b/platform/dbops/run/reports/connectivity_1756716463.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716463.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716524.json b/platform/dbops/run/reports/connectivity_1756716524.json new file mode 100644 index 0000000000000000000000000000000000000000..e61a433e2d3701d1081e2e74ee7b6cdc8b1845f2 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716524.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716524.2889988, + "human_ts": "2025-09-01T08:48:44.289931Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716524.txt b/platform/dbops/run/reports/connectivity_1756716524.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716524.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716584.json b/platform/dbops/run/reports/connectivity_1756716584.json new file mode 100644 index 0000000000000000000000000000000000000000..2a49bf54e39dd6645f2fe82ea770ed4986ca9519 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716584.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716584.618495, + "human_ts": "2025-09-01T08:49:44.619417Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716584.txt b/platform/dbops/run/reports/connectivity_1756716584.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716584.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716644.json b/platform/dbops/run/reports/connectivity_1756716644.json new file mode 100644 index 0000000000000000000000000000000000000000..b1167b949e9da66db84d4711c3d42ff0e447d874 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716644.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716644.9514804, + "human_ts": "2025-09-01T08:50:44.952404Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716644.txt b/platform/dbops/run/reports/connectivity_1756716644.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716644.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716705.json b/platform/dbops/run/reports/connectivity_1756716705.json new file mode 100644 index 0000000000000000000000000000000000000000..a88e8639790543a508f3e6f7a1af11e0cc5f917e --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716705.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716705.2891204, + "human_ts": "2025-09-01T08:51:45.290026Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716705.txt b/platform/dbops/run/reports/connectivity_1756716705.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716705.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716765.json b/platform/dbops/run/reports/connectivity_1756716765.json new file mode 100644 index 0000000000000000000000000000000000000000..af4fbd6071c95a7dd78ef84835d88c14ba036e98 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716765.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716765.627921, + "human_ts": "2025-09-01T08:52:45.628856Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716765.txt b/platform/dbops/run/reports/connectivity_1756716765.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716765.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716825.json b/platform/dbops/run/reports/connectivity_1756716825.json new file mode 100644 index 0000000000000000000000000000000000000000..a94bd9c1488e5b541139e5b45ac48d6a07df4e7a --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716825.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716825.96141, + "human_ts": "2025-09-01T08:53:45.962331Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716825.txt b/platform/dbops/run/reports/connectivity_1756716825.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716825.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716886.json b/platform/dbops/run/reports/connectivity_1756716886.json new file mode 100644 index 0000000000000000000000000000000000000000..3a9af38b5989b9398445f9e157f0fcb7bfecaeb3 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716886.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716886.2993188, + "human_ts": "2025-09-01T08:54:46.300252Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716886.txt b/platform/dbops/run/reports/connectivity_1756716886.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716886.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756716946.json b/platform/dbops/run/reports/connectivity_1756716946.json new file mode 100644 index 0000000000000000000000000000000000000000..5166b20a7c078296e01cca791781d3a010c130e5 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716946.json @@ -0,0 +1,82 @@ +{ + "ts": 1756716946.6957552, + "human_ts": "2025-09-01T08:55:46.696695Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756716946.txt b/platform/dbops/run/reports/connectivity_1756716946.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756716946.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756717007.json b/platform/dbops/run/reports/connectivity_1756717007.json new file mode 100644 index 0000000000000000000000000000000000000000..9449ad1b5f4be21621a3d15542fa814dedd93de8 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756717007.json @@ -0,0 +1,82 @@ +{ + "ts": 1756717007.0240185, + "human_ts": "2025-09-01T08:56:47.024973Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756717007.txt b/platform/dbops/run/reports/connectivity_1756717007.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756717007.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756717067.json b/platform/dbops/run/reports/connectivity_1756717067.json new file mode 100644 index 0000000000000000000000000000000000000000..cae2e098cba0f155942e6fdc32d100a94c314720 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756717067.json @@ -0,0 +1,82 @@ +{ + "ts": 1756717067.3847795, + "human_ts": "2025-09-01T08:57:47.387033Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756717067.txt b/platform/dbops/run/reports/connectivity_1756717067.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756717067.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756717127.json b/platform/dbops/run/reports/connectivity_1756717127.json new file mode 100644 index 0000000000000000000000000000000000000000..1b23efbe85e0457ef039a79a33512b44991316a8 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756717127.json @@ -0,0 +1,82 @@ +{ + "ts": 1756717127.722277, + "human_ts": "2025-09-01T08:58:47.723236Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756717127.txt b/platform/dbops/run/reports/connectivity_1756717127.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756717127.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756717188.json b/platform/dbops/run/reports/connectivity_1756717188.json new file mode 100644 index 0000000000000000000000000000000000000000..682d9c280a80b43cd80aa46bccb38eae3fcf591b --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756717188.json @@ -0,0 +1,82 @@ +{ + "ts": 1756717188.072375, + "human_ts": "2025-09-01T08:59:48.073289Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file diff --git a/platform/dbops/run/reports/connectivity_1756717188.txt b/platform/dbops/run/reports/connectivity_1756717188.txt new file mode 100644 index 0000000000000000000000000000000000000000..928365147131654d2a5611abee5668987ccfb182 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756717188.txt @@ -0,0 +1,23 @@ +DNS +- qdrant.dbops.local: FAIL +- gremlin.dbops.local: FAIL +- dragonfly-1.dbops.local: FAIL +- dragonfly-2.dbops.local: FAIL +- dragonfly-3.dbops.local: FAIL +- redis-1.dbops.local: FAIL +- redis-2.dbops.local: FAIL +- redis-3.dbops.local: FAIL + +TCP +- qdrant.dbops.local:17000: FAIL +- qdrant.dbops.local:17001: FAIL +- gremlin.dbops.local:17002: FAIL +- dragonfly-1.dbops.local:18000: FAIL +- dragonfly-2.dbops.local:18001: FAIL +- dragonfly-3.dbops.local:18002: FAIL +- redis-1.dbops.local:18010: FAIL +- redis-2.dbops.local:18011: FAIL +- redis-3.dbops.local:18012: FAIL + +HTTP +- http://qdrant.dbops.local:17000/collections: FAIL diff --git a/platform/dbops/run/reports/connectivity_1756717248.json b/platform/dbops/run/reports/connectivity_1756717248.json new file mode 100644 index 0000000000000000000000000000000000000000..75a5852e32c84800a472eb05eebff2cbea5465b4 --- /dev/null +++ b/platform/dbops/run/reports/connectivity_1756717248.json @@ -0,0 +1,82 @@ +{ + "ts": 1756717248.406824, + "human_ts": "2025-09-01T09:00:48.407768Z", + "dns": { + "qdrant.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "tcp": { + "qdrant.dbops.local:17000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "qdrant.dbops.local:17001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "gremlin.dbops.local:17002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-1.dbops.local:18000": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-2.dbops.local:18001": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "dragonfly-3.dbops.local:18002": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-1.dbops.local:18010": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-2.dbops.local:18011": { + "ok": false, + "error": "[Errno -2] Name or service not known" + }, + "redis-3.dbops.local:18012": { + "ok": false, + "error": "[Errno -2] Name or service not known" + } + }, + "http": { + "http://qdrant.dbops.local:17000/collections": { + "ok": false, + "error": "HTTPConnectionPool(host='qdrant.dbops.local', port=17000): Max retries exceeded with url: /collections (Caused by NameResolutionError(\": Failed to resolve 'qdrant.dbops.local' ([Errno -2] Name or service not known)\"))" + } + } +} \ No newline at end of file