-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added basic readiness check for registry API #2997
Draft
soyarsauce
wants to merge
2
commits into
main
Choose a base branch
from
issue/2992
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
62 changes: 62 additions & 0 deletions
62
magda-registry-api/src/main/scala/au/csiro/data61/magda/registry/ProbesService.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,62 @@ | ||
package au.csiro.data61.magda.registry | ||
|
||
import java.util.concurrent.TimeoutException | ||
|
||
import akka.actor.{ActorRef, ActorSystem} | ||
import akka.event.Logging | ||
import akka.http.scaladsl.model.StatusCodes | ||
import akka.http.scaladsl.server.Directives._ | ||
import akka.http.scaladsl.server.Route | ||
import akka.stream.Materializer | ||
import au.csiro.data61.magda.client.AuthApiClient | ||
import au.csiro.data61.magda.directives.AuthDirectives.requireIsAdmin | ||
import au.csiro.data61.magda.directives.TenantDirectives.{ | ||
requiresTenantId, | ||
requiresSpecifiedTenantId | ||
} | ||
import au.csiro.data61.magda.model.Registry._ | ||
import com.typesafe.config.Config | ||
import gnieh.diffson.sprayJson._ | ||
import io.swagger.annotations._ | ||
import javax.ws.rs.Path | ||
import scalikejdbc.DB | ||
import org.everit.json.schema.ValidationException | ||
|
||
import scala.concurrent.{Await, ExecutionContext, Future} | ||
import scala.concurrent.duration._ | ||
import scala.util.{Failure, Success} | ||
|
||
// @Path("/status") | ||
class ProbesService( | ||
config: Config, | ||
authClient: RegistryAuthApiClient, | ||
system: ActorSystem, | ||
materializer: Materializer, | ||
recordPersistence: RecordPersistence, | ||
eventPersistence: EventPersistence | ||
) extends Protocols { | ||
val logger = Logging(system, getClass) | ||
implicit val ec: ExecutionContext = system.dispatcher | ||
|
||
def live: Route = get { | ||
path("live") { | ||
complete("OK") | ||
} | ||
} | ||
|
||
def ready: Route = get { | ||
path("ready") { | ||
DB readOnly { session => | ||
recordPersistence.getReadiness(Some(logger))(session) | ||
} match { | ||
case Some(true) => complete("OK") | ||
case Some(false) | None => | ||
complete(StatusCodes.InternalServerError, "Database not ready") | ||
} | ||
} | ||
} | ||
|
||
val route = | ||
live ~ | ||
ready | ||
} |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested in the cluster and it seems most exceptions are not captured.
e.g.
I think you probably need to capture any failure from the DB.readonly method as the execution is happening there.
you might want to try scala's
util.Try
instead oftry/catch
--- it's more common in scala as it's more flexible / offer more streamlined exception processinghttps://www.scala-lang.org/api/2.9.3/scala/util/Try.html
You can do something like this:
The
recordPersistence.getReadiness
doesn't seem to need to capture any exceptions (so you don't have to capture at multiple place) nor has a chance to produce a NONE. I guess a Boolean could simpler