如何将RethinkDB的min / max函数与复合索引一起使用

时间:2017-03-08 16:09:53

标签: python rethinkdb rethinkdb-python

假设我有一个带有typetimestamp字段的RethinkDB表。 type可以是"good""bad"。我想编写一个RethinkDB查询,该查询在使用compound index timestamp"good"的同时获取最新type文档的timestamp。< / p>

以下是一个带有一个解决方案的示例脚本:

import faker
import rethinkdb as r
import dateutil.parser
import dateutil.tz

fake = faker.Faker()
fake.seed(0)            # Seed the Faker() for reproducible results

conn = r.connect('localhost', 28016)    # The RethinkDB server needs to have been launched with 'rethinkdb --port-offset 1' at the command line

# Create and clear a table
table_name = 'foo'  # Arbitrary table name
if table_name not in r.table_list().run(conn):
    r.table_create(table_name).run(conn)
r.table(table_name).delete().run(conn)      # Start on a clean slate

# Create fake data and insert it into the table
N = 5       # Half the number of fake documents
good_documents = [{'type':'good', 'timestamp': dateutil.parser.parse(fake.time()).replace(tzinfo=dateutil.tz.tzutc())} for _ in range(N)]
bad_documents = [{'type':'bad', 'timestamp': dateutil.parser.parse(fake.time()).replace(tzinfo=dateutil.tz.tzutc())} for _ in range(N)]
documents = good_documents + bad_documents
r.table(table_name).insert(documents).run(conn)

# Create compound index with 'type' and 'timestamp' fields
if 'type_timestamp' not in r.table(table_name).index_list().run(conn):
    r.table(table_name).index_create("type_timestamp", [r.row["type"], r.row["timestamp"]]).run(conn)
    r.table(table_name).index_wait("type_timestamp").run(conn)

# Get the latest 'good' timestamp in Python
good_documents = [doc for doc in documents if doc['type'] == "good"]
latest_good_timestamp_Python = max(good_documents, key=lambda doc: doc['timestamp'])['timestamp']

# Get the latest 'good' timestamp in RethinkDB
cursor = r.table(table_name).between(["good", r.minval], ["good", r.maxval], index="type_timestamp").order_by(index=r.desc("type_timestamp")).limit(1).run(conn)
document = next(cursor)
latest_good_timestamp_RethinkDB = document['timestamp']

# Assert that the Python and RethinkDB 'queries' return the same thing
assert latest_good_timestamp_Python == latest_good_timestamp_RethinkDB

在运行此脚本之前,我使用命令

在端口28016启动了RethinkDB
rethinkdb --port-offset 1

我还使用faker包来生成虚假数据。

我使用的查询结合了betweenorder_bylimit,看起来并不特别优雅或简洁,我想知道是否可以使用{{ 1}}为此目的。但是,我没有立即从文档(https://www.rethinkdb.com/api/python/max/)中了解如何执行此操作。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

理想情况下,您可以替换此部分查询:

.order_by(index=r.desc("type_timestamp")).limit(1)

使用:

.max(index="type_timestamp")

但目前无法实现。见https://github.com/rethinkdb/rethinkdb/issues/5141

相关问题