我一直无法使用Sequelize在Feathers.js中找到记录的连接多个MySQL数据库的方式。有没有办法做到这一点?我的用例是能够通过同一操作将数据行插入到多个数据库中并从中获取数据,但是这些数据库不一定是相同的架构。
谢谢!
答案 0 :(得分:1)
我做了一些本地测试,这是可能的。您需要定义2个不同的sequelize客户。 如果您使用的是CLI生成器,并且基于sequelize设置了服务,则应该有一个连接字符串(我的示例是mysql db):
config / default.json中的数据库连接字符串
"mysql" : "mysql://user:password@localhost:3306/your_db"
a sequelize.js
为了创建第二个续集客户端
在config/default.json
"mysql2" : "mysql://user:password@localhost:3306/your_db_2"
创建sequelize.js的副本并将其命名为sequelize2.js
const Sequelize = require('sequelize');
module.exports = function (app) {
const connectionString = app.get('mysql2');
const sequelize2 = new Sequelize(connectionString, {
dialect: 'mysql',
logging: false,
operatorsAliases: false,
define: {
freezeTableName: true
}
});
const oldSetup = app.setup;
app.set('sequelizeClient2', sequelize2);
app.setup = function (...args) {
const result = oldSetup.apply(this, args);
// Set up data relationships
const models = sequelize2.models;
Object.keys(models).forEach(name => {
if ('associate' in models[name]) {
models[name].associate(models);
}
});
// Sync to the database
sequelize2.sync();
return result;
};
};
将新的sequelize配置添加到您的app.js
const sequelize2 = require('./sequelize2');
app.configure(sequelize2);
然后在模型中添加第二个数据库:
const Sequelize = require('sequelize');
const DataTypes = Sequelize.DataTypes;
module.exports = function (app) {
//load the second client you defined above
const sequelizeClient = app.get('sequelizeClient2');
//to check if connect to a different db
console.log ( sequelizeClient )
//your model
const tbl = sequelizeClient.define('your_table', {
text: {
type: DataTypes.STRING,
allowNull: false
}
}, {
hooks: {
beforeCount(options) {
options.raw = true;
}
}
});
// eslint-disable-next-line no-unused-vars
tbl.associate = function (models) {
// Define associations here
// See http://docs.sequelizejs.com/en/latest/docs/associations/
};
return tbl;
};
要工作,您需要2个不同的服务,每个服务都使用不同的数据库。 如果要执行单个操作,则可以在服务之一中创建一个before / after钩子,然后在该钩子内部调用第二个服务。 为了获得,您需要将第二项服务的结果添加到挂钩结果中