docs: align comments with tdengine history path

This commit is contained in:
lingniu
2026-07-01 04:06:41 +08:00
parent e97116202b
commit b36f993059
10 changed files with 13 additions and 13 deletions

View File

@@ -52,7 +52,7 @@ public final class DisruptorEventBus implements AutoCloseable {
EventHandler<VehicleEventSlot>[] handlers = this.sinks.stream()
.map(this::toHandler)
.toArray(EventHandler[]::new);
// 每个 sink 一个独立 handler事件按扇出模式同时写 Kafka、event-file-store 等目标。
// 每个 sink 一个独立 handler事件按扇出模式同时写 Kafka、archive、历史索引等目标。
disruptor.handleEventsWith(handlers);
disruptor.start();
log.info("DisruptorEventBus started ringBuffer={} wait={} sinks={}",

View File

@@ -24,7 +24,7 @@ import java.util.List;
*
* <p>生产链路顺序:入口收到 {@code RawFrame} → {@link InterceptorChain} 做准入 →
* {@link Dispatcher} 定位协议 Handler → Handler 产出 {@code VehicleEvent} →
* {@link DisruptorEventBus} 扇出到 Archive、DuckDB、Kafka 等 {@code EventSink}。
* {@link DisruptorEventBus} 扇出到 Archive、Kafka、历史索引等 {@code EventSink}。
*/
@AutoConfiguration
@EnableConfigurationProperties(IngestCoreProperties.class)

View File

@@ -18,7 +18,7 @@ import java.util.Map;
* 优先使用已解析 VINVIN 未解析时使用 phone/deviceId/terminalId/plate避免 JT808 多终端在
* {@code vin=unknown} 时同流水号互相去重。如果上游已经在 {@link RawFrame#sourceMeta()} 里带了
* {@code seq},优先用真实流水号;否则退化为 raw bytes fingerprint避免设备重连或 TCP 重发导致
* 同一帧重复进入 DuckDB/Archive。
* 同一帧重复进入 Archive/Kafka/历史索引
*
* <p>当前缓存是进程内的只能保证单实例去重。32960 若做多副本水平扩容,需要把这个位置替换成
* Redis/集中式幂等键,否则不同实例仍可能各自接收一次相同原始包。