404错误-搭建好服务器之后,启动服务器

问题描述

搭建好服务器之后,启动服务器

搭建好服务器之后,启动服务器,出现:
DEBUG response status: 404 :/home/tclxa/.virtualenvs/zamboni/lib/python2.6/site-packages/pyelasticsearch/client.py:252

cilent.py文件如下:
# -*- coding: utf-8 -*-
from future import absolute_import

from datetime import datetime
from operator import itemgetter
from functools import wraps
from logging import getLogger
import re
from six import (iterkeys, binary_type, text_type, string_types, integer_types,
iteritems, PY3)
from six.moves import xrange

try:
# PY3
from urllib.parse import urlencode, quote_plus
except ImportError:
# PY2
from urllib import urlencode, quote_plus

import requests
import simplejson as json # for use_decimal
from simplejson import JSONDecodeError

from pyelasticsearch.downtime import DowntimePronePool
from pyelasticsearch.exceptions import (Timeout, ConnectionError,
ElasticHttpError,
InvalidJsonResponseError,
ElasticHttpNotFoundError,
IndexAlreadyExistsError)

def _add_es_kwarg_docs(params, method):
"""
Add stub documentation for any args in params that aren't already in
the docstring of method.

The stubs may not tell much about each arg, but they serve the important
purpose of letting the user know that they're safe to use--we won't be
paving over them in the future for something pyelasticsearch-specific.
"""
def docs_for_kwarg(p):
    return 'n        :arg %s: See the ES docs.' % p

doc = method.__doc__
if doc is not None:  # It's none under python -OO.
    # Handle the case where there are no :arg declarations to key off:
    if 'n        :arg' not in doc and params:
        first_param, params = params[0], params[1:]
        doc = doc.replace('n        (Insert es_kwargs here.)',
                          docs_for_kwarg(first_param))

    for p in params:
        if ('n        :arg %s: ' % p) not in doc:
            # Find the last documented arg so we can put our generated docs
            # after it. No need to explicitly compile this; the regex cache
            # should serve.
            insertion_point = re.search(
                r'        :arg (.*?)(?=n+        (?:$|[^: ]))',
                doc,
                re.MULTILINE | re.DOTALL).end()

            doc = ''.join([doc[:insertion_point],
                           docs_for_kwarg(p),
                           doc[insertion_point:]])
    method.__doc__ = doc

def es_kwargs(*args_to_convert):
"""
Mark which kwargs will become query string params in the eventual ES call.

Return a decorator that grabs the kwargs of the given names, plus any
beginning with "es_", subtracts them from the ordinary kwargs, and passes
them to the decorated function through the ``query_params`` kwarg. The
remaining kwargs and the args are passed through unscathed.

Also, if any of the given kwargs are undocumented in the decorated method's
docstring, add stub documentation for them.
"""
convertible_args = set(args_to_convert)

def decorator(func):
    # Add docs for any missing query params:
    _add_es_kwarg_docs(args_to_convert, func)

    @wraps(func)
    def decorate(*args, **kwargs):
        # Make kwargs the map of normal kwargs and query_params the map of
        # kwargs destined for query string params:
        query_params = {}
        for k in list(iterkeys(kwargs)):  # Make a copy; we mutate kwargs.
            if k.startswith('es_'):
                query_params[k[3:]] = kwargs.pop(k)
            elif k in convertible_args:
                query_params[k] = kwargs.pop(k)
        return func(*args, query_params=query_params, **kwargs)
    return decorate
return decorator

class ElasticSearch(object):
"""
An object which manages connections to elasticsearch and acts as a
go-between for API calls to it

This object is thread-safe. You can create one instance and share it
among all threads.
"""
def __init__(self, urls, timeout=60, max_retries=0, revival_delay=300):
    """
    :arg urls: A URL or iterable of URLs of ES nodes. These are full URLs
        with port numbers, like ``http://elasticsearch.example.com:9200``.
    :arg timeout: Number of seconds to wait for each request before raising
        Timeout
    :arg max_retries: How many other servers to try, in series, after a
        request times out or a connection fails
    :arg revival_delay: Number of seconds for which to avoid a server after
        it times out or is uncontactable
    """
    if isinstance(urls, string_types):
        urls = [urls]
    urls = [u.rstrip('/') for u in urls]
    self.servers = DowntimePronePool(urls, revival_delay)
    self.revival_delay = revival_delay
    self.timeout = timeout
    self.max_retries = max_retries
    self.logger = getLogger('pyelasticsearch')
    self.session = requests.session()
    self.json_encoder = JsonEncoder

