Skip to content

Commit

Permalink
Merge development (#39)
Browse files Browse the repository at this point in the history
* add DropAllIndexes() method (#25)

Create a new method to drop all the indexes of a collection
in a single call

* readme: credit @feliixx for #25 (#26)

* send metadata during handshake (#28)

fix [#484](https://github.com/go-mgo/mgo/issues/484)

Annotate connections with metadata provided by the
connecting client.

informations send:

{
 "aplication": {         // optional
   "name": "myAppName"
 }
 "driver": {
    "name": "mgo",
    "version": "v2"
  },
  "os": {
    "type": runtime.GOOS,
    "architecture": runtime.GOARCH
  }
}

to set "application.name", add `appname` param in options
of string connection URI,
for example : "mongodb://localhost:27017?appname=myAppName"

* Update README to add appName (#32)

* docs: elaborate on what appName does

* readme: add appName to changes

* add method CreateView() (#33)

Fix #30.

Thanks to @feliixx for the time and effort.

* readme: credit @feliixx in the README (#36)

* Don't panic on indexed int64 fields (#23)

* Stop all db instances after tests (go-mgo#462)

If all tests pass, the builds for mongo earlier than 2.6 are still failing.
Running a clean up fixes the issue.

* fixing int64 type failing when getting indexes and trying to type them

* requested changes relating to case statement and panic

* Update README.md to credit @mapete94.

* tests: ensure indexed int64 fields do not cause a panic in Indexes()

See:
* #23
* https://github.com/go-mgo/mgo/issues/475
* go-mgo#476

* Add collation option to collection.Create() (#37)

- Allow specifying the default collation for the collection when creating it.
- Add some documentation to query.Collation() method.

fix #29

* Test against MongoDB 3.4.x (#35)

* test against MongoDB 3.4.x

* tests: use listIndexes to assert index state for 3.4+

* make test pass against v3.4.x

  - skip `TestViewWithCollation` because of SERVER-31049,
    cf: https://jira.mongodb.org/browse/SERVER-31049

  - add versionAtLeast() method in init.js script to better
    detect server version

fixes #31
  • Loading branch information
domodwyer committed Sep 18, 2017
1 parent df81fe4 commit 3dbb487
Show file tree
Hide file tree
Showing 15 changed files with 667 additions and 108 deletions.
14 changes: 5 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,22 @@ language: go

go_import_path: github.com/globalsign/mgo

addons:
apt:
packages:

env:
global:
- BUCKET=https://s3.eu-west-2.amazonaws.com/globalsign-mgo
matrix:
- GO=1.6 MONGODB=x86_64-2.6.11
- GO=1.7 MONGODB=x86_64-2.6.11
- GO=1.8.x MONGODB=x86_64-2.6.11
- GO=1.6 MONGODB=x86_64-3.0.9
- GO=1.7 MONGODB=x86_64-3.0.9
- GO=1.8.x MONGODB=x86_64-3.0.9
- GO=1.6 MONGODB=x86_64-3.2.3-nojournal
- GO=1.7 MONGODB=x86_64-3.2.3-nojournal
- GO=1.8.x MONGODB=x86_64-3.2.3-nojournal
- GO=1.6 MONGODB=x86_64-3.2.12
- GO=1.7 MONGODB=x86_64-3.2.12
- GO=1.8.x MONGODB=x86_64-3.2.12
- GO=1.6 MONGODB=x86_64-3.2.16
- GO=1.7 MONGODB=x86_64-3.2.16
- GO=1.8.x MONGODB=x86_64-3.2.16
- GO=1.7 MONGODB=x86_64-3.4.8
- GO=1.8.x MONGODB=x86_64-3.4.8

install:
- eval "$(gimme $GO)"
Expand All @@ -51,4 +44,7 @@ script:
- (cd txn && go test -check.v)
- make stopdb

git:
depth: 3

# vim:sw=4:ts=4:et
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ Further PR's (with tests) are welcome, but please maintain backwards compatibili
* Fixes timezone handling ([details](https://github.com/go-mgo/mgo/pull/464))
* Integration tests run against newest MongoDB 3.2 releases ([details](https://github.com/globalsign/mgo/pull/4), [more](https://github.com/globalsign/mgo/pull/24))
* Improved multi-document transaction performance ([details](https://github.com/globalsign/mgo/pull/10), [more](https://github.com/globalsign/mgo/pull/11), [more](https://github.com/globalsign/mgo/pull/16))
* Fixes cursor timeouts ([detials](https://jira.mongodb.org/browse/SERVER-24899))
* Fixes cursor timeouts ([details](https://jira.mongodb.org/browse/SERVER-24899))
* Support index hints and timeouts for count queries ([details](https://github.com/globalsign/mgo/pull/17))
* Don't panic when handling indexed `int64` fields ([detials](https://github.com/go-mgo/mgo/issues/475))
* Supports dropping all indexes on a collection ([details](https://github.com/globalsign/mgo/pull/25))
* Annotates log entries/profiler output with optional appName on 3.4+ ([details](https://github.com/globalsign/mgo/pull/28))
* Support for read-only [views](https://docs.mongodb.com/manual/core/views/) in 3.4+ ([details](https://github.com/globalsign/mgo/pull/33))

---

Expand All @@ -30,8 +34,10 @@ Further PR's (with tests) are welcome, but please maintain backwards compatibili
* @cezarsa
* @drichelson
* @eaglerayp
* @feliixx
* @fmpwizard
* @jameinel
* @mapete94
* @Reenjii
* @smoya
* @wgallagher
17 changes: 15 additions & 2 deletions cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import (
"errors"
"fmt"
"net"
"runtime"
"strconv"
"strings"
"sync"
Expand Down Expand Up @@ -61,16 +62,18 @@ type mongoCluster struct {
cachedIndex map[string]bool
sync chan bool
dial dialer
appName string
}

func newCluster(userSeeds []string, direct, failFast bool, dial dialer, setName string) *mongoCluster {
func newCluster(userSeeds []string, direct, failFast bool, dial dialer, setName string, appName string) *mongoCluster {
cluster := &mongoCluster{
userSeeds: userSeeds,
references: 1,
direct: direct,
failFast: failFast,
dial: dial,
setName: setName,
appName: appName,
}
cluster.serverSynced.L = cluster.RWMutex.RLocker()
cluster.sync = make(chan bool, 1)
Expand Down Expand Up @@ -144,7 +147,17 @@ func (cluster *mongoCluster) isMaster(socket *mongoSocket, result *isMasterResul
// Monotonic let's it talk to a slave and still hold the socket.
session := newSession(Monotonic, cluster, 10*time.Second)
session.setSocket(socket)
err := session.Run("ismaster", result)

// provide some meta infos on the client,
// see https://github.com/mongodb/specifications/blob/master/source/mongodb-handshake/handshake.rst#connection-handshake
// for details
metaInfo := bson.M{"driver": bson.M{"name": "mgo", "version": "globalsign"},
"os": bson.M{"type": runtime.GOOS, "architecture": runtime.GOARCH}}

if cluster.appName != "" {
metaInfo["application"] = bson.M{"name": cluster.appName}
}
err := session.Run(bson.D{{"isMaster", 1}, {"client", metaInfo}}, result)
session.Close()
return err
}
Expand Down
18 changes: 18 additions & 0 deletions cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1281,6 +1281,9 @@ func (s *S) countCommands(c *C, server, commandName string) (n int) {
}

func (s *S) TestMonotonicSlaveOkFlagWithMongos(c *C) {
if s.versionAtLeast(3, 4) {
c.Skip("fail on 3.4+ ? ")
}
session, err := mgo.Dial("localhost:40021")
c.Assert(err, IsNil)
defer session.Close()
Expand Down Expand Up @@ -1369,6 +1372,12 @@ func (s *S) TestMonotonicSlaveOkFlagWithMongos(c *C) {
}

func (s *S) TestSecondaryModeWithMongos(c *C) {
if *fast {
c.Skip("-fast")
}
if s.versionAtLeast(3, 4) {
c.Skip("fail on 3.4+ ?")
}
session, err := mgo.Dial("localhost:40021")
c.Assert(err, IsNil)
defer session.Close()
Expand Down Expand Up @@ -1870,6 +1879,9 @@ func (s *S) TestNearestSecondary(c *C) {
}

func (s *S) TestNearestServer(c *C) {
if s.versionAtLeast(3, 4) {
c.Skip("fail on 3.4+")
}
defer mgo.HackPingDelay(300 * time.Millisecond)()

rs1a := "127.0.0.1:40011"
Expand Down Expand Up @@ -1981,6 +1993,9 @@ func (s *S) TestSelectServersWithMongos(c *C) {
if !s.versionAtLeast(2, 2) {
c.Skip("read preferences introduced in 2.2")
}
if s.versionAtLeast(3, 4) {
c.Skip("fail on 3.4+")
}

session, err := mgo.Dial("localhost:40021")
c.Assert(err, IsNil)
Expand Down Expand Up @@ -2067,6 +2082,9 @@ func (s *S) TestDoNotFallbackToMonotonic(c *C) {
if !s.versionAtLeast(3, 0) {
c.Skip("command-counting logic depends on 3.0+")
}
if s.versionAtLeast(3, 4) {
c.Skip("failing on 3.4+")
}

session, err := mgo.Dial("localhost:40012")
c.Assert(err, IsNil)
Expand Down
42 changes: 37 additions & 5 deletions harness/daemons/.env
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,48 @@ COMMONSOPTS="
--bind_ip=127.0.0.1
"

CFG1OPTS=""
CFG2OPTS=""
CFG3OPTS=""

MONGOS1OPTS="--configdb 127.0.0.1:40101"
MONGOS2OPTS="--configdb 127.0.0.1:40102"
MONGOS3OPTS="--configdb 127.0.0.1:40103"



if versionAtLeast 3 2; then
# 3.2 doesn't like --nojournal on config servers.

# 3.2 doesn't like --nojournal on config servers.
COMMONCOPTS="$(echo "$COMMONCOPTS" | sed '/--nojournal/d')"

# Go back to MMAPv1 so it's not super sluggish. :-(
COMMONDOPTSNOIP="--storageEngine=mmapv1 $COMMONDOPTSNOIP"
COMMONDOPTS="--storageEngine=mmapv1 $COMMONDOPTS"
COMMONCOPTS="--storageEngine=mmapv1 $COMMONCOPTS"

if versionAtLeast 3 4; then
# http interface is disabled by default, this option does not exist anymore
COMMONDOPTSNOIP="$(echo "$COMMONDOPTSNOIP" | sed '/--nohttpinterface/d')"
COMMONDOPTS="$(echo "$COMMONDOPTS" | sed '/--nohttpinterface/d')"
COMMONCOPTS="$(echo "$COMMONCOPTS" | sed '/--nohttpinterface/d')"


# config server need to be started as replica set
CFG1OPTS="--replSet conf1"
CFG2OPTS="--replSet conf2"
CFG3OPTS="--replSet conf3"

MONGOS1OPTS="--configdb conf1/127.0.0.1:40101"
MONGOS2OPTS="--configdb conf2/127.0.0.1:40102"
MONGOS3OPTS="--configdb conf3/127.0.0.1:40103"
else

# Go back to MMAPv1 so it's not super sluggish. :-(
COMMONDOPTSNOIP="--storageEngine=mmapv1 $COMMONDOPTSNOIP"
COMMONDOPTS="--storageEngine=mmapv1 $COMMONDOPTS"
COMMONCOPTS="--storageEngine=mmapv1 $COMMONCOPTS"
fi
fi



if [ "$TRAVIS" = true ]; then
set -x
fi
3 changes: 2 additions & 1 deletion harness/daemons/cfg1/run
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@

exec mongod $COMMONCOPTS \
--port 40101 \
--configsvr
--configsvr \
$CFG1OPTS

3 changes: 2 additions & 1 deletion harness/daemons/cfg2/run
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@

exec mongod $COMMONCOPTS \
--port 40102 \
--configsvr
--configsvr \
$CFG2OPTS

1 change: 1 addition & 0 deletions harness/daemons/cfg3/run
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
exec mongod $COMMONCOPTS \
--port 40103 \
--configsvr \
$CFG3OPTS \
--auth \
--keyFile=../../certs/keyfile
2 changes: 1 addition & 1 deletion harness/daemons/s1/run
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

exec mongos $COMMONSOPTS \
--port 40201 \
--configdb 127.0.0.1:40101
$MONGOS1OPTS
2 changes: 1 addition & 1 deletion harness/daemons/s2/run
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

exec mongos $COMMONSOPTS \
--port 40202 \
--configdb 127.0.0.1:40102
$MONGOS2OPTS
2 changes: 1 addition & 1 deletion harness/daemons/s3/run
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

exec mongos $COMMONSOPTS \
--port 40203 \
--configdb 127.0.0.1:40103 \
$MONGOS3OPTS \
--keyFile=../../certs/keyfile
37 changes: 30 additions & 7 deletions harness/mongojs/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ for (var i = 0; i != 60; i++) {
rs1a = new Mongo("127.0.0.1:40011").getDB("admin")
rs2a = new Mongo("127.0.0.1:40021").getDB("admin")
rs3a = new Mongo("127.0.0.1:40031").getDB("admin")
cfg1 = new Mongo("127.0.0.1:40101").getDB("admin")
cfg2 = new Mongo("127.0.0.1:40102").getDB("admin")
cfg3 = new Mongo("127.0.0.1:40103").getDB("admin")
break
} catch(err) {
print("Can't connect yet...")
Expand All @@ -36,20 +39,40 @@ function hasSSL() {
return Boolean(db1.serverBuildInfo().OpenSSLVersion)
}

function versionAtLeast() {
var version = db1.version().split(".")
for (var i = 0; i < arguments.length; i++) {
if (i == arguments.length) {
return false
}
if (arguments[i] != version[i]) {
return version[i] >= arguments[i]
}
}
return true
}

rs1a.runCommand({replSetInitiate: rs1cfg})
rs2a.runCommand({replSetInitiate: rs2cfg})
rs3a.runCommand({replSetInitiate: rs3cfg})

if (versionAtLeast(3,4)) {
print("configuring config server for mongodb 3.4")
cfg1.runCommand({replSetInitiate: {_id:"conf1", members: [{"_id":1, "host":"localhost:40101"}]}})
cfg2.runCommand({replSetInitiate: {_id:"conf2", members: [{"_id":1, "host":"localhost:40102"}]}})
cfg3.runCommand({replSetInitiate: {_id:"conf3", members: [{"_id":1, "host":"localhost:40103"}]}})
}

function configShards() {
cfg1 = new Mongo("127.0.0.1:40201").getDB("admin")
cfg1.runCommand({addshard: "127.0.0.1:40001"})
cfg1.runCommand({addshard: "rs1/127.0.0.1:40011"})
s1 = new Mongo("127.0.0.1:40201").getDB("admin")
s1.runCommand({addshard: "127.0.0.1:40001"})
s1.runCommand({addshard: "rs1/127.0.0.1:40011"})

cfg2 = new Mongo("127.0.0.1:40202").getDB("admin")
cfg2.runCommand({addshard: "rs2/127.0.0.1:40021"})
s2 = new Mongo("127.0.0.1:40202").getDB("admin")
s2.runCommand({addshard: "rs2/127.0.0.1:40021"})

cfg3 = new Mongo("127.0.0.1:40203").getDB("admin")
cfg3.runCommand({addshard: "rs3/127.0.0.1:40031"})
s3 = new Mongo("127.0.0.1:40203").getDB("admin")
s3.runCommand({addshard: "rs3/127.0.0.1:40031"})
}

function configAuth() {
Expand Down
Loading

0 comments on commit 3dbb487

Please sign in to comment.