Metadata-Version: 1.0
Name: elasticsearch-loader
Version: 0.0.1
Summary: A pythonic tool for batch loading data files (json, parquet, csv, tsv) into ElasticSearch
Home-page: https://github.com/MosheZada/elasticsearch_loader
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: elasticsearch\_loader |Build Status|
        ====================================
        
        Main features:
        ~~~~~~~~~~~~~~
        
        -  Batch upload CSV (actually any \*SV) files to Elasticsearch
        -  Batch upload JSON files / JSON lines to Elasticsearch
        -  Batch upload parquet files to Elasticsearch
        -  Pre defining custom mappings
        -  Delete index before upload
        -  Index documents with \_id from the document itself
        -  And more
        
        Installation
        ~~~~~~~~~~~~
        
        | ``pip install git+git://github.com/MosheZada/elasticsearch_loader.git@master``
        | *In order to add parquet support run ``pip install parquet``*
        
        Usage
        ~~~~~
        
        ::
        
            (venv)/tmp $ elasticsearch_loader --help
            Usage: elasticsearch_loader [OPTIONS] COMMAND [ARGS]...
        
            Options:
              --bulk-size INTEGER             How many docs to collect before writing to
                                              ElasticSearch
              --concurrency INTEGER           How much worker threads to start
              --es-host TEXT                  Elasticsearch cluster entry point. eg.
                                              http://localhost:9200
              --consistency TEXT              Consistency level passed to bulk api
              --index TEXT                    Destination index name  [required]
              --delete                        Delete index before import?
              --type TEXT                     Docs type  [required]
              --id-field TEXT                 Specify field name that be used as document
                                              id
              --index-settings-file FILENAME  Specify path to json file containing index
                                              mapping and settings
              --help                          Show this message and exit.
        
            Commands:
              csv
              json     FILES with the format of [{"a": "1"}, {"b":...
              parquet
        
        Examples
        ~~~~~~~~
        
        Load 2 CSV files
        ^^^^^^^^^^^^^^^^
        
        ``elasticsearch_loader --index incidents --type incident csv file1.csv file2.csv``
        
        Load 2 JSON lines files
        ^^^^^^^^^^^^^^^^^^^^^^^
        
        ``elasticsearch_loader --index incidents --type incident json --json-lines file1.json.lines file2.json.lines``
        
        Load 2 parquet files
        ^^^^^^^^^^^^^^^^^^^^
        
        ``elasticsearch_loader --index incidents --type incident parquet file1.parquet file2.parquet``
        
        Read \_id from incident\_id field ``elasticsearch_loader --id-field incident_id --index incidents --type incident csv file1.csv file2.csv``
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
        
        Change bulk size
        ^^^^^^^^^^^^^^^^
        
        ``elasticsearch_loader --bulk-size 300 --index incidents --type incident csv file1.csv file2.csv``
        
        Change index concurrency
        ^^^^^^^^^^^^^^^^^^^^^^^^
        
        ``elasticsearch_loader --concurrency 20 --index incidents --type incident csv file1.csv file2.csv``
        
        Load custom mappings
        ^^^^^^^^^^^^^^^^^^^^
        
        ``elasticsearch_loader --index-settings-file samples/mappings.json --index incidents --type incident csv file1.csv file2.csv``
        
        Tests and sample data
        ~~~~~~~~~~~~~~~~~~~~~
        
        Tests are located under test and can run by runnig ``tox`` input format
        can be found under samples
        
        TODO
        ~~~~
        
        -  [x] parquet support
        -  [x] progress bar
        -  [ ] DLQ style out file for docs that didn't got in
        -  [ ] Python3 support
        -  [ ] Flake8 test
        
        .. |Build Status| image:: https://travis-ci.org/MosheZada/elasticsearch_loader.svg?branch=master
           :target: https://travis-ci.org/MosheZada/elasticsearch_loader
        
Keywords: elastic,elasticsearch,csv,json,parquet,bulk,loader
Platform: UNKNOWN
