问题标签 [timeuuid]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
15074 浏览

cassandra - 在 Cassandra 术语中,TimeUUID 是什么?

在 Cassandra 术语中,它是什么TimeUUID以及何时使用?

0 投票
1 回答
380 浏览

cassandra - cassandra中的TimeUUID

当我们使用命令时

它给了我这个错误

找不到附加程序请正确初始化系统 log4j 系统。

0 投票
1 回答
1630 浏览

cassandra - Cassandra 按键排序 (TimeUUID)

get_range()调用列族时,我无法按键排序。

  • 键是 TimeUUID
  • 关键验证类是 org.apache.cassandra.db.marshal.TimeUUIDType
  • 分区器是“ByteOrderedPartitioner”

但是,当我调用 get_range() 时,结果不会以正确的顺序返回。关于我在这里可能做错的任何想法?

0 投票
1 回答
1153 浏览

cassandra - 更新 cassandra 中的 TimeUUID 列

我正在尝试在以下列系列中存储一些时间序列数据:

我以这种方式成功插入数据:

如您所见,使用 datetime 对象作为列名 pycassa 可以正确转换为 timeUUID 对象。

有时,应用程序需要更新一些数据。问题是当我尝试更新该列时,传递相同的 datetime 对象,pycassa 创建一个不同的 UUID 对象(时间部分是相同的),所以它不是更新列,而是创建另一个。

问题是,如何使用传递 datetime 对象的 pycassa 更新基于 TimeUUID 的列?或者,如果这不是正确的方法,推荐的方法是什么?

0 投票
3 回答
45376 浏览

cassandra - Cassandra UUID 与 TimeUUID 的优缺点

鉴于 TimeUUID 可以轻松地让您now()在 CQL 中使用,您是否有任何理由不继续使用 TimeUUID 而不是普通的旧 UUID?

0 投票
1 回答
1059 浏览

cassandra - 在phpcassa中将timeuuid转换为日期时间

我试图从 timeuuid 获取日期而不dateOf(id)在 cqlsh 中调用函数。那么,phpcassa 中是否有可以将 timeuuid 转换为 date 的函数?

0 投票
1 回答
1098 浏览

cassandra - Cassandra:将类型从 UUID 更改为 TIMEUUID

我正在尝试将列的类型从 UUID 更改为 TIMEUUID,但我无法这样做。

错误:

错误请求:无法将 uuid 类型的密钥更改为 timeuuid 类型:类型不兼容。

关于如何在不丢失列族数据的情况下实现这一目标的任何想法?

0 投票
5 回答
971 浏览

solr - Cassandra TimeUUID 字段的 Solr 映射

Cassandra TimeUUID字段到 Solr的最佳映射是什么。我使用的是 DSE 3.2.4 版本

0 投票
3 回答
19851 浏览

java - 如何在 Java/Scala 中生成 TimeUUID

有谁知道如何在 Java/Scala 中生成基于时间的 UUID?

这是列族:

我正在使用 Cassandra 1.2.4

感谢你的帮助!

0 投票
1 回答
952 浏览

cassandra - How do I insert a new timeuuid and retrieve the inserted value?

I'm inserting some data into a Cassandra table(/column family), and I need to generate a unique key. I've decided to use timeuuid for this, as it gives me nice sortability as well as uniqueness. I can use the now() function to generate the timeuuid, as in this CQL code:

The problem with this technique is that I have no idea what value I just inserted. I need to know this, as I'm going to need to use it later.

How can I retrieve this value at the time that I insert it (as I certainly can't guarantee that nobody else will insert one immediately after me)?