以下時啓動腳本中,我得到了被困在`waitForIndex`不能正常工作
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'),
])
)
...
};
謝謝!現在,我明白了什麼是問題。爲了確保在調用'Promise.all'後調用'return conn',需要使用'then'鏈接。 – nishitani
你能接受答案:)。謝謝 – kureikain