def _concat(self, items):
    """
    Return a comma-delimited concatenation of the elements of ``items``,
    with any occurrences of "_all" omitted.

    If ``items`` is a string, promote it to a 1-item list.
    """
    # TODO: Why strip out _all?
    if items is None:
        return ''
    if isinstance(items, string_types):
        items = [items]
    return ','.join(i for i in items if i != '_all')

def _to_query(self, obj):
    """
    Convert a native-Python object to a unicode or bytestring
    representation suitable for a query string.
    """
    # Quick and dirty thus far
    if isinstance(obj, string_types):
        return obj
    if isinstance(obj, bool):
        return 'true' if obj else 'false'
    if isinstance(obj, integer_types):
        return str(obj)
    if isinstance(obj, float):
        return repr(obj)  # str loses precision.
    if isinstance(obj, (list, tuple)):
        return ','.join(self._to_query(o) for o in obj)
    iso = _iso_datetime(obj)
    if iso:
        return iso
    raise TypeError("_to_query() doesn't know how to represent %r in an ES"
                    ' query string.' % obj)

def _utf8(self, thing):
    """Convert any arbitrary ``thing`` to a utf-8 bytestring."""
    if isinstance(thing, binary_type):
        return thing
    if not isinstance(thing, text_type):
        thing = text_type(thing)
    return thing.encode('utf-8')

def _join_path(self, path_components):
    """
    Smush together the path components, omitting '' and None ones.

    Unicodes get encoded to strings via utf-8. Incoming strings are assumed
    to be utf-8-encoded already.
    """
    path = '/'.join(quote_plus(self._utf8(p), '') for p in path_components if
                    p is not None and p != '')

    if not path.startswith('/'):
        path = '/' + path
    return path

def send_request(self,
                 method,
                 path_components,
                 body='',
                 query_params=None,
                 encode_body=True):
    """
    Send an HTTP request to ES, and return the JSON-decoded response.

    This is mostly an internal method, but it also comes in handy if you
    need to use a brand new ES API that isn't yet explicitly supported by
    pyelasticsearch, while still taking advantage of our connection pooling
    and retrying.

    Retry the request on different servers if the first one is down and
    ``self.max_retries`` > 0.

    :arg method: An HTTP method, like "GET"
    :arg path_components: An iterable of path components, to be joined by
        "/"
    :arg body: The request body
    :arg query_params: A map of querystring param names to values or
        ``None``
    :arg encode_body: Whether to encode the body of the request as JSON
    """
    path = self._join_path(path_components)
    if query_params:
        path = '?'.join(
            [path,
             urlencode(dict((k, self._utf8(self._to_query(v))) for k, v in
                            iteritems(query_params)))])

    request_body = self._encode_json(body) if encode_body else body
    req_method = getattr(self.session, method.lower())

    # We do our own retrying rather than using urllib3's; we want to retry
    # a different node in the cluster if possible, not the same one again
    # (which may be down).
    for attempt in xrange(self.max_retries + 1):
        server_url, was_dead = self.servers.get()
        url = server_url + path
    self.logger.debug(
            "Making a request equivalent to this: curl -X%s '%s' -d '%s'",
            method, url, request_body)

        try:
            resp = req_method(
                url,
                timeout=self.timeout,
                **({'data': request_body} if body else {}))
        except (ConnectionError, Timeout):
            self.servers.mark_dead(server_url)
            self.logger.info('%s marked as dead for %s seconds.',
                             server_url,
                             self.revival_delay)
            if attempt >= self.max_retries:
                raise
        else:
            if was_dead:
                self.servers.mark_live(server_url)
            break

self.logger.debug('response status: %s', resp.status_code)
print'****************************************************'
print resp.status_code
    print'****************************************************'
    prepped_response = self._decode_response(resp)
    if resp.status_code >= 400:
        self._raise_exception(resp, prepped_response)
    self.logger.debug('got response %s', prepped_response)
    return prepped_response

def _raise_exception(self, response, decoded_body):
    """Raise an exception based on an error-indicating response from ES."""
    error_message = decoded_body.get('error', decoded_body)

    error_class = ElasticHttpError
    if response.status_code == 404:
        error_class = ElasticHttpNotFoundError
    elif (error_message.startswith('IndexAlreadyExistsException') or
          'nested: IndexAlreadyExistsException' in error_message):
        error_class = IndexAlreadyExistsError

    raise error_class(response.status_code, error_message)

def _encode_json(self, value):
    """
    Convert a Python value to a form suitable for ElasticSearch's JSON DSL.
    """
    return json.dumps(value, cls=self.json_encoder, use_decimal=True)

