-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add endpoint to trigger re-creating the index from the stream
Sometimes it is necessary to re-create the entire index from the raw data (for example, when solr schema changes happen). This is done by reading the redis stream from the beginning (or from a given message). The endpoint is only available from the provisioning process and not from the api.
- Loading branch information
Showing
13 changed files
with
375 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
...s/search-provision/src/main/scala/io/renku/search/provision/reindex/ReIndexDocument.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright 2024 Swiss Data Science Center (SDSC) | ||
* A partnership between École Polytechnique Fédérale de Lausanne (EPFL) and | ||
* Eidgenössische Technische Hochschule Zürich (ETHZ). | ||
* | ||
* 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.renku.search.provision.reindex | ||
|
||
import java.time.Instant | ||
|
||
import cats.Functor | ||
import cats.effect.* | ||
import cats.syntax.all.* | ||
|
||
import io.bullet.borer.Decoder | ||
import io.bullet.borer.Encoder | ||
import io.bullet.borer.derivation.{MapBasedCodecs, key} | ||
import io.renku.json.codecs.all.given | ||
import io.renku.search.events.MessageId | ||
import io.renku.search.model.Id | ||
import io.renku.solr.client.DocVersion | ||
|
||
final private case class ReIndexDocument( | ||
id: Id, | ||
created: Instant, | ||
messageId: Option[MessageId], | ||
@key("_version_") version: DocVersion | ||
) | ||
|
||
private object ReIndexDocument: | ||
private val docId: Id = Id("reindex_31baded5-9fc2-4935-9b07-80f7a3ecb13f") | ||
|
||
def createNew[F[_]: Clock: Functor](messageId: Option[MessageId]): F[ReIndexDocument] = | ||
Clock[F].realTimeInstant.map { now => | ||
ReIndexDocument(docId, now, messageId, DocVersion.NotExists) | ||
} | ||
|
||
given Encoder[ReIndexDocument] = MapBasedCodecs.deriveEncoder | ||
given Decoder[ReIndexDocument] = MapBasedCodecs.deriveDecoder |
98 changes: 98 additions & 0 deletions
98
...es/search-provision/src/main/scala/io/renku/search/provision/reindex/ReIndexService.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
/* | ||
* Copyright 2024 Swiss Data Science Center (SDSC) | ||
* A partnership between École Polytechnique Fédérale de Lausanne (EPFL) and | ||
* Eidgenössische Technische Hochschule Zürich (ETHZ). | ||
* | ||
* 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.renku.search.provision.reindex | ||
|
||
import cats.data.NonEmptyList | ||
import cats.effect.* | ||
import cats.syntax.all.* | ||
import fs2.Stream | ||
|
||
import io.renku.queue.client.QueueClient | ||
import io.renku.search.config.QueuesConfig | ||
import io.renku.search.events.MessageId | ||
import io.renku.search.provision.BackgroundProcessManage | ||
import io.renku.search.provision.MessageHandlers.MessageHandlerKey | ||
import io.renku.search.solr.client.SearchSolrClient | ||
|
||
trait ReIndexService[F[_]]: | ||
def startReIndex(startMessage: Option[MessageId]): F[Boolean] | ||
|
||
// depends on BackgroundProcessManage, RedisQueueClient | ||
// insert ReIndexDocument, if error: concurrent update | ||
// if successful inserted: stop tasks, set last message id, drop index, start tasks (to restart them) | ||
// remove ReIndexDocument | ||
|
||
// prerequisites: | ||
// - background tasks must be able to stop/restart | ||
|
||
object ReIndexService: | ||
|
||
def apply[F[_]: Clock: Sync]( | ||
bpm: BackgroundProcessManage[F], | ||
redisClient: Stream[F, QueueClient[F]], | ||
solrClient: SearchSolrClient[F], | ||
queueCfg: QueuesConfig | ||
): ReIndexService[F] = | ||
new ReIndexService[F] { | ||
private val queueName = NonEmptyList.of(queueCfg.dataServiceAllEvents) | ||
private val logger = scribe.cats.effect[F] | ||
|
||
def startReIndex(startMessage: Option[MessageId]): F[Boolean] = | ||
for | ||
syncDoc <- ReIndexDocument.createNew[F](startMessage) | ||
upsertResp <- solrClient.upsert(Seq(syncDoc)) | ||
_ <- logger.warn(s"Insert reindex sync document: $upsertResp") | ||
res <- | ||
if (upsertResp.isFailure) | ||
logger.info(s"Re-Index called while already being in progress").as(false) | ||
else restartHandlers(syncDoc, startMessage) | ||
yield res | ||
|
||
private def restartHandlers( | ||
syncDoc: ReIndexDocument, | ||
startMessage: Option[MessageId] | ||
) = | ||
for | ||
_ <- logger.info( | ||
s"Starting re-indexing all data, since message ${syncDoc.messageId}" | ||
) | ||
_ <- bpm.cancelProcesses(MessageHandlerKey.isInstance) | ||
_ <- logger.info("Background processes stopped") | ||
_ <- startMessage match | ||
case Some(msgId) => | ||
logger.info("Set last seen message id to $msgId for $queueName") >> | ||
redisClient | ||
.evalMap(_.markProcessed(queueName, msgId)) | ||
.take(1) | ||
.compile | ||
.drain | ||
case None => | ||
logger.info(s"Remove last processed message id for $queueName") >> | ||
redisClient | ||
.evalMap(_.removeLastProcessed(queueName)) | ||
.take(1) | ||
.compile | ||
.drain | ||
_ <- logger.info("Delete SOLR index") | ||
_ <- solrClient.deletePublicData | ||
_ <- logger.info("Start background processes") | ||
_ <- bpm.background(MessageHandlerKey.isInstance) | ||
_ <- solrClient.deleteIds(NonEmptyList.of(syncDoc.id)) | ||
yield true | ||
} |
Oops, something went wrong.