stone1100

Results 39 comments of stone1100

- sharding 是在 broker 写 wal 的时候已经做好了,每个 shard 的一个 wal, 然后每个 shard 的 wal 会复制到对应 storage node 的 memory database 中,time series store 是 memory database 存储 series 部分; -...

> > > 最近领导让我调研这个服务 , 然而我还没接触过go的项目 > > > > > > 还要一段时间才能完成开发,go版很多细节都经过重新设计,和现在公司内部用的Java版存在差异,所以开发工作量比较大。完成后会放出文档,可以直接通过二进制包使用 > > 您好,本人对Go不太了解,有个疑惑:为何用Go重新实现一遍,不直接开源Java版?Java版除了商业隐私上的考量,是否在性能上,或者功能上有不足的吗? - Java版本的部分组件耦合在别的组件里面 - Index放在RocksDB里面,也存在一定的问题 - 自研的LSM结构,其实在时序场景会有一定的问题 - 开源版本希望能成为一个体系,包括新增自研Index及MemoryDB+Persistent DB - 能将计算和存储分离 - 希望通过Goroutine有加大查询的并发 基于原来的架构调整还是很大的,所以选择了Rebuild或者不是Refactor

安装使用手册请参考: https://lindb.io/zh/guide/get-started.html

1. Are there any other logs when LinDB Service is restarted?(journalctl) 2. What is the log before startup in standalone.log?

panic when writing wal. I'll try to reproduce it.

@NetForces If write some data before current time?

I know the reason. 1. Broker does not filter data that out of acceptable time range(config when create database) when writing, and the connection(broker->storage) is active. 2. Storage caches the...

> Oh, so I could increase this when creating the database as a possible work-around ? > > > > ![image](https://github.com/lindb/lindb/assets/984831/a8e563de-0d59-497e-99d5-3c55e3e8f6e9) > > Yes