def _decode_response(self, response):
    """Return a native-Python representation of a response's JSON blob."""
    try:
        json_response = response.json()
    except JSONDecodeError:
        raise InvalidJsonResponseError(response)
    return json_response

## REST API

@es_kwargs('routing', 'parent', 'timestamp', 'ttl', 'percolate',
           'consistency', 'replication', 'refresh', 'timeout', 'fields')
def index(self, index, doc_type, doc, id=None, overwrite_existing=True,
          query_params=None):
    """
    Put a typed JSON document into a specific index to make it searchable.

    :arg index: The name of the index to which to add the document
    :arg doc_type: The type of the document
    :arg doc: A Python mapping object, convertible to JSON, representing
        the document
    :arg id: The ID to give the document. Leave blank to make one up.
    :arg overwrite_existing: Whether we should overwrite existing documents
        of the same ID and doctype
    :arg routing: A value hashed to determine which shard this indexing
        request is routed to
    :arg parent: The ID of a parent document, which leads this document to
        be routed to the same shard as the parent, unless ``routing``
        overrides it.
    :arg timestamp: An explicit value for the (typically automatic)
        timestamp associated with a document, for use with ``ttl`` and such
    :arg ttl: The time until this document is automatically removed from
        the index. Can be an integral number of milliseconds or a duration
        like '1d'.
    :arg percolate: An indication of which percolator queries, registered
        against this index, should be checked against the new document: '*'
        or a query string like 'color:green'
    :arg consistency: An indication of how many active shards the contact
        node should demand to see in order to let the index operation
        succeed: 'one', 'quorum', or 'all'
    :arg replication: Set to 'async' to return from ES before finishing
        replication.
    :arg refresh: Pass True to refresh the index after adding the document.
    :arg timeout: A duration to wait for the relevant primary shard to
        become available, in the event that it isn't: for example, "5m"

    See `ES's index API`_ for more detail.

    .. _`ES's index API`:
        http://www.elasticsearch.org/guide/reference/api/index_.html
    """
    # :arg query_params: A map of other querystring params to pass along to
    # ES. This lets you use future ES features without waiting for an
    # update to pyelasticsearch. If we just used **kwargs for this, ES
    # could start using a querystring param that we already used as a
    # kwarg, and we'd shadow it. Name these params according to the names
    # they have in ES's REST API, but prepend "es_": for example,
    # ``es_version=2``.

    # TODO: Support version along with associated "preference" and
    # "version_type" params.
    if not overwrite_existing:
        query_params['op_type'] = 'create'

    return self.send_request('POST' if id is None else 'PUT',
                             [index, doc_type, id],
                             doc,
                             query_params)

@es_kwargs('consistency', 'refresh')
def bulk_index(self, index, doc_type, docs, id_field='id',
               parent_field='_parent', query_params=None):
    """
    Index a list of documents as efficiently as possible.

    :arg index: The name of the index to which to add the document
    :arg doc_type: The type of the document
    :arg docs: An iterable of Python mapping objects, convertible to JSON,
        representing documents to index
    :arg id_field: The field of each document that holds its ID
    :arg parent_field: The field of each document that holds its parent ID,
        if any. Removed from document before indexing. 

    See `ES's bulk API`_ for more detail.

    .. _`ES's bulk API`:
        http://www.elasticsearch.org/guide/reference/api/bulk.html
    """
    body_bits = []

    if not docs:
        raise ValueError('No documents provided for bulk indexing!')

    for doc in docs:
        action = {'index': {'_index': index, '_type': doc_type}}

        if doc.get(id_field) is not None:
            action['index']['_id'] = doc[id_field]

        if doc.get(parent_field) is not None:
            action['index']['_parent'] = doc.pop(parent_field)

        body_bits.append(self._encode_json(action))
        body_bits.append(self._encode_json(doc))

    # Need the trailing newline.
    body = 'n'.join(body_bits) + 'n'
    return self.send_request('POST',
                             ['_bulk'],
                             body,
                             encode_body=False,
                             query_params=query_params)

@es_kwargs('routing', 'parent', 'replication', 'consistency', 'refresh')
def delete(self, index, doc_type, id, query_params=None):
    """
    Delete a typed JSON document from a specific index based on its ID.

    :arg index: The name of the index from which to delete
    :arg doc_type: The type of the document to delete
    :arg id: The (string or int) ID of the document to delete

    See `ES's delete API`_ for more detail.

    .. _`ES's delete API`:
        http://www.elasticsearch.org/guide/reference/api/delete.html
    """
    # id should never be None, and it's not particular dangerous
    # (equivalent to deleting a doc with ID "None", but it's almost
    # certainly not what the caller meant:
    if id is None or id == '':
        raise ValueError('No ID specified. To delete all documents in '
                         'an index, use delete_all().')
    return self.send_request('DELETE', [index, doc_type, id],
                             query_params=query_params)

