摘要: 报错 2024-08-08 15:29:02.532 ERROR 39656 [ange-worker-#49] .c.d.d.p.GridDhtPartitionsExchangeFuture : Failed to reinitialize local partitions (rebalanci 阅读全文
posted @ 2024-08-08 15:32 life_start 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 其它内容参见 ignite系列之19-数据源扩展Postgresql public String loadCacheSelectRangeQuery(String fullTblName, Collection<String> keyCols) { String cols = mkString(ke 阅读全文
posted @ 2024-08-08 15:06 life_start 阅读(7) 评论(0) 推荐(0) 编辑
摘要: storeFactory.setDialect(dialect);storeFactory.setDataSourceFactory(new DefaultDataSourceFactory((Object)null));storeFactory.setCacheName(igniteTable.t 阅读全文
posted @ 2024-08-08 14:02 life_start 阅读(7) 评论(0) 推荐(0) 编辑
摘要: spring-core org.springframework.cglib.beans.BeanMap default <S extends V> S sourceToTarget(S sourceEntity, S targetEntity) { if (null != sourceEntity 阅读全文
posted @ 2024-08-08 13:56 life_start 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Ignite报堆外内存OOM,最直接原因是现在是纯堆外内存存储,没有持久化 数据量太大导致堆外内存不足,从而导致OOM,开发、测试环境排查可以先给比较大的内存,启动起来,通过如下两个sql查询真实数据量和占用内存大小来排查; 如果是长期方案: 1、建议合理评估数据量,针对堆外内存进行配置,针对数据量 阅读全文
posted @ 2024-08-08 13:52 life_start 阅读(7) 评论(0) 推荐(0) 编辑
摘要: java -cp {libs目录} sqlline.SqlLine --verbose=true -u jdbc:ignite:thin://127.0.0.1:10800 其中cp是包含ignite核心jar包和sqlline相关的包 阅读全文
posted @ 2024-08-08 13:51 life_start 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 看来一下连接池源码,应该时从连接池中获取链接时没有达到上述超时时间时没有可用的链接,可能时瞬间的请求上来了,当时你们那个20个链接用完了,一时可以把连接池大小配置大一些,另外可以把上述这个参数调整或者新增一下调整大一些,可以调整为120000 单位毫秒 错误日志截图: 连接池日志打印: 阅读全文
posted @ 2024-08-08 13:50 life_start 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 报错示例: [type=CRITICAL_ERROR,err=class o.a.i.i.mem.IgniteOutofMemoryException:Out of memory ta region [name=default,initsize=10.0 MiB,maxsize=5.0 GiB,pe 阅读全文
posted @ 2024-08-08 13:48 life_start 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 客户端模式访问 ignite 服务时,设置到 CacheConfiguration 中的类需要在 ignite 服务端可访问 解决办法:提前放到服务端 libs 目录或者使用 ignite 代码部署机制解决。 报错日志示例: class org.apache.ignite.IgniteExcepti 阅读全文
posted @ 2024-08-08 13:46 life_start 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Ignite loadCache接口 ignite loadCache接口默认全量从DB加载所有数据,如果在分布式集群上是所有节点同时触发加载,根据表的key计算分区Id,如果属于当前节点则存入内容 默认使用服务器核数线程并发加载,分批按照512条作为一个批次 此外loadCache允许指定加载的s 阅读全文
posted @ 2024-08-08 13:39 life_start 阅读(7) 评论(0) 推荐(0) 编辑