了解了一下python对es 7.5的操作,记录下,不难: #!/usr/bin/env python # -*- coding: UTF-8 -*- from settings import Config mapping = { 'properties': { 'topic': { 'type': 'text', 'analyzer': 'ik_max_word', 'search_analyzer': 'ik_max_word' }, 'content': { 'type': 'text',…