Skip to content

Commit bbcde53

Browse files
authored
Merge pull request #478 from rethinkdb/develop
6.1.0 release
2 parents ce1a82d + d5da520 commit bbcde53

17 files changed

+281
-86
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
language: go
22

33
go:
4-
- 1.9.x
54
- 1.10.x
65
- 1.11.x
76
- 1.12.x
87
- 1.13.x
8+
- 1.14.x
99

1010
cache: apt
1111

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## v6.1.0 - 2020-03-09
6+
7+
- Reworked and tested new connection pools with multiple queries per connection
8+
- Socket Read- and WriteTimeout replaced with context timeout
9+
- Mock assert fix
10+
- Connection pool fixed initial size
11+
- Changes added offsets
12+
513
## v6.0.0 - 2019-12-22
614

715
- 2.4 RethinkDB support

Makefile

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
test:
2-
test -d ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6 && mv ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6 ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6.bak; true
3-
cp -R . ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6
4-
go test -coverprofile=cover.out -race gopkg.in/rethinkdb/rethinkdb-go.v6; true
5-
go tool cover -html=cover.out -o cover.html; true
6-
rm -f cover.out; true
7-
rm -rf ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6
8-
test -d ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6.bak && mv ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6.bak ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6; true
2+
go test -coverprofile=cover.out -race gopkg.in/rethinkdb/rethinkdb-go.v6 gopkg.in/rethinkdb/rethinkdb-go.v6/encoding gopkg.in/rethinkdb/rethinkdb-go.v6/types
3+
go tool cover -html=cover.out -o cover.html
4+
rm -f cover.out
5+
6+
integration:
7+
go test -race gopkg.in/rethinkdb/rethinkdb-go.v6/internal/integration/...
8+
9+
benchpool:
10+
go test -v -cpu 1,2,4,8,16,24,32,64,128,256 -bench=BenchmarkConnectionPool -run ^$ ./internal/integration/tests/

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
![RethinkDB-go Logo](https://raw.github.com/wiki/rethinkdb/rethinkdb-go/gopher-and-thinker-s.png "Golang Gopher and RethinkDB Thinker")
1010

11-
Current version: v6.0.0 (RethinkDB v2.4)
11+
Current version: v6.1.0 (RethinkDB v2.4)
1212

1313
Please note that this version of the driver only supports versions of RethinkDB using the v0.4 protocol (any versions of the driver older than RethinkDB 2.0 will not work).
1414

connection.go

+2-9
Original file line numberDiff line numberDiff line change
@@ -378,11 +378,6 @@ func (c *Connection) sendQuery(q Query) error {
378378
binary.LittleEndian.PutUint64(b, uint64(q.Token))
379379
binary.LittleEndian.PutUint32(b[8:], uint32(len(b)-respHeaderLen))
380380

381-
// Set timeout
382-
if c.opts.WriteTimeout != 0 {
383-
c.Conn.SetWriteDeadline(time.Now().Add(c.opts.WriteTimeout))
384-
}
385-
386381
// Send the JSON encoding of the query itself.
387382
if err = c.writeData(b); err != nil {
388383
c.setBad()
@@ -402,10 +397,8 @@ func (c *Connection) nextToken() int64 {
402397
// readResponse attempts to read a Response from the server, if no response
403398
// could be read then an error is returned.
404399
func (c *Connection) readResponse() (*Response, error) {
405-
// Set timeout
406-
if c.opts.ReadTimeout != 0 {
407-
c.Conn.SetReadDeadline(time.Now().Add(c.opts.ReadTimeout))
408-
}
400+
// due to this is pooled connection, it always reads from socket even if idle
401+
// timeouts should be only on query-level with context
409402

410403
// Read response header (token+length)
411404
headerBuf := [respHeaderLen]byte{}

connection_helper.go

+7-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,14 @@ func (c *Connection) read(buf []byte) (total int, err error) {
1717
}
1818

1919
func (c *Connection) contextFromConnectionOpts() context.Context {
20-
sum := c.opts.ReadTimeout + c.opts.WriteTimeout
21-
if c.opts.ReadTimeout == 0 || c.opts.WriteTimeout == 0 {
20+
// back compatibility
21+
min := c.opts.ReadTimeout
22+
if c.opts.WriteTimeout < min {
23+
min = c.opts.WriteTimeout
24+
}
25+
if min == 0 {
2226
return context.Background()
2327
}
24-
ctx, _ := context.WithTimeout(context.Background(), sum)
28+
ctx, _ := context.WithTimeout(context.Background(), min)
2529
return ctx
2630
}

connection_test.go

+20-23
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ func (s *ConnectionSuite) TestConnection_Query_Ok(c *test.C) {
2525
header := respHeader(token, respData)
2626

2727
conn := &connMock{}
28-
conn.On("Write", writeData).Return(len(writeData), nil)
29-
conn.On("Read", respHeaderLen).Return(header, respHeaderLen, nil)
30-
conn.On("Read", len(respData)).Return(respData, len(respData), nil)
28+
conn.On("Write", writeData).Return(len(writeData), nil, nil)
29+
conn.On("Read", respHeaderLen).Return(header, respHeaderLen, nil, nil)
30+
conn.On("Read", len(respData)).Return(respData, len(respData), nil, nil)
3131
conn.On("Close").Return(nil)
3232

3333
connection := newConnection(conn, "addr", &ConnectOpts{})
@@ -60,9 +60,9 @@ func (s *ConnectionSuite) TestConnection_Query_DefaultDBOk(c *test.C) {
6060
header := respHeader(token, respData)
6161

6262
conn := &connMock{}
63-
conn.On("Write", writeData).Return(len(writeData), nil)
64-
conn.On("Read", respHeaderLen).Return(header, respHeaderLen, nil)
65-
conn.On("Read", len(respData)).Return(respData, len(respData), nil)
63+
conn.On("Write", writeData).Return(len(writeData), nil, nil)
64+
conn.On("Read", respHeaderLen).Return(header, respHeaderLen, nil, nil)
65+
conn.On("Read", len(respData)).Return(respData, len(respData), nil, nil)
6666
conn.On("Close").Return(nil)
6767

6868
connection := newConnection(conn, "addr", &ConnectOpts{Database: "db"})
@@ -106,7 +106,7 @@ func (s *ConnectionSuite) TestConnection_Query_SendFail(c *test.C) {
106106
writeData := serializeQuery(token, q)
107107

108108
conn := &connMock{}
109-
conn.On("Write", writeData).Return(0, io.EOF)
109+
conn.On("Write", writeData).Return(0, io.EOF, nil)
110110

111111
connection := newConnection(conn, "addr", &ConnectOpts{})
112112
response, cursor, err := connection.Query(ctx, q)
@@ -126,9 +126,9 @@ func (s *ConnectionSuite) TestConnection_Query_NoReplyOk(c *test.C) {
126126
header := respHeader(token, respData)
127127

128128
conn := &connMock{}
129-
conn.On("Write", writeData).Return(len(writeData), nil)
130-
conn.On("Read", respHeaderLen).Return(header, respHeaderLen, nil)
131-
conn.On("Read", len(respData)).Return(respData, len(respData), nil)
129+
conn.On("Write", writeData).Return(len(writeData), nil, nil)
130+
conn.On("Read", respHeaderLen).Return(header, respHeaderLen, nil, nil)
131+
conn.On("Read", len(respData)).Return(respData, len(respData), nil, nil)
132132
conn.On("Close").Return(nil)
133133

134134
connection := newConnection(conn, "addr", &ConnectOpts{})
@@ -151,9 +151,8 @@ func (s *ConnectionSuite) TestConnection_Query_TimeoutWrite(c *test.C) {
151151
stopData := serializeQuery(token, newStopQuery(token))
152152

153153
conn := &connMock{}
154-
conn.On("Write", writeData).Return(len(writeData), nil)
155-
conn.On("Write", stopData).Return(len(stopData), nil)
156-
conn.On("SetWriteDeadline").Return(nil)
154+
conn.On("Write", writeData).Return(len(writeData), nil, nil)
155+
conn.On("Write", stopData).Return(len(stopData), nil, nil)
157156

158157
connection := newConnection(conn, "addr", &ConnectOpts{ReadTimeout: time.Millisecond, WriteTimeout: time.Millisecond})
159158
connection.readRequestsChan = make(chan tokenAndPromise, 0)
@@ -174,9 +173,8 @@ func (s *ConnectionSuite) TestConnection_Query_TimeoutRead(c *test.C) {
174173
stopData := serializeQuery(token, newStopQuery(token))
175174

176175
conn := &connMock{}
177-
conn.On("Write", writeData).Return(len(writeData), nil)
178-
conn.On("Write", stopData).Return(len(stopData), nil)
179-
conn.On("SetWriteDeadline").Return(nil)
176+
conn.On("Write", writeData).Return(len(writeData), nil, 10*time.Millisecond)
177+
conn.On("Write", stopData).Return(len(stopData), nil, nil)
180178

181179
connection := newConnection(conn, "addr", &ConnectOpts{ReadTimeout: time.Millisecond, WriteTimeout: time.Millisecond})
182180
response, cursor, err := connection.Query(ctx, q)
@@ -196,7 +194,7 @@ func (s *ConnectionSuite) TestConnection_Query_SendFailTracing(c *test.C) {
196194
writeData := serializeQuery(token, q)
197195

198196
conn := &connMock{}
199-
conn.On("Write", writeData).Return(0, io.EOF)
197+
conn.On("Write", writeData).Return(0, io.EOF, nil)
200198

201199
connection := newConnection(conn, "addr", &ConnectOpts{UseOpentracing: true})
202200
response, cursor, err := connection.Query(ctx, q)
@@ -306,8 +304,7 @@ func (s *ConnectionSuite) TestConnection_readResponse_TimeoutHeader(c *test.C) {
306304
timeout := time.Second
307305

308306
conn := &connMock{}
309-
conn.On("SetReadDeadline").Return(nil)
310-
conn.On("Read", respHeaderLen).Return(nil, 0, io.EOF)
307+
conn.On("Read", respHeaderLen).Return(nil, 0, io.EOF, nil)
311308

312309
connection := newConnection(conn, "addr", &ConnectOpts{ReadTimeout: timeout})
313310

@@ -325,8 +322,8 @@ func (s *ConnectionSuite) TestConnection_readResponse_BodySocketErr(c *test.C) {
325322
header := respHeader(token, respData)
326323

327324
conn := &connMock{}
328-
conn.On("Read", respHeaderLen).Return(header, len(header), nil)
329-
conn.On("Read", len(respData)).Return(nil, 0, io.EOF)
325+
conn.On("Read", respHeaderLen).Return(header, len(header), nil, nil)
326+
conn.On("Read", len(respData)).Return(nil, 0, io.EOF, nil)
330327

331328
connection := newConnection(conn, "addr", &ConnectOpts{})
332329

@@ -344,8 +341,8 @@ func (s *ConnectionSuite) TestConnection_readResponse_BodyUnmarshalErr(c *test.C
344341
header := respHeader(token, respData)
345342

346343
conn := &connMock{}
347-
conn.On("Read", respHeaderLen).Return(header, len(header), nil)
348-
conn.On("Read", len(respData)).Return(make([]byte, len(respData)), len(respData), nil)
344+
conn.On("Read", respHeaderLen).Return(header, len(header), nil, nil)
345+
conn.On("Read", len(respData)).Return(make([]byte, len(respData)), len(respData), nil, nil)
349346

350347
connection := newConnection(conn, "addr", &ConnectOpts{})
351348

encoding/decoder.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,10 @@ func valueDecoder(dv, sv reflect.Value, blank bool) decoderFunc {
7878

7979
if dv.IsValid() {
8080
dv = indirect(dv, false)
81-
if blank {
81+
if sv.Kind() == reflect.Ptr {
82+
sv = indirect(sv, false)
83+
dv.Set(sv)
84+
} else if blank {
8285
dv.Set(reflect.Zero(dv.Type()))
8386
}
8487
}

go.mod

+19-12
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
module gopkg.in/rethinkdb/rethinkdb-go.v6
22

33
require (
4-
github.com/cenkalti/backoff v2.0.0+incompatible
4+
github.com/bitly/go-hostpool v0.1.0 // indirect
5+
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
6+
github.com/cenkalti/backoff v2.2.1+incompatible
57
github.com/davecgh/go-spew v1.1.1 // indirect
6-
github.com/golang/protobuf v1.2.0
8+
github.com/golang/protobuf v1.3.4
79
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed
810
github.com/kr/pretty v0.1.0 // indirect
9-
github.com/opentracing/opentracing-go v1.0.2
10-
github.com/pmezard/go-difflib v1.0.0 // indirect
11+
github.com/kr/text v0.2.0 // indirect
12+
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
13+
github.com/onsi/ginkgo v1.12.0 // indirect
14+
github.com/onsi/gomega v1.9.0 // indirect
15+
github.com/opentracing/opentracing-go v1.1.0
1116
github.com/sirupsen/logrus v1.0.6
12-
github.com/stretchr/objx v0.1.1 // indirect
13-
github.com/stretchr/testify v1.2.2
14-
golang.org/x/crypto v0.0.0-20180820150726-614d502a4dac
15-
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d
16-
golang.org/x/sys v0.0.0-20180828065106-d99a578cf41b // indirect
17-
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
18-
gopkg.in/fatih/pool.v2 v2.0.0
17+
github.com/stretchr/objx v0.2.0 // indirect
18+
github.com/stretchr/testify v1.5.1
19+
golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
20+
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
21+
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
22+
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
23+
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f
24+
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
25+
gopkg.in/yaml.v2 v2.2.8 // indirect
1926
)
2027

21-
go 1.13
28+
go 1.14

internal/integration/tests/benchmarks_test.go

+56
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,62 @@ import (
99
"time"
1010
)
1111

12+
func BenchmarkConnectionPoolLightweightQuery_Single(b *testing.B) {
13+
q := r.Random()
14+
15+
for i := 0; i < b.N; i++ {
16+
var num float64
17+
err := q.ReadOne(&num, session)
18+
if err != nil {
19+
b.Errorf("read random number failed: %v", err)
20+
}
21+
}
22+
}
23+
24+
func BenchmarkConnectionPoolLightweightQuery_Parallel(b *testing.B) {
25+
q := r.Random()
26+
27+
b.RunParallel(func(pb *testing.PB) {
28+
for pb.Next() {
29+
var num float64
30+
err := q.ReadOne(&num, session)
31+
if err != nil {
32+
b.Errorf("read random number failed: %v", err)
33+
}
34+
}
35+
})
36+
}
37+
38+
func BenchmarkConnectionPoolLightweightQuery_Parallel3X(b *testing.B) {
39+
q := r.Random()
40+
41+
b.SetParallelism(3)
42+
b.RunParallel(func(pb *testing.PB) {
43+
for pb.Next() {
44+
var num float64
45+
err := q.ReadOne(&num, session)
46+
if err != nil {
47+
b.Errorf("read random number failed: %v", err)
48+
}
49+
}
50+
})
51+
}
52+
53+
func BenchmarkConnectionPoolLightweightQuery_Parallel10X(b *testing.B) {
54+
q := r.Random()
55+
56+
b.SetParallelism(10)
57+
b.RunParallel(func(pb *testing.PB) {
58+
for pb.Next() {
59+
var num float64
60+
err := q.ReadOne(&num, session)
61+
if err != nil {
62+
b.Errorf("read random number failed: %v", err)
63+
}
64+
}
65+
})
66+
}
67+
1268
func BenchmarkBatch200RandomWrites(b *testing.B) {
1369

1470
var term r.Term

internal/integration/tests/session_test.go

+46
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,49 @@ func (s *RethinkSuite) TestSessionConnectUsername(c *test.C) {
158158
_, err = r.Expr("Hello World").Run(session)
159159
c.Assert(err, test.IsNil)
160160
}
161+
162+
func (s *RethinkSuite) TestSessionIdleConnectionRemainsUsableSmallTimeout(c *test.C) {
163+
session, err := r.Connect(r.ConnectOpts{
164+
Address: url,
165+
NumRetries: 1,
166+
InitialCap: 1,
167+
ReadTimeout: 10 * time.Millisecond,
168+
WriteTimeout: 10 * time.Millisecond,
169+
})
170+
c.Assert(err, test.IsNil)
171+
172+
time.Sleep(20 * time.Millisecond)
173+
174+
var num int
175+
err = r.Expr(5).ReadOne(&num, session)
176+
c.Assert(err, test.IsNil)
177+
c.Assert(num, test.Equals, 5)
178+
179+
time.Sleep(20 * time.Millisecond)
180+
181+
err = r.Expr(6).ReadOne(&num, session)
182+
c.Assert(err, test.IsNil)
183+
c.Assert(num, test.Equals, 6)
184+
}
185+
186+
func (s *RethinkSuite) TestSessionIdleConnectionRemainsUsableNoTimeout(c *test.C) {
187+
session, err := r.Connect(r.ConnectOpts{
188+
Address: url,
189+
NumRetries: 1,
190+
InitialCap: 1,
191+
})
192+
c.Assert(err, test.IsNil)
193+
194+
time.Sleep(10 * time.Millisecond)
195+
196+
var num int
197+
err = r.Expr(5).ReadOne(&num, session)
198+
c.Assert(err, test.IsNil)
199+
c.Assert(num, test.Equals, 5)
200+
201+
time.Sleep(10 * time.Millisecond)
202+
203+
err = r.Expr(6).ReadOne(&num, session)
204+
c.Assert(err, test.IsNil)
205+
c.Assert(num, test.Equals, 6)
206+
}

0 commit comments

Comments
 (0)