@es_kwargs('routing', 'parent', 'replication', 'consistency', 'refresh')
def delete_all(self, index, doc_type, query_params=None):
    """
    Delete all documents of the given doctype from an index.

    :arg index: The name of the index from which to delete. ES does not
        support this being empty or "_all" or a comma-delimited list of
        index names (in 0.19.9).
    :arg doc_type: The name of a document type

    See `ES's delete API`_ for more detail.

    .. _`ES's delete API`:
        http://www.elasticsearch.org/guide/reference/api/delete.html
    """
    return self.send_request('DELETE', [index, doc_type],
                             query_params=query_params)

@es_kwargs('q', 'df', 'analyzer', 'default_operator', 'source' 'routing',
           'replication', 'consistency')
def delete_by_query(self, index, doc_type, query, query_params=None):
    """
    Delete typed JSON documents from a specific index based on query.

    :arg index: An index or iterable thereof from which to delete
    :arg doc_type: The type of document or iterable thereof to delete
    :arg query: A dictionary that will convert to ES's query DSL or a
        string that will serve as a textual query to be passed as the ``q``
        query string parameter. (Passing the ``q`` kwarg yourself is
        deprecated.)

    See `ES's delete-by-query API`_ for more detail.

    .. _`ES's delete-by-query API`:
        http://www.elasticsearch.org/guide/reference/api/delete-by-query.html
    """
    if isinstance(query, string_types) and 'q' not in query_params:
        query_params['q'] = query
        body = ''
    else:
        body = query
    return self.send_request(
        'DELETE',
        [self._concat(index), self._concat(doc_type), '_query'],
        body,
        query_params=query_params)

@es_kwargs('realtime', 'fields', 'routing', 'preference', 'refresh')
def get(self, index, doc_type, id, query_params=None):
    """
    Get a typed JSON document from an index by ID.

    :arg index: The name of the index from which to retrieve
    :arg doc_type: The type of document to get
    :arg id: The ID of the document to retrieve

    See `ES's get API`_ for more detail.

    .. _`ES's get API`:
        http://www.elasticsearch.org/guide/reference/api/get.html
    """
    return self.send_request('GET', [index, doc_type, id],
                             query_params=query_params)

@es_kwargs()
def multi_get(self, ids, index=None, doc_type=None, fields=None,
              query_params=None):
    """
    Get multiple typed JSON documents from ES.

    :arg ids: An iterable, each element of which can be either an a dict or
        an id (int or string). IDs are taken to be document IDs. Dicts are
        passed through the Multi Get API essentially verbatim, except that
        any missing ``_type``, ``_index``, or ``fields`` keys are filled in
        from the defaults given in the ``index``, ``doc_type``, and
        ``fields`` args.
    :arg index: Default index name from which to retrieve
    :arg doc_type: Default type of document to get
    :arg fields: Default fields to return

    See `ES's Multi Get API`_ for more detail.

    .. _`ES's Multi Get API`:
        http://www.elasticsearch.org/guide/reference/api/multi-get.html
    """
    doc_template = dict(
        filter(
            itemgetter(1),
            [('_index', index), ('_type', doc_type), ('fields', fields)]))

    docs = []
    for id in ids:
        doc = doc_template.copy()
        if isinstance(id, dict):
            doc.update(id)
        else:
            doc['_id'] = id
        docs.append(doc)

    return self.send_request(
        'GET', ['_mget'], {'docs': docs}, query_params=query_params)

@es_kwargs('routing', 'parent', 'timeout', 'replication', 'consistency',
           'percolate', 'refresh', 'retry_on_conflict', 'fields')
def update(self, index, doc_type, id, script=None, params=None, lang=None,
           query_params=None, doc=None, upsert=None):
    """
    Update an existing document. Raise ``TypeError`` if ``script``, ``doc``
    and ``upsert`` are all unspecified.

    :arg index: The name of the index containing the document
    :arg doc_type: The type of the document
    :arg id: The ID of the document
    :arg script: The script to be used to update the document
    :arg params: A dict of the params to be put in scope of the script
    :arg lang: The language of the script. Omit to use the default,
        specified by ``script.default_lang``.
    :arg doc: A partial document to be merged into the existing document
    :arg upsert: The content for the new document created if the document
        does not exist
    """
    if script is None and doc is None and upsert is None:
        raise TypeError('At least one of the script, doc, or upsert '
                        'kwargs must be provided.')

    body = {}
    if script:
        body['script'] = script
    if lang and script:
        body['lang'] = lang
    if doc:
        body['doc'] = doc
    if upsert:
        body['upsert'] = upsert
    if params:
        body['params'] = params
    return self.send_request(
        'POST',
        [index, doc_type, id, '_update'],
        body=body,
        query_params=query_params)

