Beispiel #1
0
	def do_POST(self):
		length = int(self.headers['content-length'])
		data = self.rfile.read(length)
		try:
			json_data = json.loads(data)
			if len(json_data["results"]) < 1:
				self.send_response(200)
				self.end_headers()
				return
			for position, index_data in enumerate(json_data["results"]):
				index_data = json_data["results"][0]
				index_data["_hash"] = md5.new("%i_%s" % (position, json_data["pageUrl"])).hexdigest()
				index_data["_url"] = json_data["pageUrl"]
				index_data["_idx"] = position
				http.execute("POST", "%s/%s/%s" % (esutils.get_es_endpoint(), es_config["index"], es_config["object"]), index_data, es_config["auth"]["credentials"]["username"], es_config["auth"]["credentials"]["password"])
			self.send_response(200);
			self.end_headers()
		except Exception as e:
			print "Unable to process: %s; %s" % (data, e)
			self.send_response(500)
			self.end_headers()
#!/usr/bin/python

import json
import quickhttp
import esutils

http = quickhttp.quickhttp()

es_config = esutils.get_config()

with open("index_mapping.json", "r") as mapping_file:
	mapping_data = json.loads(mapping_file.read())
	mapping_request = { "mappings": { } }
	mapping_request["mappings"][es_config["object"]] = mapping_data
	http.execute("PUT", "%s/%s" % (esutils.get_es_endpoint(), es_config["index"]), mapping_request, es_config["auth"]["credentials"]["username"], es_config["auth"]["credentials"]["password"])
#!/usr/bin/python

import json
import quickhttp
import esutils

http = quickhttp.quickhttp()

es_config = esutils.get_config()

http.execute("DELETE", "%s/%s" % (esutils.get_es_endpoint(), es_config["index"]), False, es_config["auth"]["credentials"]["username"], es_config["auth"]["credentials"]["password"])