以下のスクリプトを開始すると、スタックするエラーが発生しました
Something bad heppened while waiting for index created
Index `createdAt` was not found on table `olive.todos`
r.table("todos").indexWait("createdAt")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
しかし、スクリプトを再度開始しても問題ありません。
これは RethinkDB の問題ですか、それとも私の問題ですか? そして解決策を教えてください。
const createIndex = (conn, tableName, indexName) =>
r.table(tableName).indexList().contains(indexName)
.do(containsIndex =>
r.branch(
containsIndex,
{ created: 0 },
r.table(tableName).indexCreate(indexName)
)
)
...
const waitForIndex = (conn, tableName, indexName) =>
r.table(tableName).indexWait(indexName)
...
export const setup = startApp => {
r.connect(config.rethinkdb)
...
.then(conn => {
Promise.all([
createIndex(conn, 'todos', 'createdAt'),
createIndex(conn, 'days', 'date'),
]);
return conn;
})
.then(conn =>
Promise.all([
waitForIndex(conn, 'todos', 'createdAt'),
waitForIndex(conn, 'days', 'date'),
])
)
...
};