def _search_or_count(self, kind, query, index=None, doc_type=None,
                     query_params=None):
    if isinstance(query, string_types):
        query_params['q'] = query
        body = ''
    else:
        body = query

    return self.send_request(
        'GET',
        [self._concat(index), self._concat(doc_type), kind],
        body,
        query_params=query_params)

@es_kwargs('routing', 'size')
def search(self, query, **kwargs):
    """
    Execute a search query against one or more indices and get back search
    hits.

    :arg query: A dictionary that will convert to ES's query DSL or a
        string that will serve as a textual query to be passed as the ``q``
        query string parameter
    :arg index: An index or iterable of indexes to search. Omit to search
        all.
    :arg doc_type: A document type or iterable thereof to search. Omit to
        search all.
    :arg size: Limit the number of results to ``size``. Use with ``es_from`` to
        implement paginated searching.

    See `ES's search API`_ for more detail.

    .. _`ES's search API`:
        http://www.elasticsearch.org/guide/reference/api/search/
    """
    return self._search_or_count('_search', query, **kwargs)

@es_kwargs('df', 'analyzer', 'default_operator', 'source', 'routing')
def count(self, query, **kwargs):
    """
    Execute a query against one or more indices and get hit count.

    :arg query: A dictionary that will convert to ES's query DSL or a
        string that will serve as a textual query to be passed as the ``q``
        query string parameter
    :arg index: An index or iterable of indexes to search. Omit to search
        all.
    :arg doc_type: A document type or iterable thereof to search. Omit to
        search all.

    See `ES's count API`_ for more detail.

    .. _`ES's count API`:
        http://www.elasticsearch.org/guide/reference/api/count.html
    """
    return self._search_or_count('_count', query, **kwargs)

@es_kwargs()
def get_mapping(self, index=None, doc_type=None, query_params=None):
    """
    Fetch the mapping definition for a specific index and type.

    :arg index: An index or iterable thereof
    :arg doc_type: A document type or iterable thereof

    Omit both arguments to get mappings for all types and indexes.

    See `ES's get-mapping API`_ for more detail.

    .. _`ES's get-mapping API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-get-mapping.html
    """
    # TODO: Think about turning index=None into _all if doc_type is non-
    # None, per the ES doc page.
    return self.send_request(
        'GET',
        [self._concat(index), self._concat(doc_type), '_mapping'],
        query_params=query_params)

@es_kwargs('ignore_conflicts')
def put_mapping(self, index, doc_type, mapping, query_params=None):
    """
    Register specific mapping definition for a specific type against one or
    more indices.

    :arg index: An index or iterable thereof
    :arg doc_type: The document type to set the mapping of
    :arg mapping: A dict representing the mapping to install. For example,
        this dict can have top-level keys that are the names of doc types.

    See `ES's put-mapping API`_ for more detail.

    .. _`ES's put-mapping API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-put-mapping.html
    """
    # TODO: Perhaps add a put_all_mappings() for consistency and so we
    # don't need to expose the "_all" magic string. We haven't done it yet
    # since this routine is not dangerous: ES makes you explicily pass
    # "_all" to update all mappings.
    return self.send_request(
        'PUT',
        [self._concat(index), doc_type, '_mapping'],
        mapping,
        query_params=query_params)

@es_kwargs('search_type', 'search_indices', 'search_types',
           'search_scroll', 'search_size', 'search_from',
           'like_text', 'percent_terms_to_match', 'min_term_freq',
           'max_query_terms', 'stop_words', 'min_doc_freq', 'max_doc_freq',
           'min_word_len', 'max_word_len', 'boost_terms', 'boost',
           'analyzer')
def more_like_this(self, index, doc_type, id, mlt_fields, body='', query_params=None):
    """
    Execute a "more like this" search query against one or more fields and
    get back search hits.

    :arg index: The index to search and where the document for comparison
        lives
    :arg doc_type: The type of document to find others like
    :arg id: The ID of the document to find others like
    :arg mlt_fields: The list of fields to compare on
    :arg body: A dictionary that will convert to ES's query DSL and be
        passed as the request body

    See `ES's more-like-this API`_ for more detail.

    .. _`ES's more-like-this API`:
        http://www.elasticsearch.org/guide/reference/api/more-like-this.html
    """
    query_params['mlt_fields'] = self._concat(mlt_fields)
    return self.send_request('GET',
                             [index, doc_type, id, '_mlt'],
                             body=body,
                             query_params=query_params)

