[
https://issues.apache.org/jira/browse/BEAM-5107?focusedWorklogId=134251&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-134251
]
ASF GitHub Bot logged work on BEAM-5107:
----------------------------------------
Author: ASF GitHub Bot
Created on: 13/Aug/18 19:11
Start Date: 13/Aug/18 19:11
Worklog Time Spent: 10m
Work Description: timrobertson100 commented on a change in pull request
#6211: [BEAM-5107] Support ES-6.x for ElasticsearchIO
URL: https://github.com/apache/beam/pull/6211#discussion_r209724721
##########
File path:
sdks/java/io/elasticsearch-tests/elasticsearch-tests-6/src/test/contrib/create_elk_container.sh
##########
@@ -0,0 +1,24 @@
+#!/bin/sh
+################################################################################
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+################################################################################
+
+#Create an ELK (Elasticsearch Logstash Kibana) container for ES v2.4 and
compatible Logstash and Kibana versions,
+#bind then on host ports, allow shell access to container and mount current
directory on /home/$USER inside the container
+
+docker create -p 5601:5601 -p 9200:9200 -p 5044:5044 -p 5000:5000 -p 9300:9300
-it -v $(pwd):/home/$USER/ --name elk-2.4 sebp/elk:es240_l240_k460
Review comment:
I think this looks wrong as it would start a 2.4.0 Elasticsearch server
wouldn't it?
Should it perhaps be more along the lines of this?
```
sudo docker run -p 5601:5601 -p 9200:9200 -p 5044:5044 -it -e
LOGSTASH_START=0 -e KIBANA_START=0 --name elk-6.3.2 sebp/elk:632
```
I notice that the ES5 is also wrong in Github and should be more along the
lines of the following I think:
```
sudo docker run -p 5601:5601 -p 9200:9200 -p 5044:5044 -it -e
LOGSTASH_START=0 -e KIBANA_START=0 --name elk-5.4.3 sebp/elk:543
```
If you agree, could you correct ES5 as well in this PR please?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 134251)
Time Spent: 3h 10m (was: 3h)
> Support ES 6.x for ElasticsearchIO
> ----------------------------------
>
> Key: BEAM-5107
> URL: https://issues.apache.org/jira/browse/BEAM-5107
> Project: Beam
> Issue Type: Improvement
> Components: io-java-elasticsearch
> Reporter: Dat Tran
> Assignee: Etienne Chauchot
> Priority: Major
> Time Spent: 3h 10m
> Remaining Estimate: 0h
>
> Elasticsearch has released 6.3.2 but ElasticsearchIO only supports 2x-5.x.
> We should support ES 6.x for ElasticsearchIO.
> https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html
> https://github.com/apache/beam/blob/master/sdks/java/io/elasticsearch/src/main/java/org/apache/beam/sdk/io/elasticsearch/ElasticsearchIO.java
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)