Tarini Dash
Tarini Dash
Hey Matt, Thank you for your response. I did click on "Article HTML" which took me to "https://pubs.rsc.org/en/content/articlehtml/2015/tc/c5tc02626a" . Then I saved this HTML file locally using File- Saved As...
its been persistent. If I click on the url inside IDE it takes me to browser and elasticsearch-5.1.1.zip file is downloaded. Its just file not being downloaded from IDE(Intellij). Looks...
I manually downloaded elasticsearch-5.1.1.zip to /var/folders/4c/sqrnrxg109x79j2lv9bmnrl801g3xn/T/embedded-elasticsearch-temp-dir/ and it strated working fine. Not sure where the issue is. It would be nice if there is an option for target download dir...
2017-02-09 14:31:04,039 thread=[main] logType=INFO p.a.t.embeddedelasticsearch.ElasticSearchInstaller - Downloading : https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.1.1.zip to /var/folders/4c/sqrnrxg109x79j2lv9bmnrl801g3xn/T/embedded-elasticsearch-temp-dir/elasticsearch-5.1.1.zip... java.net.ConnectException: Operation timed out at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) at java.net.Socket.connect(Socket.java:589) at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668)...
Even with below option the downloaded url converted to https. Is there an option to mention proxy? We are behind proxy. @Before public void setUp() throws Exception { embeddedElastic =...
Its fails with even if I remove '.withElasticVersion("5.1.1")'. My configuration looks as below. embeddedElastic = EmbeddedElastic.builder() .withDownloadUrl(URI.create("http://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.1.1.zip").toURL()) .withSetting(PopularProperties.TRANSPORT_TCP_PORT, 9930) .withSetting(PopularProperties.CLUSTER_NAME, "local") .withEsJavaOpts("-Xms128m -Xmx512m") .withStartTimeout(2, TimeUnit.MINUTES) .build() .start(); StackTrace >> ------------...