Skip to content

Commit 6c9c60e

Browse files
author
maksim.konovalov
committed
pool: add Instance info to connection ConnectionInfo
The Instance info has been added to ConnectionInfo, which is necessary to monitor the current state of the pool. This should help implement dynamic tracking of tarantool topology changes.
1 parent d8e2284 commit 6c9c60e

File tree

3 files changed

+48
-3
lines changed

3 files changed

+48
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Versioning](http://semver.org/spec/v2.0.0.html) except to the first release.
1111
### Added
1212

1313
- Extend box with replication information (#427).
14+
- The Instance info has been added to ConnectionInfo for GetInfo response (#428).
1415

1516
### Changed
1617

pool/connection_pool.go

+18-3
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ ConnectionInfo structure for information about connection statuses:
9393
type ConnectionInfo struct {
9494
ConnectedNow bool
9595
ConnRole Role
96+
Instance Instance
9697
}
9798

9899
/*
@@ -393,12 +394,26 @@ func (p *ConnectionPool) GetInfo() map[string]ConnectionInfo {
393394
return info
394395
}
395396

396-
for name := range p.ends {
397+
for name, end := range p.ends {
397398
conn, role := p.getConnectionFromPool(name)
398399
if conn != nil {
399-
info[name] = ConnectionInfo{ConnectedNow: conn.ConnectedNow(), ConnRole: role}
400+
info[name] = ConnectionInfo{
401+
ConnectedNow: conn.ConnectedNow(),
402+
ConnRole: role,
403+
Instance: Instance{
404+
Name: name,
405+
Dialer: end.dialer,
406+
Opts: end.opts,
407+
}}
400408
} else {
401-
info[name] = ConnectionInfo{ConnectedNow: false, ConnRole: UnknownRole}
409+
info[name] = ConnectionInfo{
410+
ConnectedNow: false,
411+
ConnRole: UnknownRole,
412+
Instance: Instance{
413+
Name: name,
414+
Dialer: end.dialer,
415+
Opts: end.opts,
416+
}}
402417
}
403418
}
404419

pool/connection_pool_test.go

+29
Original file line numberDiff line numberDiff line change
@@ -3495,6 +3495,35 @@ func runTestMain(m *testing.M) int {
34953495
return m.Run()
34963496
}
34973497

3498+
func TestConnectionPool_GetInfo(t *testing.T) {
3499+
t.Run("equal instance info", func(t *testing.T) {
3500+
var tCases [][]pool.Instance
3501+
3502+
tCases = append(tCases, makeInstances([]string{servers[0], servers[1]}, connOpts))
3503+
tCases = append(tCases, makeInstances([]string{servers[0], servers[1], servers[3]}, connOpts))
3504+
tCases = append(tCases, makeInstances([]string{servers[0]}, connOpts))
3505+
3506+
for _, tc := range tCases {
3507+
ctx, cancel := test_helpers.GetPoolConnectContext()
3508+
connPool, err := pool.Connect(ctx, tc)
3509+
cancel()
3510+
require.Nilf(t, err, "failed to connect")
3511+
require.NotNilf(t, connPool, "conn is nil after Connect")
3512+
3513+
info := connPool.GetInfo()
3514+
3515+
var infoInstances []pool.Instance
3516+
3517+
for _, infoInst := range info {
3518+
infoInstances = append(infoInstances, infoInst.Instance)
3519+
}
3520+
3521+
require.ElementsMatch(t, tc, infoInstances)
3522+
connPool.Close()
3523+
}
3524+
})
3525+
}
3526+
34983527
func TestMain(m *testing.M) {
34993528
code := runTestMain(m)
35003529
os.Exit(code)

0 commit comments

Comments
 (0)