我正在开发一个系统,我需要在Cassandra数据库中存储Avro Schemas.所以在Cassandra,我们将存储这样的东西SchemaId AvroSchema1 some schema2 another schema现在假设...
我正在开发一个系统,我需要在Cassandra数据库中存储Avro Schemas.所以在Cassandra,我们将存储这样的东西
SchemaId AvroSchema
1 some schema
2 another schema
现在假设我在Cassandra的上表中插入另一行,现在表格就像这样 –
SchemaId AvroSchema
1 some schema
2 another schema
3 another new schema
只要我在上表中插入一个新行 – 我需要告诉我的Java程序去拉新的模式ID和相应的模式.
解决这类问题的正确方法是什么?
我知道,一种方法是每隔几分钟进行一次轮询,让我们说每5分钟我们就会从上表中提取数据,但这不是每5分钟解决这个问题的正确方法,我正在拉动是否有任何新的架构..
但除此之外还有其他解决方案吗?
我们可以使用Apache Zookeeper吗?或者Zookeeper不适合这个问题?
或任何其他解决方案?
我正在运行Apache Cassandra 1.2.9
解决方法:
一些解决方案
>使用数据库触发器:Cassandra 2.0有一些触发器支持,但看起来它不是最终的,并且根据本文可能会在2.1中稍微改变:http://www.datastax.com/dev/blog/whats-new-in-cassandra-2-0-prototype-triggers-support.触发器是一种常见的解决方案.
>你提出了民意调查,但这并不总是一个糟糕的选择.特别是如果你有一些东西标记该行还没有被拉动,那么你可以从Cassandra中拉出新的行.如果查询费用不高,那么每5分钟拉一次对于Cassandra或任何数据库来说都不是明智之举.如果在很少的基础上插入新行,则此选项可能不太好.
Zookeeper不是一个完美的解决方案,请看这个引用:
Because watches are one time triggers and there is latency between
getting the event and sending a new request to get a watch you cannot
reliably see every change that happens to a node in ZooKeeper. Be
prepared to handle the case where the znode changes multiple times
between getting the event and setting the watch again. (You may not
care, but at least realize it may happen.)
报价来自:http://zookeeper.apache.org/doc/r3.4.2/zookeeperProgrammers.html#sc_WatchRememberThese
本文标题为:java – 每当有任何新行或任何新更新时从Cassandra数据库中拉出来?
基础教程推荐
- @Async导致controller 404及失效原因解决分析 2023-03-15
- Java实现树形List与扁平List互转的示例代码 2023-07-15
- 在spring中实例化bean无效的问题 2022-11-01
- SpringCloud微服务开发基于RocketMQ实现分布式事务管理详解 2023-05-19
- java知识点7——面向过程和面向对象、面向对象的内存分析、构造方法 2023-09-01
- 理解Java中的retainAll方法 2023-10-08
- springboot之Jpa通用接口及公共方法使用示例 2022-12-11
- 一文搞懂Java创建线程的五种方法 2023-01-03
- MyBatis-Plus插件机制及通用Service新功能 2023-02-28
- 拦截Druid数据源自动注入帐密解密实现详解 2023-07-01