Home

Nginx负载均衡使用

Here’s the table of contents: 安装 启动 重新载入配置文件【热加载】 重启nginx 停止nginx 配置多个IP映射到一个域名 配置支持TCP协议转发【bolt】 动态加载stream模块 安装 下载压缩包上传服务器解压 安装依赖模块 sudo yum -y install openssl openssl-devel sudo yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel 编译 ./configure sudo make 安装 ...

Read more

Neo4j单机节点数据同步到ONgDB集群

Here’s the table of contents: Neo4j单机到ONgDB集群的数据同步恢复 一、从社区版NEO4J生成DUMP文件 二、将上一步生成的DUMP文件发送到ongdb-1、ongdb-2、ongdb-3节点 三、停止ongdb-1、ongdb-2、ongdb-3节点图库并解除绑定 四、清除ongdb-1、ongdb-2、ongdb-3集群状态文件 五、ongdb-1、ongdb-2、ongdb-3离线生成新的DB文件 六、ongdb-1、ongdb-2、ongdb-3修改配置文件并启动 Neo4j单机到ONgDB集群的数据同步恢复 备选方案:为了应对现有图...

Read more

HTTP 80 failed respond

Here’s the table of contents: HTTP-80 failed respond 报错现象 查看HTTP访问设置 修改HTTP访问设置【弃用】 修改缓冲区大小 备注 HTTP-80 failed respond 报错现象 HTTP访问时出现: 2020-10-21 02:04:55.875 WARN 6763 --- [nio-7424-exec-3] n.g.e.SimpleDataFetcherExceptionHandler : Exception while fetching data (/textDeepAnalyzer) : org.apache.ht...

Read more

解决Maven-sun.security-PKIX path building failed

Here’s the table of contents: 阿里云maven仓库配置 完美解决Maven:sun.security.validator.ValidatorException: PKIX path building failed maven安装JAR到本地仓库 阿里云maven仓库配置 <mirror> <id>nexus-aliyun</id> <mirrorOf>central</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexu...

Read more

MySQL字符串截取与常用查询

Here’s the table of contents: 被截取字符串 截取结果 截取SQL 备注 生成数值 从一个表拿数据更新到另外一个表 分组排重统计 查询字段并合并成一个字段返回【一行多字段聚合】 查询字段并合并成一个字段返回【多行聚合】 指定索引查询 获取24H之前的系统时间 表内关联 查询更新 查询SQL进程并KILL 更新默认值 增加自动更新时间字段 增加字段BTREE索引 指定FROM和TO字段分组导出JSON-DETAIL数据 条件分支查询 数据替换 多字段分组统计 覆盖更新 忽略重复 查询数据写入新表 从分组结果中继续分组统计 分组排序获取TOPN并只返回某研报...

Read more

从MySQL加载数据到ONgDB

Here’s the table of contents: 下载MySQL-DRIVE加载到插件列表 加载注册驱动 读取数据 使用批次/多事务提交方式读取远程JDBC数据源并更新图库 下载MySQL-DRIVE加载到插件列表 加载注册驱动 CALL apoc.load.driver("com.mysql.jdbc.Driver") 读取数据 CALL apoc.load.jdbc('jdbc:mysql://localhost:3306/database?user=user&password=password&useUnicode=true&characterEncoding=utf8&serverTimezone=UTC',...

Read more

常用GraphiQL操作

Here’s the table of contents: GraphiQL 1 2 GraphiQL 1 { horgByName(name: "li ning") { name hcode @skip(if: true) alias @include(if: false) } } 2 type Person { name: ID! born: Int actedIn: [Movie] @relation(name:"ACTED_IN") } type Movie { title: ID! released: Int tagline: String } type Q...

Read more

大批量子图数据删除

Here’s the table of contents: CALL apoc.periodic.iterate刪除数据 【占满整个堆内存,造成垃圾回收暂停。】 CALL apoc.periodic.commit刪除数据[remove和delete标签和属性的时候使用下列过程][图数据库分配到的内存太小时使用这种方式删除数据] CALL apoc.periodic.iterate刪除数据 【占满整个堆内存,造成垃圾回收暂停。】 1、CALL apoc.periodic.iterate('MATCH (f:HORGShareHold) WHERE f.hcode=~\'-HORG.*[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4...

Read more