## Index Admin API

@es_kwargs('recovery', 'snapshot')
def status(self, index=None, query_params=None):
    """
    Retrieve the status of one or more indices

    :arg index: An index or iterable thereof

    See `ES's index-status API`_ for more detail.

    .. _`ES's index-status API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-status.html
    """
    return self.send_request('GET', [self._concat(index), '_status'],
                             query_params=query_params)

@es_kwargs()
def update_aliases(self, settings, query_params=None):
    """
    Add, remove, or update aliases in bulk.

    :arg settings: a dictionary specifying the actions to perform

    See `ES's admin-indices-aliases API`_.

    .. _`ES's admin-indices-aliases API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-aliases.html
    """
    return self.send_request('POST', ['_aliases'],
                             body=settings, query_params=query_params)

@es_kwargs()
def aliases(self, index=None, query_params=None):
    """
    Retrieve a listing of aliases

    :arg index: the name of an index or an iterable of indices

    See `ES's admin-indices-aliases API`_.

    .. _`ES's admin-indices-aliases API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-aliases.html
    """
    return self.send_request('GET', [self._concat(index), '_aliases'],
                             query_params=query_params)

@es_kwargs()
def create_index(self, index, settings=None, query_params=None):
    """
    Create an index with optional settings.

    :arg index: The name of the index to create
    :arg settings: A dictionary of settings

    If the index already exists, raise
    :class:`~pyelasticsearch.exceptions.IndexAlreadyExistsError`.

    See `ES's create-index API`_ for more detail.

    .. _`ES's create-index API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-create-index.html
    """
    return self.send_request('PUT', [index], body=settings,
                             query_params=query_params)

@es_kwargs()
def delete_index(self, index, query_params=None):
    """
    Delete an index.

    :arg index: An index or iterable thereof to delete

    If the index is not found, raise
    :class:`~pyelasticsearch.exceptions.ElasticHttpNotFoundError`.

    See `ES's delete-index API`_ for more detail.

    .. _`ES's delete-index API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-delete-index.html
    """
    if not index:
        raise ValueError('No indexes specified. To delete all indexes, use'
                         ' delete_all_indexes().')
    return self.send_request('DELETE', [self._concat(index)],
                             query_params=query_params)

def delete_all_indexes(self, **kwargs):
    """Delete all indexes."""
    return self.delete_index('_all', **kwargs)

@es_kwargs()
def close_index(self, index, query_params=None):
    """
    Close an index.

    :arg index: The index to close

    See `ES's close-index API`_ for more detail.

    .. _`ES's close-index API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-open-close.html
    """
    return self.send_request('POST', [index, '_close'],
                             query_params=query_params)

@es_kwargs()
def open_index(self, index, query_params=None):
    """
    Open an index.

    :arg index: The index to open

    See `ES's open-index API`_ for more detail.

    .. _`ES's open-index API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-open-close.html
    """
    return self.send_request('POST', [index, '_open'],
                             query_params=query_params)

@es_kwargs()
def get_settings(self, index, query_params=None):
    """
    Get the settings of one or more indexes.

    :arg index: An index or iterable of indexes

    See `ES's get-settings API`_ for more detail.

    .. _`ES's get-settings API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-get-settings.html
    """
    return self.send_request('GET',
                             [self._concat(index), '_settings'],
                             query_params=query_params)

@es_kwargs()
def update_settings(self, index, settings, query_params=None):
    """
    Change the settings of one or more indexes.

    :arg index: An index or iterable of indexes
    :arg settings: A dictionary of settings

    See `ES's update-settings API`_ for more detail.

    .. _`ES's update-settings API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-update-settings.html
    """
    if not index:
        raise ValueError('No indexes specified. To update all indexes, use'
                         ' update_all_settings().')
    # If we implement the "update cluster settings" API, call that
    # update_cluster_settings().
    return self.send_request('PUT',
                            [self._concat(index), '_settings'],
                            body=settings,
                            query_params=query_params)

@es_kwargs()
def update_all_settings(self, settings, query_params=None):
    """
    Update the settings of all indexes.

    :arg settings: A dictionary of settings

    See `ES's update-settings API`_ for more detail.

    .. _`ES's update-settings API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-update-settings.html
    """
    return self.send_request('PUT', ['_settings'], body=settings,
                             query_params=query_params)

