示例#1
0
def update_es_data_doc_by_id(id):
    sync_elasticsearch.apply_async(args=[ElasticsearchItem.datadocs.value, id])
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
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])