博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
prisma graphql 集成timescaledb
阅读量:6690 次
发布时间:2019-06-25

本文共 796 字,大约阅读时间需要 2 分钟。

prisma 官方文档说明了因为支持pg 所以相关的timescaledb、cockroachdb 应该也是支持的

但是测试之后timescaledb 支持cockroachdb有问题(事务处理模型支持有问题)

初始化项目

prisma init app

修改docker-compose file

version: '3'services:  prisma:    image: prismagraphql/prisma:1.13    ports:    - "4466:4466"    environment:      PRISMA_CONFIG: |        port: 4466        # uncomment the next line and provide the env var PRISMA_MANAGEMENT_API_SECRET=my-secret to activate cluster security        # managementApiSecret: my-secret        databases:          default:            connector: postgres            host: postgres            port: 5432            user: postgres            migrations: true  postgres:    image: timescale/timescaledb-postgis    ports:    - "5432:5432"

启动&&deploy

  • 启动docker
cd appdocker-compose up -d
  • deploy schema
prisma deploy

运行效果

参考资料

 
 
 
 

转载地址:http://yakoo.baihongyu.com/

你可能感兴趣的文章
hadoop命令执行hbase应用jar包时的环境变量加载问题
查看>>
AndroidTV 网络机顶盒 Wi-Fi设置
查看>>
CentOS 6.8 编译安装MySQL5.5.32 (二 多实例)
查看>>
bat等大公司常考java多线程面试题
查看>>
为centos 5.5 x86设置双网卡bonding
查看>>
在 Xcode 里编译运行 Python 代码
查看>>
什么是License
查看>>
英文单词记忆( 积累中 )
查看>>
Android 无闪烁启动画面程序源码
查看>>
基于uml的面向对象的概要设计
查看>>
用 PHP 读取文件的正确方法
查看>>
Authentication and Integration 第三篇:Oracle LDAP介绍
查看>>
我的友情链接
查看>>
路由器 交换机 摩登Modem的区别!
查看>>
Nagios+ PNP4nagios + rrdtool 监控平台建立
查看>>
linux 磁盘的分区
查看>>
windows手动启动mysql mysql.bat
查看>>
TCC型分布式事务原理和实现之:原理介绍
查看>>
配置outlook收发domino邮件
查看>>
用普通计算机假设基于liunx系统的NAS部署FineReport决策系统
查看>>