@es_kwargs('refresh')
def flush(self, index=None, query_params=None):
    """
    Flush one or more indices (clear memory).

    :arg index: An index or iterable of indexes

    See `ES's flush API`_ for more detail.

    .. _`ES's flush API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-flush.html
    """
    return self.send_request('POST',
                             [self._concat(index), '_flush'],
                             query_params=query_params)

@es_kwargs()
def refresh(self, index=None, query_params=None):
    """
    Refresh one or more indices.

    :arg index: An index or iterable of indexes

    See `ES's refresh API`_ for more detail.

    .. _`ES's refresh API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-refresh.html
    """
    return self.send_request('POST', [self._concat(index), '_refresh'],
                             query_params=query_params)

@es_kwargs()
def gateway_snapshot(self, index=None, query_params=None):
    """
    Gateway snapshot one or more indices.

    :arg index: An index or iterable of indexes

    See `ES's gateway-snapshot API`_ for more detail.

    .. _`ES's gateway-snapshot API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-gateway-snapshot.html
    """
    return self.send_request(
        'POST',
        [self._concat(index), '_gateway', 'snapshot'],
        query_params=query_params)

@es_kwargs('max_num_segments', 'only_expunge_deletes', 'refresh', 'flush',
           'wait_for_merge')
def optimize(self, index=None, query_params=None):
    """
    Optimize one or more indices.

    :arg index: An index or iterable of indexes

    See `ES's optimize API`_ for more detail.

    .. _`ES's optimize API`:
        http://www.elasticsearch.org/guide/reference/api/admin-indices-optimize.html
    """
    return self.send_request('POST',
                             [self._concat(index), '_optimize'],
                             query_params=query_params)

@es_kwargs('level', 'wait_for_status', 'wait_for_relocating_shards',
           'wait_for_nodes', 'timeout')
def health(self, index=None, query_params=None):
    """
    Report on the health of the cluster or certain indices.

    :arg index: The index or iterable of indexes to examine

    See `ES's cluster-health API`_ for more detail.

    .. _`ES's cluster-health API`:
        http://www.elasticsearch.org/guide/reference/api/admin-cluster-health.html
    """
    return self.send_request(
        'GET',
        ['_cluster', 'health', self._concat(index)],
        query_params=query_params)

@es_kwargs('filter_nodes', 'filter_routing_table', 'filter_metadata',
           'filter_blocks', 'filter_indices')
def cluster_state(self, query_params=None):
    """
    The cluster state API allows to get comprehensive state
    information of the whole cluster.

    (Insert es_kwargs here.)

    See `ES's cluster-state API`_ for more detail.

    .. _`ES's cluster-state API`:
        http://www.elasticsearch.org/guide/reference/api/admin-cluster-state.html
    """
    return self.send_request(
        'GET', ['_cluster', 'state'], query_params=query_params)

@es_kwargs()
def percolate(self, index, doc_type, doc, query_params=None):
    """
    Run a JSON document through the registered percolator queries, and
    return which ones match.

    :arg index: The name of the index to which the document pretends to
        belong
    :arg doc_type: The type the document should be treated as if it has
    :arg doc: A Python mapping object, convertible to JSON, representing
        the document

    Use :meth:`index()` to register percolators. See `ES's percolate API`_
    for more detail.

    .. _`ES's percolate API`:
        http://www.elasticsearch.org/guide/reference/api/percolate/
    """
    return self.send_request('GET',
                             [index, doc_type, '_percolate'],
                             doc, query_params=query_params)

class JsonEncoder(json.JSONEncoder):
def default(self, value):
"""Convert more Python data types to ES-understandable JSON."""
iso = _iso_datetime(value)
if iso:
return iso
if not PY3 and isinstance(value, str):
return unicode(value, errors='replace') # TODO: Be stricter.
if isinstance(value, set):
return list(value)
return super(JsonEncoder, self).default(value)

def _iso_datetime(value):
"""
If value appears to be something datetime-like, return it in ISO format.

Otherwise, return None.
"""
if hasattr(value, 'strftime'):
    if hasattr(value, 'hour'):
        return value.isoformat()
    else:
        return '%sT00:00:00' % value.isoformat()
时间: 2024-08-11 18:48:38

404错误-搭建好服务器之后,启动服务器的相关文章

服务器上报404错误-vs2013开发的项目,服务器上发布报404错误

