6

我正在使用datastax python-driver从表中检索时间戳。我想要做的是将先前检索到的时间戳存储在 var 中,并在下一个查询中使用它来检索大于前一个时间戳的时间戳。查询基本上如下所示:

cqlsh> SELECT insert_time, message FROM cf WHERE message_key='q1' AND insert_time>'2013-10-30 10:32:44+0530' ORDER BY insert_time ASC LIMIT 1;


 insert_time              | message
--------------------------+----------------------------------
 2013-10-30 10:32:45+0530 | 83500612412011e3ab6c1c3e84abd9db

如您所见,来自 CQL 的时间戳2013-10-30 10:32:45+0530. 但是当我通过 python-driver 检索它时,结果是不同的(我在不同的系统上执行 python 查询,而不是在任何 cass 节点上):

>>> from cassandra.cluster import Cluster
>>> c = Cluster( [10.60.60.2] )
>>> session = c.connect()
>>> q = "SELECT insert_time, message FROM cf WHERE message_key='q1' AND insert_time>'2013-10-30 10:32:44+0530' ORDER BY insert_time ASC LIMIT 1"
>>> rows = session.execute(q)
>>> print rows
[Row(insert_time=datetime.datetime(2013, 10, 30, 5, 2, 45, 4000), message=u'83500612412011e3ab6c1c3e84abd9db')]
>>> timestamp = rows[0][0]
>>> print t
2013-10-30 05:02:45.004000

如您所见,python-driver 的时间戳2013-10-30 05:02:45.004000,这与 CQL 不同。不仅时间不同,而且表现形式也发生了变化。这不能用于在后续查询中进行比较。

问题

  1. 在 python 中检索时间戳时我做错了什么?
  2. 有没有办法将纪元时间输出为 int 而不是 datetime 格式?
  3. 这与时钟同步或时区有关吗?
  4. 谁能帮我解决这个问题,以便可以重复使用 python 检索到的时间戳来与 cass 时间戳进行比较?

提前致谢。感谢你的帮助

设置

  • 运行 vms 的单主机;
  • cass 沙箱 - 作为单个 dc 集群运行的 3 个无头虚拟机;
  • 从主机执行的python代码;
  • 使用 ntp 与主机同步的虚拟机日期、时间
  • [cqlsh 4.0.0 | 卡桑德拉 2.0.0 | CQL 规范 3.1.0 | 节俭协议 19.37.0]
4

1 回答 1

5

看起来 cqlsh 正在显示您当地时区的时间戳(即 +0530)。python 驱动程序以 UTC 格式返回日期时间。值得一提的是,数据作为 unix 时间戳存储在 Cassandra 中,它没有时区的概念。

我的建议是,在将其显示给用户之前,您始终使用 UTC 作为日期时间。

于 2013-10-31T00:50:55.543 回答