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:
I would like to map every domain class to a MongoDB host.
So s.th. like this (doesn't work):
Domainclass 1:
and Domainclass 2:
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
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"
}
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"
}
}
}
Code:
static mapWith = "mongo"
static mapping = {
collection "products"
database "product"
datasource "test"
}
Code:
static mapWith = "mongo"
static mapping = {
collection "products"
database "product"
datasource "DEFAULT"
}
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