问题描述 vs2013开发的项目,服务器上发布报404错误 vs2013开发的项目,在本地发布运行正常,但是发布到服务器上,登陆成功后,跳转后报404错误,找不到文件.网上搜了解决404错误的解决方法,基本上都试过了,还是没找到解决方法,不知道哪位大神也遇到过这样的问题,比较着急.我的登录成功的跳转实在登录页的前端设置的 $(":button").click(function () { $.ajax({ type: "GET", url: "/Handle

启动项目报404错误,到底是为什么啊?

问题描述 启动项目报404错误,到底是为什么啊? 为什么我的项目一在浏览器中启动就报404错误呢?我在web.xml里指定了欢迎页面,也在项目中编写好了,可一启动项目就报404错误,该配的包我也加进去了,到底是为什么啊? 解决方案 Tomcat正常启动后,报404错误 解决方案二: 看启动页面路径是否正确 解决方案三: 重新建一个项目,把内容拷贝过去,可以试试 解决方案四: 404不是请求服务器失败状态吗 解决方案五: 我只是一个小小的网页,额...学平面的,我猜应该是路径出错了,你把路径改一下

Mysql服务器的启动与停止(一)

mysql|服务器 在讨论如何启动MySQL服务器之前,让我们考虑一下应该以什么用户身份运行MySQL服务器.服务器可以手动或自动启动.如果你手动启动它,服务器以你登录Unix(Linux)的用户身份启动,即如果你用paul登录Unix并启动服务器,它用paul运行:如果你用su命令切换到root,然后运启动服务器,则它以root运行.然而,大多数情况下你可能不想手动启动服务器,最有可能是你安排MySQL服务器在系统引导时自动启动,作为标准引导过程的一部分,在Unix下,该引导过程由系统的Uni

maven项目,用到cxf框架,服务器启动后,其中一个server项目访问404错误

问题描述 maven项目,用到cxf框架,服务器启动后,其中一个server项目访问404错误 环境:eclipse+tomcat7,0+jdk1.6 项目之间有包依赖关系.上图中圈出来的两个是web项目. 将web项目部署到tomcat服务器之后,在eclipse中启动服务器,此时,后台是没有报错的.只有几个警告: 警告: A docBase E:Program Filesapache-tomcat-7.0.57webappshb12345_server inside the host app

服务器-struts2在web.xml中添加支持后访问所有页面报404错误,什么原因?

问题描述 struts2在web.xml中添加支持后访问所有页面报404错误,什么原因? struts2在web.xml中添加支持后访问所有页面报404错误,本地测试无任何问题,上传服务器就报所有页面404. web.xml struts.xml 运行后 解决方案 上传服务器之后,看看是不是请求IP,或者端口错了 解决方案二: 看看启动服务器报错没.估计你服务器在启动时就报错了 解决方案三: 看看服务器上jsp页面的路径对不对 解决方案四: 这情况一般是 启动服务器 然后就报错了... 找找看

Drupal站点换服务器后除主页其他404错误如何解决

问题描述: "page not found" Errors on every page except homepage." 也就是说您所建立的drupal站点除了主页面可以访问,其它栏目全部访问显示为404错误页面 问题分析: 造成这个问题最可能就是因为在新的服务器上的mod_rewrite模块或者是简洁链接(clean URLs)的错误配置(或称drupal伪静态).我们在地址栏中键入http://www.example.com/index.php?Q=user检测mod_

IIS 8.5下设置自定义404错误页_win服务器

IIS版本:IIS 8.5问题描述 搭建一个测试网站,总共就2个页面(index.php和404.php),默认首页为:index.php 当访问index.php和404.php的时候,IIS服务器能正常响应,说明在IIS 8.5中配置PHP环境没有出现问题. 访问index.php 访问404.php 另外,我的错误页配置结果如下: 正常情况下,当访问某个不存在的页面时(比如:127.0.0.1/aaa.php),此时,iis服务器发现aaa.php这个文件并不存在,所以,应该会请求404.

IIS服务器中设置404错误提示页面(iis6/iis8)

在IIS6中设置404错误页       在IIS8中设置404错误页 IIS版本:IIS 8.5 问题描述 搭建一个测试网站,总共就2个页面(index.php和404.php),默认首页为:index.php 当访问index.php和404.php的时候,IIS服务器能正常响应,说明在IIS 8.5中配置PHP环境没有出现问题. 访问index.php 访问404.php   另外,我的错误页配置结果如下: 正常情况下,当访问某个不存在的页面时(比如:127.0.0.1/aaa.php),

java-非典型SSH项目,启动服务器,出现如下错误,求大神支招

问题描述 非典型SSH项目,启动服务器,出现如下错误,求大神支招 10:19:56.250 WARN org.hibernate.ejb.Ejb3Configuration[1132] - HHH000144: hibernate.connection.autocommit = false breaks the EJB3 specification 10:19:56.745 WARN o.h.e.jdbc.internal.JdbcServicesImpl[169] - HHH000342: C