{"id":30065875,"url":"https://github.com/stevapple/elasticsearch-utils","last_synced_at":"2026-05-15T20:01:50.759Z","repository":{"id":180929874,"uuid":"665930810","full_name":"stevapple/elasticsearch-utils","owner":"stevapple","description":"Asynchronous data processing and import/export for Elasticsearch, written in Python.","archived":false,"fork":false,"pushed_at":"2023-08-17T06:30:46.000Z","size":31,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-22T03:08:34.814Z","etag":null,"topics":["data-analysis","data-processing","elasticsearch","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stevapple.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-07-13T10:13:14.000Z","updated_at":"2025-02-23T09:01:13.000Z","dependencies_parsed_at":"2024-01-14T16:13:07.754Z","dependency_job_id":"b06b2ff5-b7ae-40d7-af7f-6424197367c4","html_url":"https://github.com/stevapple/elasticsearch-utils","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"a64d960b0715fd2294e8b420cd7089ea4f7c84e9"},"previous_names":["stevapple/elasticsearch-utils"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stevapple/elasticsearch-utils","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevapple%2Felasticsearch-utils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevapple%2Felasticsearch-utils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevapple%2Felasticsearch-utils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevapple%2Felasticsearch-utils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stevapple","download_url":"https://codeload.github.com/stevapple/elasticsearch-utils/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevapple%2Felasticsearch-utils/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33077924,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-analysis","data-processing","elasticsearch","python"],"created_at":"2025-08-08T06:39:42.482Z","updated_at":"2026-05-15T20:01:50.742Z","avatar_url":"https://github.com/stevapple.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# elasticsearch-utils\n\nAsynchronous data processing and import/export for Elasticsearch, written in Python.\n\n## `es-importer`\n\n```\nusage: es-importer.py [-h] [--file-encoding FILE_ENCODING] [--scheme SCHEME]\n                      [--host HOST] [--port PORT] [-u USERNAME] [-p PASSWORD]\n                      [--ca-cert CA_CERT] [--pipeline PIPELINE]\n                      [--no-generate-action] [--id-field ID_FIELD]\n                      [-c CHUNK_SIZE] [--dry-run]\n                      file_path index\n\nRead, process and send data to Elasticsearch\n\npositional arguments:\n  file_path             Path to the input file\n  index                 Name of the Elasticsearch index\n\noptions:\n  -h, --help            show this help message and exit\n  --file-encoding FILE_ENCODING\n                        Input file encoding (default: utf-8)\n  --scheme SCHEME       Elasticsearch HTTP scheme (default: https)\n  --host HOST           Elasticsearch host (default: localhost)\n  --port PORT           Elasticsearch port (default: 9200)\n  -u USERNAME, --username USERNAME\n                        Username for authentication (default: elastic)\n  -p PASSWORD, --password PASSWORD\n                        Password for authentication\n  --ca-cert CA_CERT     Path to the CA certificate file\n  --pipeline PIPELINE   Name of the Elasticsearch pipeline\n  --no-generate-action  Whether to generate action lines\n  --id-field ID_FIELD   Name of document ID field\n  -c CHUNK_SIZE, --chunk_size CHUNK_SIZE\n                        Number of lines to process at once (default: 1000)\n  --dry-run             Print to stdout instead of sending to Elasticsearch\n```\n\n## `es-exporter`\n\n```\nusage: es-exporter.py [-h] [--post-process POST_PROCESS] [-o OUT] [--full]\n                      [--file-encoding FILE_ENCODING] [--scheme SCHEME]\n                      [--host HOST] [--port PORT] [-u USERNAME] [-p PASSWORD]\n                      [--ca-cert CA_CERT] [--chunk-size CHUNK_SIZE] [-i INDEX]\n                      query_file\n\nQuery, process and save data from Elasticsearch\n\npositional arguments:\n  query_file            Path to the query file. Use - for stdin.\n\noptions:\n  -h, --help            show this help message and exit\n  --post-process POST_PROCESS\n                        Specify a command for post-processing each document\n  -o OUT, --out OUT     Specify the output file\n  --full                Include the full document\n  --file-encoding FILE_ENCODING\n                        Specify the encoding for file output\n  --scheme SCHEME       Elasticsearch HTTP scheme (default: https)\n  --host HOST           Elasticsearch host (default: localhost)\n  --port PORT           Elasticsearch port (default: 9200)\n  -u USERNAME, --username USERNAME\n                        Username for authentication (default: elastic)\n  -p PASSWORD, --password PASSWORD\n                        Password for authentication\n  --ca-cert CA_CERT     Path to the CA certificate file\n  --chunk-size CHUNK_SIZE\n                        Number of documents to process at once (default: 1000)\n  -i INDEX, --index INDEX\n                        Specify the Elasticsearch index\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstevapple%2Felasticsearch-utils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstevapple%2Felasticsearch-utils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstevapple%2Felasticsearch-utils/lists"}