new upstream change type — updated, triggered when upstream methods changed (#148)
This commit is contained in:
committed by
GitHub
parent
1698bf7002
commit
1ec3d44484
@@ -45,6 +45,11 @@ class UpstreamChangeEvent(
|
||||
*/
|
||||
ADDED,
|
||||
|
||||
/**
|
||||
* Some upstream details changed
|
||||
*/
|
||||
UPDATED,
|
||||
|
||||
/**
|
||||
* Upstream become available after being temporally off
|
||||
*/
|
||||
|
||||
@@ -361,28 +361,35 @@ abstract class Multistream(
|
||||
val chain = event.chain
|
||||
if (this.chain == chain) {
|
||||
eventLock.withLock {
|
||||
if (event.type == UpstreamChangeEvent.ChangeType.REMOVED) {
|
||||
removeUpstream(event.upstream.getId()).takeIf { it }?.let {
|
||||
try {
|
||||
removedUpstreams.emitNext(event.upstream) { _, res -> res == Sinks.EmitResult.FAIL_NON_SERIALIZED }
|
||||
log.info("Upstream ${event.upstream.getId()} with chain $chain has been removed")
|
||||
} catch (e: Sinks.EmissionException) {
|
||||
log.error("error during event processing $event", e)
|
||||
}
|
||||
when (event.type) {
|
||||
UpstreamChangeEvent.ChangeType.REVALIDATED -> {}
|
||||
UpstreamChangeEvent.ChangeType.UPDATED -> {
|
||||
onUpstreamsUpdated()
|
||||
}
|
||||
} else {
|
||||
if (event.upstream is CachesEnabled) {
|
||||
event.upstream.setCaches(caches)
|
||||
}
|
||||
addUpstream(event.upstream).takeIf { it }?.let {
|
||||
UpstreamChangeEvent.ChangeType.ADDED -> {
|
||||
if (!started) {
|
||||
start()
|
||||
}
|
||||
try {
|
||||
addedUpstreams.emitNext(event.upstream) { _, res -> res == Sinks.EmitResult.FAIL_NON_SERIALIZED }
|
||||
log.info("Upstream ${event.upstream.getId()} with chain $chain has been added")
|
||||
} catch (e: Sinks.EmissionException) {
|
||||
log.error("error during event processing $event", e)
|
||||
if (event.upstream is CachesEnabled) {
|
||||
event.upstream.setCaches(caches)
|
||||
}
|
||||
addUpstream(event.upstream).takeIf { it }?.let {
|
||||
try {
|
||||
addedUpstreams.emitNext(event.upstream) { _, res -> res == Sinks.EmitResult.FAIL_NON_SERIALIZED }
|
||||
log.info("Upstream ${event.upstream.getId()} with chain $chain has been added")
|
||||
} catch (e: Sinks.EmissionException) {
|
||||
log.error("error during event processing $event", e)
|
||||
}
|
||||
}
|
||||
}
|
||||
UpstreamChangeEvent.ChangeType.REMOVED -> {
|
||||
removeUpstream(event.upstream.getId()).takeIf { it }?.let {
|
||||
try {
|
||||
removedUpstreams.emitNext(event.upstream) { _, res -> res == Sinks.EmitResult.FAIL_NON_SERIALIZED }
|
||||
log.info("Upstream ${event.upstream.getId()} with chain $chain has been removed")
|
||||
} catch (e: Sinks.EmissionException) {
|
||||
log.error("error during event processing $event", e)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -149,9 +149,11 @@ class BitcoinGrpcUpstream(
|
||||
override fun stop() {
|
||||
}
|
||||
|
||||
override fun update(conf: BlockchainOuterClass.DescribeChain) {
|
||||
upstreamStatus.update(conf)
|
||||
this.capabilities = RemoteCapabilities.extract(conf)
|
||||
override fun update(conf: BlockchainOuterClass.DescribeChain): Boolean {
|
||||
val newCapabilities = RemoteCapabilities.extract(conf)
|
||||
conf.status?.let { status -> onStatus(status) }
|
||||
return (upstreamStatus.update(conf) || (newCapabilities != capabilities)).also {
|
||||
capabilities = newCapabilities
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -131,10 +131,12 @@ open class EthereumGrpcUpstream(
|
||||
override fun stop() {
|
||||
}
|
||||
|
||||
override fun update(conf: BlockchainOuterClass.DescribeChain) {
|
||||
upstreamStatus.update(conf)
|
||||
capabilities = RemoteCapabilities.extract(conf)
|
||||
override fun update(conf: BlockchainOuterClass.DescribeChain): Boolean {
|
||||
val newCapabilities = RemoteCapabilities.extract(conf)
|
||||
conf.status?.let { status -> onStatus(status) }
|
||||
return (upstreamStatus.update(conf) || (newCapabilities != capabilities)).also {
|
||||
capabilities = newCapabilities
|
||||
}
|
||||
}
|
||||
|
||||
override fun getQuorumByLabel(): QuorumForLabels {
|
||||
|
||||
@@ -125,10 +125,12 @@ open class EthereumPosGrpcUpstream(
|
||||
override fun stop() {
|
||||
}
|
||||
|
||||
override fun update(conf: BlockchainOuterClass.DescribeChain) {
|
||||
upstreamStatus.update(conf)
|
||||
capabilities = RemoteCapabilities.extract(conf)
|
||||
override fun update(conf: BlockchainOuterClass.DescribeChain): Boolean {
|
||||
val newCapabilities = RemoteCapabilities.extract(conf)
|
||||
conf.status?.let { status -> onStatus(status) }
|
||||
return (upstreamStatus.update(conf) || (newCapabilities != capabilities)).also {
|
||||
capabilities = newCapabilities
|
||||
}
|
||||
}
|
||||
|
||||
override fun getQuorumByLabel(): QuorumForLabels {
|
||||
|
||||
@@ -27,7 +27,7 @@ interface GrpcUpstream : Upstream {
|
||||
* Update the configuration of the upstream with the new data.
|
||||
* Called on the first creation, and each time a new state received from upstream
|
||||
*/
|
||||
fun update(conf: BlockchainOuterClass.DescribeChain)
|
||||
fun update(conf: BlockchainOuterClass.DescribeChain): Boolean
|
||||
|
||||
fun getBlockchainApi(): ReactorBlockchainGrpc.ReactorBlockchainStub
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ class GrpcUpstreamStatus(
|
||||
private val nodes = AtomicReference(QuorumForLabels())
|
||||
private var targets: CallMethods? = null
|
||||
|
||||
fun update(conf: BlockchainOuterClass.DescribeChain) {
|
||||
fun update(conf: BlockchainOuterClass.DescribeChain): Boolean {
|
||||
val updateLabels = ArrayList<UpstreamsConfig.Labels>()
|
||||
val updateNodes = QuorumForLabels()
|
||||
|
||||
@@ -55,7 +55,9 @@ class GrpcUpstreamStatus(
|
||||
|
||||
this.nodes.set(updateNodes)
|
||||
this.allLabels.set(Collections.unmodifiableCollection(updateLabels))
|
||||
val changed = conf.supportedMethodsList.toSet() != this.targets?.getSupportedMethods()
|
||||
this.targets = DirectCallMethods(conf.supportedMethodsList.toSet())
|
||||
return changed
|
||||
}
|
||||
|
||||
fun getLabels(): Collection<UpstreamsConfig.Labels> {
|
||||
|
||||
@@ -149,8 +149,10 @@ class GrpcUpstreams(
|
||||
try {
|
||||
val chain = Chain.byId(chainDetails.chain.number)
|
||||
val up = getOrCreate(chain)
|
||||
(up.upstream as GrpcUpstream).update(chainDetails)
|
||||
up
|
||||
val changed = (up.upstream as GrpcUpstream).update(chainDetails)
|
||||
up.takeUnless {
|
||||
changed && it.type == UpstreamChangeEvent.ChangeType.REVALIDATED
|
||||
} ?: UpstreamChangeEvent(up.chain, up.upstream, UpstreamChangeEvent.ChangeType.UPDATED)
|
||||
} catch (e: Throwable) {
|
||||
log.warn("Skip unsupported upstream ${chainDetails.chain} on $id: ${e.message}")
|
||||
null
|
||||
@@ -161,16 +163,20 @@ class GrpcUpstreams(
|
||||
it.type == UpstreamChangeEvent.ChangeType.ADDED
|
||||
}
|
||||
|
||||
val updated = current.filter {
|
||||
it.type == UpstreamChangeEvent.ChangeType.UPDATED
|
||||
}
|
||||
|
||||
val removed = known.filterNot { kv ->
|
||||
val stillCurrent = current.any { c -> c.chain == kv.key }
|
||||
stillCurrent
|
||||
}.map {
|
||||
UpstreamChangeEvent(it.key, known.remove(it.key)!!, UpstreamChangeEvent.ChangeType.REMOVED)
|
||||
}
|
||||
if (removed.isNotEmpty() || added.isNotEmpty()) {
|
||||
log.info("Finished processing of grpc upstream description for $id with content delta added ${added.map { it.chain }} and removed ${removed.map { it.chain }}")
|
||||
if (removed.isNotEmpty() || added.isNotEmpty() || updated.isNotEmpty()) {
|
||||
log.info("Finished processing of grpc upstream description for $id with content delta added ${added.map { it.chain }}, updated ${updated.map { it.chain }} and removed ${removed.map { it.chain }}")
|
||||
}
|
||||
return Flux.fromIterable(removed + added)
|
||||
return Flux.fromIterable(removed + added + updated)
|
||||
}
|
||||
|
||||
private fun withTls(auth: AuthConfig.ClientTlsAuth): SslContext {
|
||||
|
||||
Reference in New Issue
Block a user