Quantcast
Channel: Spring Community Forums - Grails
Viewing all articles
Browse latest Browse all 40

Multiple MongoDB hosts with mongodb - Plugin??

$
0
0
Hey!

I was wondering if it is possible to access multiple mongodb hosts with the mongodb-plugin for grails (http://grails.org/plugin/mongodb)
This works fine, but only for ONE host:
Code:

grails{
        mongo {
                        host = "loclahost"
                        port = 27017
                        username = ""
                        password = ""
                        databaseName = "product"
                }
}

Code:

        static mapWith = "mongo"
        static mapping = {
                collection "products"
                database "product"
        }

I would like to map every domain class to a MongoDB host.
So s.th. like this (doesn't work):

Code:

grails{
        mongo {
            dataSource{
                            host = "loclahost"
                            port = 27017
                            username = ""
                            password = ""
                            databaseName = "product"
                            }
            dataSource_test{
                            host = "anyOtherHost"
                            port = 27017
                            username = ""
                            password = ""
                            databaseName = "product"
                            }
                }
}

Domainclass 1:
Code:

        static mapWith = "mongo"
        static mapping = {
                collection "products"
                database "product"
                datasource "test"
        }

and Domainclass 2:
Code:

        static mapWith = "mongo"
        static mapping = {
                collection "products"
                database "product"
                datasource "DEFAULT"
        }

Any help is appreciated!

What would be the best way to implement MongoDB access to more then one instance with grails if the plugin doesn't support multiple hosts? Manual connection pooling?

Thanks in advance!

Kai

Viewing all articles
Browse latest Browse all 40

Trending Articles