mirror of
https://github.com/OpenBankProject/OBP-API.git
synced 2026-02-06 15:06:50 +00:00
Enabled support for Elasticsearch 5.3.0 #505
openidconnect.scala had to be changed to specifically use scala.io because otherwise netty.io would be used which does not have an attribute called Source.
This commit is contained in:
parent
7df4031bf8
commit
b9bdfda06e
6
pom.xml
6
pom.xml
@ -203,12 +203,12 @@
|
||||
<dependency>
|
||||
<groupId>org.elasticsearch</groupId>
|
||||
<artifactId>elasticsearch</artifactId>
|
||||
<version>2.3.0</version>
|
||||
<version>5.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sksamuel.elastic4s</groupId>
|
||||
<artifactId>elastic4s-core_2.11</artifactId>
|
||||
<version>2.3.0</version>
|
||||
<artifactId>elastic4s-tcp_2.11</artifactId>
|
||||
<version>5.3.0</version>
|
||||
</dependency>
|
||||
<!-- for LiftConsole -->
|
||||
<dependency>
|
||||
|
||||
@ -55,6 +55,7 @@ write_metrics=true
|
||||
#allow_elasticsearch=true
|
||||
#allow_elasticsearch_warehouse=true
|
||||
#allow_elasticsearch_metrics=true
|
||||
#es.cluster.name=elasticsearch
|
||||
|
||||
## ElasticSearch warehouse
|
||||
#es.warehouse.index=warehouse
|
||||
|
||||
@ -214,7 +214,7 @@ object OpenIdConnect extends OBPRestHelper with Loggable {
|
||||
connection.getOutputStream.write(dataBytes)
|
||||
}
|
||||
val inputStream = connection.getInputStream
|
||||
content = io.Source.fromInputStream(inputStream).mkString
|
||||
content = scala.io.Source.fromInputStream(inputStream).mkString
|
||||
if (inputStream != null) inputStream.close()
|
||||
} catch {
|
||||
case e:Throwable => println(e)
|
||||
|
||||
@ -1,7 +1,5 @@
|
||||
package code.search
|
||||
|
||||
import com.sksamuel.elastic4s.ElasticClient
|
||||
import com.sksamuel.elastic4s.ElasticDsl._
|
||||
import dispatch.{Http, url}
|
||||
import net.liftweb.common.Loggable
|
||||
|
||||
@ -16,7 +14,11 @@ import Defaults._
|
||||
import net.liftweb.json
|
||||
import java.util.Date
|
||||
|
||||
import com.sksamuel.elastic4s.mappings.FieldType.{DateType, StringType}
|
||||
import org.elasticsearch.common.settings.Settings
|
||||
import com.sksamuel.elastic4s.TcpClient
|
||||
import com.sksamuel.elastic4s.mappings.FieldType._
|
||||
import com.sksamuel.elastic4s.ElasticDsl._
|
||||
|
||||
import net.liftweb.http.provider.HTTPCookie
|
||||
import net.liftweb.json.JsonAST
|
||||
|
||||
@ -133,19 +135,21 @@ class elasticsearchMetrics extends elasticsearch {
|
||||
|
||||
if (esIndex.contains(",")) throw new RuntimeException("Props error: es.metrics.index can not be a list")
|
||||
|
||||
var client:ElasticClient = null
|
||||
var client:TcpClient = null
|
||||
|
||||
if (Props.getBool("allow_elasticsearch", false) && Props.getBool("allow_elasticsearch_metrics", false) ) {
|
||||
client = ElasticClient.transport("elasticsearch://" + esHost + ":" + esPortTCP + ",")
|
||||
val settings = Settings.builder().put("cluster.name", Props.get("es.cluster.name", "elasticsearch")).build()
|
||||
client = TcpClient.transport(settings, "elasticsearch://" + esHost + ":" + esPortTCP + ",")
|
||||
try {
|
||||
client.execute {
|
||||
create index esIndex mappings (
|
||||
"request" as (
|
||||
"userId" typed StringType,
|
||||
"url" typed StringType,
|
||||
"date" typed DateType,
|
||||
"userName" typed StringType,
|
||||
"appName" typed StringType,
|
||||
"developerEmail" typed StringType
|
||||
createIndex(esIndex).mappings(
|
||||
mapping("request") as (
|
||||
textField("userId"),
|
||||
textField("url"),
|
||||
dateField("date"),
|
||||
textField("userName"),
|
||||
textField("appName"),
|
||||
textField("developerEmail")
|
||||
)
|
||||
)
|
||||
}
|
||||
@ -159,7 +163,7 @@ class elasticsearchMetrics extends elasticsearch {
|
||||
if (Props.getBool("allow_elasticsearch", false) && Props.getBool("allow_elasticsearch_metrics", false) ) {
|
||||
try {
|
||||
client.execute {
|
||||
index into esIndex / "request" fields (
|
||||
indexInto(esIndex / "request") fields (
|
||||
"userId" -> userId,
|
||||
"url" -> url,
|
||||
"date" -> date,
|
||||
@ -183,9 +187,10 @@ class elasticsearchWarehouse extends elasticsearch {
|
||||
override val esPortTCP = Props.get("es.warehouse.port.tcp","9300")
|
||||
override val esPortHTTP = Props.get("es.warehouse.port.http","9200")
|
||||
override val esIndex = Props.get("es.warehouse.index", "warehouse")
|
||||
var client:ElasticClient = null
|
||||
var client:TcpClient = null
|
||||
if (Props.getBool("allow_elasticsearch", false) && Props.getBool("allow_elasticsearch_warehouse", false) ) {
|
||||
client = ElasticClient.transport("elasticsearch://" + esHost + ":" + esPortTCP + ",")
|
||||
val settings = Settings.builder().put("cluster.name", Props.get("es.cluster.name", "elasticsearch")).build()
|
||||
client = TcpClient.transport(settings, "elasticsearch://" + esHost + ":" + esPortTCP + ",")
|
||||
}
|
||||
}
|
||||
|
||||
@ -198,10 +203,10 @@ class elasticsearchOBP extends elasticsearch {
|
||||
val accountIndex = "account_v1.2.1"
|
||||
val transactionIndex = "transaction_v1.2.1"
|
||||
|
||||
var client:ElasticClient = null
|
||||
var client:TcpClient = null
|
||||
|
||||
if (Props.getBool("allow_elasticsearch", false) ) {
|
||||
client = ElasticClient.transport("elasticsearch://" + esHost + ":" + esPortTCP + ",")
|
||||
client = TcpClient.transport("elasticsearch://" + esHost + ":" + esPortTCP + ",")
|
||||
|
||||
client.execute {
|
||||
create index accountIndex mappings (
|
||||
|
||||
Loading…
Reference in New Issue
Block a user