-
Notifications
You must be signed in to change notification settings - Fork 306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only add _type if ES version < 8 #892
Conversation
Symptoms of this issue look like those described in elastic/logstash#11264 with ingestion not possible and log entries containing:
|
LGTM - left cosmetic comment. |
Co-Authored-By: Colin Surprenant <[email protected]>
Thanks @colinsurprenant - I committed your suggestion |
[2023-03-17T11:25:11,285][ERROR][logstash.outputs.elasticsearch][main][3404e8877b56c05b348412b7a316fdaceb1867306a80dce71719c975094faeb9] Encountered a retryable error (will retry with exponential backoff) {:code=>400, :url=>"http://localhost:9200/_bulk", :content_length=>41360} I need to create indexing of exiting postgres database in elasticsearch. For this purpose I have setup elasticsearch 7.17.4, kibana 7.17.4 and logstash 7.17.4 on my local machine. I have downloaded csv file of posts table from db that contain almost 62k rows of data in it. I have setup logstash config file as per mentioned requirements of logstash doc. i.e. } Add your filters herecsv{ skip_header => true mutate { output { } stdout{codec => rubydebug } |
No description provided.