Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在写入 memstore 之前的 HBase 中,数据将首先写入 WAL,但是当我检查我的系统时,WAL 文件在每次Put操作后没有立即更新,更新需要很长时间。我需要设置什么参数吗? (WAL 已启用)
你知道更新 WAL 文件需要多长时间吗?你确定时间是在写还是在你检查 WAL 时,它已经移到旧日志中了。如果启用了 WAL,则所有条目必须首先到达 WAL,然后按照集群配置写入特定区域。
我知道 WAL 文件移动到 .oldlogs 的速度相当快,即通过 hbase.master.logcleaner.ttl 设置在 hbase-site.xml 中定义的 60 秒。
在独立模式下写入 WAL 需要很多时间,而在伪分布式模式下它工作正常