Skip to content
This repository was archived by the owner on Oct 18, 2021. It is now read-only.

Upgrade Elasticsearch version to 2.3 #126

Merged
merged 7 commits into from
Jun 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions elasticsearch-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,21 @@
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>4.10.4</version>
<version>${lucene.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-common</artifactId>
<version>4.10.4</version>
<version>${lucene.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>1.6.2</version>
<version>${elasticsearch.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class RestlasticSearchClient(endpointProvider: EndpointProvider, signer: Option[
def createIndex(index: Index, settings: Option[IndexSetting] = None): Future[RawJsonResponse] = {
implicit val ec = indexExecutionCtx
runEsCommand(CreateIndex(settings), s"/${index.name}").recover {
case ElasticErrorResponse(message, status) if message.toString contains "IndexAlreadyExistsException" =>
case ElasticErrorResponse(message, status) if message.toString contains "index_already_exists_exception" =>
throw IndexAlreadyExistsException(message.toString)
}
}
Expand All @@ -171,9 +171,14 @@ class RestlasticSearchClient(endpointProvider: EndpointProvider, signer: Option[
runEsCommand(EmptyObject, s"/${index.name}", DELETE)
}

def deleteDocument(index: Index, tpe: Type, query: QueryRoot): Future[RawJsonResponse] = {
def deleteDocument(index: Index, tpe: Type, deleteQuery: QueryRoot, pluginEnabled: Boolean = false): Future[RawJsonResponse] = {
implicit val ec = indexExecutionCtx
runEsCommand(query, s"/${index.name}/${tpe.name}/_query", DELETE)
if (pluginEnabled) {
runEsCommand(deleteQuery, s"/${index.name}/${tpe.name}/_query", DELETE)
} else {
val documents = Await.result(query(index, tpe, deleteQuery, rawJsonStr = false), 10.seconds).rawSearchResponse.hits.hits.map(_._id)
bulkDelete(index, tpe, documents.map(Document(_, Map()))).map(res => RawJsonResponse(res.toString))
}
}

// Scroll requests have optimizations that make them faster when the sort order is _doc.
Expand Down Expand Up @@ -261,9 +266,10 @@ object RestlasticSearchClient {
case class ScrollId(id: String)

case class BulkIndexResponse(items: List[Map[String, BulkItem]])
case class BulkItem(_index: String, _type: String, _id: String, status: Int, error: Option[String]) {
case class BulkIndexError(reason: String)
case class BulkItem(_index: String, _type: String, _id: String, status: Int, error: Option[BulkIndexError]) {
def created = status > 200 && status < 299 && !alreadyExists
def alreadyExists = error.exists(_.contains("DocumentAlreadyExists"))
def alreadyExists = error.exists(_.reason.contains("document already exists"))
def success = status >= 200 && status <= 299
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ class RestlasticSearchClientTest extends WordSpec with Matchers with ScalaFuture
}
val delFut = restClient.deleteDocument(index, tpe, new QueryRoot(TermQuery("text7", "here7")))
Await.result(delFut, 10.seconds)
refresh()
val resFut1 = restClient.query(index, tpe, new QueryRoot(TermQuery("text7", "here7")))
whenReady(resFut1) { res =>
res.sourceAsMap.toList should be(List())
Expand Down
14 changes: 4 additions & 10 deletions elasticsearch-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,35 +27,29 @@
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>4.10.4</version>
<version>${lucene.version}</version>
</dependency>

<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-common</artifactId>
<version>4.10.4</version>
<version>${lucene.version}</version>
</dependency>

<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>1.6.2</version>
<version>${elasticsearch.version}</version>
</dependency>

<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>1.6.2</version>
<version>${elasticsearch.version}</version>
<type>test-jar</type>
</dependency>

<!-- Non-Sumo Test Dependencies. -->
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-test-framework</artifactId>
<version>4.10.4</version>
</dependency>

<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${scala.version.major}</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import java.io.File

import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest
import org.elasticsearch.client.transport.TransportClient
import org.elasticsearch.common.settings.ImmutableSettings
import org.elasticsearch.common.settings.Settings
import org.elasticsearch.common.transport.{InetSocketTransportAddress, LocalTransportAddress}
import org.elasticsearch.node.NodeBuilder
import org.scalatest.{BeforeAndAfterAll, Suite}
Expand Down Expand Up @@ -71,10 +71,10 @@ trait ElasticsearchIntegrationTest extends BeforeAndAfterAll {

object ElasticsearchIntegrationTest {
private val r = new Random()
private lazy val esNodeSettings = ImmutableSettings.settingsBuilder().put("path.data", createTempDir("elasticsearch-test")).build()
private lazy val esNodeSettings = Settings.builder().put("path.home", createTempDir("elasticsearch-test")).build()
private lazy val esNode = NodeBuilder.nodeBuilder().local(true).settings(esNodeSettings).node()
private lazy val settings = ImmutableSettings.settingsBuilder().put("node.local", "true").build()
lazy val client = new TransportClient(settings).addTransportAddress(new LocalTransportAddress("1"))
private lazy val settings = Settings.builder().put("node.local", "true").build()
lazy val client = esNode.client()
lazy val globalEndpoint = {
val nodeInfos = client.admin().cluster().prepareNodesInfo().clear().setSettings(true).setHttp(true).get()
val nodeAddress =
Expand Down
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
<properties>
<scala.version.major>2.11</scala.version.major>
<akka.version>2.3.11</akka.version>
<elasticsearch.version>2.3.5</elasticsearch.version>
<lucene.version>5.5.0</lucene.version>
</properties>
<dependencies>
<dependency>
Expand Down