blob: ba47a1568cc6ba79f8b70d082a60b415c6263626 [file] [log] [blame]
/** Copyright 2015 TappingStone, Inc.
*
* Licensed 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.
*/
package io.prediction.data.storage.elasticsearch
import io.prediction.data.storage.EngineInstance
import io.prediction.data.storage.EngineInstances
import io.prediction.data.storage.EngineInstanceSerializer
import com.github.nscala_time.time.Imports._
import com.google.common.io.BaseEncoding
import grizzled.slf4j.Logging
import org.elasticsearch.ElasticsearchException
import org.elasticsearch.client.Client
import org.elasticsearch.index.query.FilterBuilders._
import org.elasticsearch.search.sort.SortBuilders._
import org.elasticsearch.search.sort.SortOrder
import org.json4s._
import org.json4s.JsonDSL._
import org.json4s.native.JsonMethods._
import org.json4s.native.Serialization.{ read, write }
import scala.collection.JavaConversions._
import scala.concurrent.Await
import scala.concurrent.duration._
class ESSequences(client: Client, index: String) extends Logging {
implicit val formats = DefaultFormats
private val estype = "sequences"
val indices = client.admin.indices
val indexExistResponse = indices.prepareExists(index).get
if (!indexExistResponse.isExists) {
// val settingsJson =
// ("number_of_shards" -> 1) ~
// ("auto_expand_replicas" -> "0-all")
indices.prepareCreate(index).get
}
val typeExistResponse = indices.prepareTypesExists(index).setTypes(estype).get
if (!typeExistResponse.isExists) {
val mappingJson =
(estype ->
("_source" -> ("enabled" -> 0)) ~
("_all" -> ("enabled" -> 0)) ~
("_type" -> ("index" -> "no")) ~
("enabled" -> 0))
indices.preparePutMapping(index).setType(estype).
setSource(compact(render(mappingJson))).get
}
def genNext(name: String): Int = {
try {
val response = client.prepareIndex(index, estype, name).
setSource(compact(render("n" -> name))).get
response.getVersion().toInt
} catch {
case e: ElasticsearchException =>
error(e.getMessage)
0
}
}
}