dst3605528 2019-01-21 16:40 采纳率: 0%
浏览 334

如何让数据库/ sql并行查询多个模式?

I have mysql database with single host and a few hundred schemas, where each schemas have identical tables (and different amount of rows). What I want to do here is to query some (or all) schemas with same list of queries, and save these result for later use.
I'm using golang's database/sql for querying database, and I want to do that with single connection pool, and by querying each schemas in parallel (hoping it's faster that way).
I'm imagining something like this:

func QuerySchemas(queryList []string, schemaList []string) {
  // Create a connection pool
  db, err := sql.Open("mysql", "user:password@tcp(db_host)/")
  if err != nil {
    log.Fatal(err)
  }

  for _, schema := range schemaList {
    // Query each schema in parallel, probably with goroutine
    go func(targetSchema string) {
      // ...
      // Let database/sql use targetSchema for this goroutine
      // ...
      for _, query := range queryList {
        rows, err := db.Query(query)
        // ...
        // Save results and do other things
        // ...
      } 
    }(schema) 
  }
}

But I can't find how to let database/sql query different schemas in parallel. So far I have thought of using MySQL's USE sentences, but that would not work as it changes schema for all goroutines.
Is there any possible solutions?

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 孟德尔随机化结果不一致
    • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
    • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
    • ¥15 谁有desed数据集呀
    • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
    • ¥15 关于#hadoop#的问题
    • ¥15 (标签-Python|关键词-socket)
    • ¥15 keil里为什么main.c定义的函数在it.c调用不了
    • ¥50 切换TabTip键盘的输入法
    • ¥15 可否在不同线程中调用封装数据库操作的类