コード例 #1
0
ファイル: datadoc.py プロジェクト: razorpay/querybook
def update_es_data_doc_by_id(id):
    sync_elasticsearch.apply_async(args=[ElasticsearchItem.datadocs.value, id])
コード例 #2
0
def update_es_tables_by_id(id):
    sync_elasticsearch.apply_async(args=[ElasticsearchItem.tables.value, id])
コード例 #3
0
def update_es_query_cell_by_id(id):
    sync_elasticsearch.apply_async(
        args=[ElasticsearchItem.query_cells.value, id])
コード例 #4
0
ファイル: user.py プロジェクト: pinterest/querybook
def update_es_users_by_id(uid):
    sync_elasticsearch.apply_async(args=[ElasticsearchItem.users.value, uid])
コード例 #5
0
ファイル: board.py プロジェクト: czgu/querybook
def update_es_boards_by_id(board_id: int):
    sync_elasticsearch.apply_async(args=[ElasticsearchItem.boards.value, board_id])
コード例 #6
0
def update_es_query_execution_by_id(id):
    sync_elasticsearch.apply_async(
        args=[ElasticsearchItem.query_executions.value, id])