added chains configuration
This commit is contained in:
@@ -32,6 +32,8 @@ If you request balance for an address that is not indexed then it returns 0 bala
|
|||||||
- To track all transactions you need to setup index for transactions, which is disabled by default.
|
- To track all transactions you need to setup index for transactions, which is disabled by default.
|
||||||
Run it with `-reindex` option, or set `txindex=1` in the config.
|
Run it with `-reindex` option, or set `txindex=1` in the config.
|
||||||
|
|
||||||
|
===
|
||||||
|
|
||||||
=== Example Configuration
|
=== Example Configuration
|
||||||
|
|
||||||
.upstreams.yaml
|
.upstreams.yaml
|
||||||
|
|||||||
@@ -16,14 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
package io.emeraldpay.dshackle
|
package io.emeraldpay.dshackle
|
||||||
|
|
||||||
import io.emeraldpay.dshackle.config.CacheConfig
|
import io.emeraldpay.dshackle.config.*
|
||||||
import io.emeraldpay.dshackle.config.HealthConfig
|
|
||||||
import io.emeraldpay.dshackle.config.MainConfig
|
|
||||||
import io.emeraldpay.dshackle.config.MainConfigReader
|
|
||||||
import io.emeraldpay.dshackle.config.MonitoringConfig
|
|
||||||
import io.emeraldpay.dshackle.config.SignatureConfig
|
|
||||||
import io.emeraldpay.dshackle.config.TokensConfig
|
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
|
||||||
import org.bouncycastle.jce.provider.BouncyCastleProvider
|
import org.bouncycastle.jce.provider.BouncyCastleProvider
|
||||||
import org.slf4j.LoggerFactory
|
import org.slf4j.LoggerFactory
|
||||||
import org.springframework.beans.factory.annotation.Autowired
|
import org.springframework.beans.factory.annotation.Autowired
|
||||||
@@ -141,4 +134,9 @@ open class Config(
|
|||||||
open fun healthConfig(@Autowired mainConfig: MainConfig): HealthConfig {
|
open fun healthConfig(@Autowired mainConfig: MainConfig): HealthConfig {
|
||||||
return mainConfig.health
|
return mainConfig.health
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
open fun chainsConfig(mainConfig: MainConfig): ChainsConfig {
|
||||||
|
return mainConfig.chains
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
package io.emeraldpay.dshackle.config
|
||||||
|
|
||||||
|
import io.emeraldpay.dshackle.Chain
|
||||||
|
|
||||||
|
class ChainsConfig(var chains: Map<Chain, ChainConfig>, val currentDefault: ChainConfig) {
|
||||||
|
companion object {
|
||||||
|
@JvmStatic
|
||||||
|
fun default(): ChainsConfig = ChainsConfig(emptyMap(), ChainConfig.default())
|
||||||
|
}
|
||||||
|
|
||||||
|
data class ChainConfig(val syncingLagSize: Int, val laggingLagSize: Int) {
|
||||||
|
companion object {
|
||||||
|
@JvmStatic
|
||||||
|
fun default() = ChainConfig(6, 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun resolve(chain: Chain) = chains[chain] ?: currentDefault
|
||||||
|
}
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
package io.emeraldpay.dshackle.config
|
||||||
|
|
||||||
|
import io.emeraldpay.dshackle.Global
|
||||||
|
import org.yaml.snakeyaml.nodes.CollectionNode
|
||||||
|
import org.yaml.snakeyaml.nodes.MappingNode
|
||||||
|
import java.io.InputStream
|
||||||
|
|
||||||
|
class ChainsConfigReader : YamlConfigReader(), ConfigReader<ChainsConfig> {
|
||||||
|
|
||||||
|
fun read(input: InputStream): ChainsConfig {
|
||||||
|
val configNode = readNode(input)
|
||||||
|
return read(configNode)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun read(input: MappingNode?): ChainsConfig {
|
||||||
|
val chains = getList<MappingNode>(input, "chains")?.let {
|
||||||
|
readChains(it)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (chains == null) {
|
||||||
|
return ChainsConfig.default()
|
||||||
|
} else {
|
||||||
|
|
||||||
|
val default = chains.firstOrNull { it.first == "default" }?.second ?: ChainsConfig.ChainConfig.default()
|
||||||
|
|
||||||
|
return ChainsConfig(
|
||||||
|
chains.filter { it.first != "default" }
|
||||||
|
.map { Global.chainById(it.first) to it.second }
|
||||||
|
.associateBy({ it.first }, { it.second }),
|
||||||
|
default
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun readChains(node: CollectionNode<MappingNode>): List<Pair<String, ChainsConfig.ChainConfig>> {
|
||||||
|
return node.value.map {
|
||||||
|
val key = getValueAsString(it, "name") ?: throw IllegalArgumentException()
|
||||||
|
val value = ChainsConfig.ChainConfig(
|
||||||
|
getValueAsInt(it, "syncing-size") ?: throw IllegalArgumentException(),
|
||||||
|
getValueAsInt(it, "lagging-size") ?: throw IllegalArgumentException()
|
||||||
|
)
|
||||||
|
key to value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -29,4 +29,5 @@ class MainConfig {
|
|||||||
var health: HealthConfig = HealthConfig.default()
|
var health: HealthConfig = HealthConfig.default()
|
||||||
var signature: SignatureConfig? = null
|
var signature: SignatureConfig? = null
|
||||||
var compression: CompressionConfig = CompressionConfig.default()
|
var compression: CompressionConfig = CompressionConfig.default()
|
||||||
|
var chains: ChainsConfig = ChainsConfig.default()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,6 +38,7 @@ class MainConfigReader(
|
|||||||
private val healthConfigReader = HealthConfigReader()
|
private val healthConfigReader = HealthConfigReader()
|
||||||
private val signatureConfigReader = SignatureConfigReader(fileResolver)
|
private val signatureConfigReader = SignatureConfigReader(fileResolver)
|
||||||
private val compressionConfigReader = CompressionConfigReader()
|
private val compressionConfigReader = CompressionConfigReader()
|
||||||
|
private val chainsConfigReader = ChainsConfigReader()
|
||||||
|
|
||||||
fun read(input: InputStream): MainConfig? {
|
fun read(input: InputStream): MainConfig? {
|
||||||
val configNode = readNode(input)
|
val configNode = readNode(input)
|
||||||
@@ -87,6 +88,9 @@ class MainConfigReader(
|
|||||||
compressionConfigReader.read(input).let {
|
compressionConfigReader.read(input).let {
|
||||||
config.compression = it
|
config.compression = it
|
||||||
}
|
}
|
||||||
|
chainsConfigReader.read(input).let {
|
||||||
|
config.chains = it
|
||||||
|
}
|
||||||
return config
|
return config
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import io.emeraldpay.dshackle.BlockchainType
|
|||||||
import io.emeraldpay.dshackle.Chain
|
import io.emeraldpay.dshackle.Chain
|
||||||
import io.emeraldpay.dshackle.FileResolver
|
import io.emeraldpay.dshackle.FileResolver
|
||||||
import io.emeraldpay.dshackle.Global
|
import io.emeraldpay.dshackle.Global
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.reader.JsonRpcReader
|
import io.emeraldpay.dshackle.reader.JsonRpcReader
|
||||||
import io.emeraldpay.dshackle.upstream.*
|
import io.emeraldpay.dshackle.upstream.*
|
||||||
@@ -64,7 +65,8 @@ open class ConfiguredUpstreams(
|
|||||||
private val callTargets: CallTargetsHolder,
|
private val callTargets: CallTargetsHolder,
|
||||||
private val eventPublisher: ApplicationEventPublisher,
|
private val eventPublisher: ApplicationEventPublisher,
|
||||||
@Qualifier("grpcChannelExecutor")
|
@Qualifier("grpcChannelExecutor")
|
||||||
private val channelExecutor: Executor
|
private val channelExecutor: Executor,
|
||||||
|
private val chainsConfig: ChainsConfig
|
||||||
) : ApplicationRunner {
|
) : ApplicationRunner {
|
||||||
|
|
||||||
private val log = LoggerFactory.getLogger(ConfiguredUpstreams::class.java)
|
private val log = LoggerFactory.getLogger(ConfiguredUpstreams::class.java)
|
||||||
@@ -95,11 +97,22 @@ open class ConfiguredUpstreams(
|
|||||||
.merge(defaultOptions[chain] ?: UpstreamsConfig.Options.getDefaults())
|
.merge(defaultOptions[chain] ?: UpstreamsConfig.Options.getDefaults())
|
||||||
val upstream = when (BlockchainType.from(chain)) {
|
val upstream = when (BlockchainType.from(chain)) {
|
||||||
BlockchainType.EVM_POW -> {
|
BlockchainType.EVM_POW -> {
|
||||||
buildEthereumUpstream(up.nodeId, up.cast(UpstreamsConfig.EthereumConnection::class.java), chain, options)
|
buildEthereumUpstream(
|
||||||
|
up.nodeId,
|
||||||
|
up.cast(UpstreamsConfig.EthereumConnection::class.java),
|
||||||
|
chain,
|
||||||
|
options,
|
||||||
|
chainsConfig.resolve(chain)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
BlockchainType.BITCOIN -> {
|
BlockchainType.BITCOIN -> {
|
||||||
buildBitcoinUpstream(up.cast(UpstreamsConfig.BitcoinConnection::class.java), chain, options)
|
buildBitcoinUpstream(
|
||||||
|
up.cast(UpstreamsConfig.BitcoinConnection::class.java),
|
||||||
|
chain,
|
||||||
|
options,
|
||||||
|
chainsConfig.resolve(chain)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
BlockchainType.EVM_POS -> {
|
BlockchainType.EVM_POS -> {
|
||||||
@@ -107,7 +120,8 @@ open class ConfiguredUpstreams(
|
|||||||
up.nodeId,
|
up.nodeId,
|
||||||
up.cast(UpstreamsConfig.EthereumPosConnection::class.java),
|
up.cast(UpstreamsConfig.EthereumPosConnection::class.java),
|
||||||
chain,
|
chain,
|
||||||
options
|
options,
|
||||||
|
chainsConfig.resolve(chain)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -167,7 +181,8 @@ open class ConfiguredUpstreams(
|
|||||||
nodeId: Int?,
|
nodeId: Int?,
|
||||||
config: UpstreamsConfig.Upstream<UpstreamsConfig.EthereumPosConnection>,
|
config: UpstreamsConfig.Upstream<UpstreamsConfig.EthereumPosConnection>,
|
||||||
chain: Chain,
|
chain: Chain,
|
||||||
options: UpstreamsConfig.Options
|
options: UpstreamsConfig.Options,
|
||||||
|
chainConf: ChainsConfig.ChainConfig
|
||||||
): Upstream? {
|
): Upstream? {
|
||||||
val conn = config.connection!!
|
val conn = config.connection!!
|
||||||
val execution = conn.execution
|
val execution = conn.execution
|
||||||
@@ -200,7 +215,8 @@ open class ConfiguredUpstreams(
|
|||||||
options, config.role,
|
options, config.role,
|
||||||
methods,
|
methods,
|
||||||
QuorumForLabels.QuorumItem(1, config.labels),
|
QuorumForLabels.QuorumItem(1, config.labels),
|
||||||
connectorFactory
|
connectorFactory,
|
||||||
|
chainConf
|
||||||
)
|
)
|
||||||
upstream.start()
|
upstream.start()
|
||||||
return upstream
|
return upstream
|
||||||
@@ -209,7 +225,8 @@ open class ConfiguredUpstreams(
|
|||||||
private fun buildBitcoinUpstream(
|
private fun buildBitcoinUpstream(
|
||||||
config: UpstreamsConfig.Upstream<UpstreamsConfig.BitcoinConnection>,
|
config: UpstreamsConfig.Upstream<UpstreamsConfig.BitcoinConnection>,
|
||||||
chain: Chain,
|
chain: Chain,
|
||||||
options: UpstreamsConfig.Options
|
options: UpstreamsConfig.Options,
|
||||||
|
chainConf: ChainsConfig.ChainConfig
|
||||||
): Upstream? {
|
): Upstream? {
|
||||||
val conn = config.connection!!
|
val conn = config.connection!!
|
||||||
val httpFactory = buildHttpFactory(conn)
|
val httpFactory = buildHttpFactory(conn)
|
||||||
@@ -242,7 +259,7 @@ open class ConfiguredUpstreams(
|
|||||||
chain, directApi, head,
|
chain, directApi, head,
|
||||||
options, config.role,
|
options, config.role,
|
||||||
QuorumForLabels.QuorumItem(1, config.labels),
|
QuorumForLabels.QuorumItem(1, config.labels),
|
||||||
methods, esplora
|
methods, esplora, chainConf
|
||||||
)
|
)
|
||||||
upstream.start()
|
upstream.start()
|
||||||
return upstream
|
return upstream
|
||||||
@@ -252,7 +269,8 @@ open class ConfiguredUpstreams(
|
|||||||
nodeId: Int?,
|
nodeId: Int?,
|
||||||
config: UpstreamsConfig.Upstream<UpstreamsConfig.EthereumConnection>,
|
config: UpstreamsConfig.Upstream<UpstreamsConfig.EthereumConnection>,
|
||||||
chain: Chain,
|
chain: Chain,
|
||||||
options: UpstreamsConfig.Options
|
options: UpstreamsConfig.Options,
|
||||||
|
chainConf: ChainsConfig.ChainConfig
|
||||||
): EthereumRpcUpstream? {
|
): EthereumRpcUpstream? {
|
||||||
val conn = config.connection!!
|
val conn = config.connection!!
|
||||||
|
|
||||||
@@ -279,7 +297,8 @@ open class ConfiguredUpstreams(
|
|||||||
options, config.role,
|
options, config.role,
|
||||||
methods,
|
methods,
|
||||||
QuorumForLabels.QuorumItem(1, config.labels),
|
QuorumForLabels.QuorumItem(1, config.labels),
|
||||||
connectorFactory
|
connectorFactory,
|
||||||
|
chainConf
|
||||||
)
|
)
|
||||||
upstream.start()
|
upstream.start()
|
||||||
return upstream
|
return upstream
|
||||||
@@ -309,7 +328,8 @@ open class ConfiguredUpstreams(
|
|||||||
endpoint.upstreamRating,
|
endpoint.upstreamRating,
|
||||||
config.labels,
|
config.labels,
|
||||||
grpcUpstreamsScheduler,
|
grpcUpstreamsScheduler,
|
||||||
channelExecutor
|
channelExecutor,
|
||||||
|
chainsConfig
|
||||||
).apply {
|
).apply {
|
||||||
timeout = options.timeout
|
timeout = options.timeout
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
package io.emeraldpay.dshackle.upstream
|
package io.emeraldpay.dshackle.upstream
|
||||||
|
|
||||||
import io.emeraldpay.api.proto.BlockchainOuterClass
|
import io.emeraldpay.api.proto.BlockchainOuterClass
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
||||||
import io.emeraldpay.dshackle.upstream.calls.CallMethods
|
import io.emeraldpay.dshackle.upstream.calls.CallMethods
|
||||||
@@ -33,36 +34,20 @@ abstract class DefaultUpstream(
|
|||||||
private val options: UpstreamsConfig.Options,
|
private val options: UpstreamsConfig.Options,
|
||||||
private val role: UpstreamsConfig.UpstreamRole,
|
private val role: UpstreamsConfig.UpstreamRole,
|
||||||
private val targets: CallMethods?,
|
private val targets: CallMethods?,
|
||||||
private val node: QuorumForLabels.QuorumItem?
|
node: QuorumForLabels.QuorumItem?,
|
||||||
|
private val chainConfig: ChainsConfig.ChainConfig
|
||||||
) : Upstream {
|
) : Upstream {
|
||||||
|
|
||||||
constructor(
|
|
||||||
id: String,
|
|
||||||
hash: Byte,
|
|
||||||
options: UpstreamsConfig.Options,
|
|
||||||
role: UpstreamsConfig.UpstreamRole,
|
|
||||||
targets: CallMethods?
|
|
||||||
) :
|
|
||||||
this(
|
|
||||||
id,
|
|
||||||
hash,
|
|
||||||
Long.MAX_VALUE,
|
|
||||||
UpstreamAvailability.UNAVAILABLE,
|
|
||||||
options,
|
|
||||||
role,
|
|
||||||
targets,
|
|
||||||
QuorumForLabels.QuorumItem.empty()
|
|
||||||
)
|
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
id: String,
|
id: String,
|
||||||
hash: Byte,
|
hash: Byte,
|
||||||
options: UpstreamsConfig.Options,
|
options: UpstreamsConfig.Options,
|
||||||
role: UpstreamsConfig.UpstreamRole,
|
role: UpstreamsConfig.UpstreamRole,
|
||||||
targets: CallMethods?,
|
targets: CallMethods?,
|
||||||
node: QuorumForLabels.QuorumItem?
|
node: QuorumForLabels.QuorumItem?,
|
||||||
|
chainConfig: ChainsConfig.ChainConfig
|
||||||
) :
|
) :
|
||||||
this(id, hash, Long.MAX_VALUE, UpstreamAvailability.UNAVAILABLE, options, role, targets, node)
|
this(id, hash, Long.MAX_VALUE, UpstreamAvailability.UNAVAILABLE, options, role, targets, node, chainConfig)
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private val log = LoggerFactory.getLogger(DefaultUpstream::class.java)
|
private val log = LoggerFactory.getLogger(DefaultUpstream::class.java)
|
||||||
@@ -111,8 +96,8 @@ abstract class DefaultUpstream(
|
|||||||
}
|
}
|
||||||
return if (proposed == UpstreamAvailability.OK) {
|
return if (proposed == UpstreamAvailability.OK) {
|
||||||
when {
|
when {
|
||||||
lag > 6 -> UpstreamAvailability.SYNCING
|
lag > chainConfig.syncingLagSize -> UpstreamAvailability.SYNCING
|
||||||
lag > 1 -> UpstreamAvailability.LAGGING
|
lag > chainConfig.laggingLagSize -> UpstreamAvailability.LAGGING
|
||||||
else -> proposed
|
else -> proposed
|
||||||
}
|
}
|
||||||
} else proposed
|
} else proposed
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
package io.emeraldpay.dshackle.upstream.bitcoin
|
package io.emeraldpay.dshackle.upstream.bitcoin
|
||||||
|
|
||||||
import io.emeraldpay.dshackle.Chain
|
import io.emeraldpay.dshackle.Chain
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.reader.JsonRpcReader
|
import io.emeraldpay.dshackle.reader.JsonRpcReader
|
||||||
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
||||||
@@ -37,8 +38,9 @@ open class BitcoinRpcUpstream(
|
|||||||
role: UpstreamsConfig.UpstreamRole,
|
role: UpstreamsConfig.UpstreamRole,
|
||||||
node: QuorumForLabels.QuorumItem,
|
node: QuorumForLabels.QuorumItem,
|
||||||
callMethods: CallMethods,
|
callMethods: CallMethods,
|
||||||
esploraClient: EsploraClient? = null
|
esploraClient: EsploraClient? = null,
|
||||||
) : BitcoinUpstream(id, chain, options, role, callMethods, node, esploraClient), Lifecycle {
|
chainConfig: ChainsConfig.ChainConfig
|
||||||
|
) : BitcoinUpstream(id, chain, options, role, callMethods, node, esploraClient, chainConfig), Lifecycle {
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private val log = LoggerFactory.getLogger(BitcoinRpcUpstream::class.java)
|
private val log = LoggerFactory.getLogger(BitcoinRpcUpstream::class.java)
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
package io.emeraldpay.dshackle.upstream.bitcoin
|
package io.emeraldpay.dshackle.upstream.bitcoin
|
||||||
|
|
||||||
import io.emeraldpay.dshackle.Chain
|
import io.emeraldpay.dshackle.Chain
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
||||||
import io.emeraldpay.dshackle.upstream.DefaultUpstream
|
import io.emeraldpay.dshackle.upstream.DefaultUpstream
|
||||||
@@ -30,15 +31,17 @@ abstract class BitcoinUpstream(
|
|||||||
role: UpstreamsConfig.UpstreamRole,
|
role: UpstreamsConfig.UpstreamRole,
|
||||||
callMethods: CallMethods,
|
callMethods: CallMethods,
|
||||||
node: QuorumForLabels.QuorumItem,
|
node: QuorumForLabels.QuorumItem,
|
||||||
val esploraClient: EsploraClient? = null
|
val esploraClient: EsploraClient? = null,
|
||||||
) : DefaultUpstream(id, 0.toByte(), options, role, callMethods, node) {
|
private val chainConfig: ChainsConfig.ChainConfig
|
||||||
|
) : DefaultUpstream(id, 0.toByte(), options, role, callMethods, node, chainConfig) {
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
id: String,
|
id: String,
|
||||||
chain: Chain,
|
chain: Chain,
|
||||||
options: UpstreamsConfig.Options,
|
options: UpstreamsConfig.Options,
|
||||||
role: UpstreamsConfig.UpstreamRole
|
role: UpstreamsConfig.UpstreamRole,
|
||||||
) : this(id, chain, options, role, DefaultBitcoinMethods(), QuorumForLabels.QuorumItem.empty())
|
chainConfig: ChainsConfig.ChainConfig
|
||||||
|
) : this(id, chain, options, role, DefaultBitcoinMethods(), QuorumForLabels.QuorumItem.empty(), null, chainConfig)
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private val log = LoggerFactory.getLogger(BitcoinUpstream::class.java)
|
private val log = LoggerFactory.getLogger(BitcoinUpstream::class.java)
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ package io.emeraldpay.dshackle.upstream.ethereum
|
|||||||
import io.emeraldpay.dshackle.Chain
|
import io.emeraldpay.dshackle.Chain
|
||||||
import io.emeraldpay.dshackle.cache.Caches
|
import io.emeraldpay.dshackle.cache.Caches
|
||||||
import io.emeraldpay.dshackle.cache.CachesEnabled
|
import io.emeraldpay.dshackle.cache.CachesEnabled
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.reader.JsonRpcReader
|
import io.emeraldpay.dshackle.reader.JsonRpcReader
|
||||||
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
||||||
@@ -40,8 +41,9 @@ open class EthereumRpcUpstream(
|
|||||||
role: UpstreamsConfig.UpstreamRole,
|
role: UpstreamsConfig.UpstreamRole,
|
||||||
targets: CallMethods?,
|
targets: CallMethods?,
|
||||||
private val node: QuorumForLabels.QuorumItem?,
|
private val node: QuorumForLabels.QuorumItem?,
|
||||||
connectorFactory: ConnectorFactory
|
connectorFactory: ConnectorFactory,
|
||||||
) : EthereumUpstream(id, hash, options, role, targets, node), Lifecycle, Upstream, CachesEnabled {
|
chainConfig: ChainsConfig.ChainConfig
|
||||||
|
) : EthereumUpstream(id, hash, options, role, targets, node, chainConfig), Lifecycle, Upstream, CachesEnabled {
|
||||||
private val log = LoggerFactory.getLogger(EthereumRpcUpstream::class.java)
|
private val log = LoggerFactory.getLogger(EthereumRpcUpstream::class.java)
|
||||||
private val validator: EthereumUpstreamValidator = EthereumUpstreamValidator(this, getOptions())
|
private val validator: EthereumUpstreamValidator = EthereumUpstreamValidator(this, getOptions())
|
||||||
private val connector: EthereumConnector = connectorFactory.create(this, validator, chain)
|
private val connector: EthereumConnector = connectorFactory.create(this, validator, chain)
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
package io.emeraldpay.dshackle.upstream.ethereum
|
package io.emeraldpay.dshackle.upstream.ethereum
|
||||||
|
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
||||||
import io.emeraldpay.dshackle.upstream.Capability
|
import io.emeraldpay.dshackle.upstream.Capability
|
||||||
@@ -28,8 +29,9 @@ abstract class EthereumUpstream(
|
|||||||
options: UpstreamsConfig.Options,
|
options: UpstreamsConfig.Options,
|
||||||
role: UpstreamsConfig.UpstreamRole,
|
role: UpstreamsConfig.UpstreamRole,
|
||||||
targets: CallMethods?,
|
targets: CallMethods?,
|
||||||
private val node: QuorumForLabels.QuorumItem?
|
private val node: QuorumForLabels.QuorumItem?,
|
||||||
) : DefaultUpstream(id, hash, options, role, targets, node) {
|
chainConfig: ChainsConfig.ChainConfig
|
||||||
|
) : DefaultUpstream(id, hash, options, role, targets, node, chainConfig) {
|
||||||
|
|
||||||
private val capabilities = if (options.providesBalance != false) {
|
private val capabilities = if (options.providesBalance != false) {
|
||||||
setOf(Capability.RPC, Capability.BALANCE)
|
setOf(Capability.RPC, Capability.BALANCE)
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ package io.emeraldpay.dshackle.upstream.ethereum
|
|||||||
import io.emeraldpay.dshackle.Chain
|
import io.emeraldpay.dshackle.Chain
|
||||||
import io.emeraldpay.dshackle.cache.Caches
|
import io.emeraldpay.dshackle.cache.Caches
|
||||||
import io.emeraldpay.dshackle.cache.CachesEnabled
|
import io.emeraldpay.dshackle.cache.CachesEnabled
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.reader.JsonRpcReader
|
import io.emeraldpay.dshackle.reader.JsonRpcReader
|
||||||
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
||||||
@@ -39,9 +40,10 @@ open class EthereumPosRpcUpstream(
|
|||||||
options: UpstreamsConfig.Options,
|
options: UpstreamsConfig.Options,
|
||||||
role: UpstreamsConfig.UpstreamRole,
|
role: UpstreamsConfig.UpstreamRole,
|
||||||
targets: CallMethods?,
|
targets: CallMethods?,
|
||||||
private val node: QuorumForLabels.QuorumItem?,
|
node: QuorumForLabels.QuorumItem?,
|
||||||
connectorFactory: ConnectorFactory
|
connectorFactory: ConnectorFactory,
|
||||||
) : EthereumPosUpstream(id, hash, options, role, targets, node), Lifecycle, Upstream, CachesEnabled {
|
chainConfig: ChainsConfig.ChainConfig
|
||||||
|
) : EthereumPosUpstream(id, hash, options, role, targets, node, chainConfig), Lifecycle, Upstream, CachesEnabled {
|
||||||
private val log = LoggerFactory.getLogger(EthereumPosRpcUpstream::class.java)
|
private val log = LoggerFactory.getLogger(EthereumPosRpcUpstream::class.java)
|
||||||
private val validator: EthereumUpstreamValidator = EthereumUpstreamValidator(this, getOptions())
|
private val validator: EthereumUpstreamValidator = EthereumUpstreamValidator(this, getOptions())
|
||||||
private val connector: EthereumConnector = connectorFactory.create(this, validator, chain)
|
private val connector: EthereumConnector = connectorFactory.create(this, validator, chain)
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
package io.emeraldpay.dshackle.upstream.ethereum
|
package io.emeraldpay.dshackle.upstream.ethereum
|
||||||
|
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
||||||
import io.emeraldpay.dshackle.upstream.Capability
|
import io.emeraldpay.dshackle.upstream.Capability
|
||||||
@@ -28,8 +29,9 @@ abstract class EthereumPosUpstream(
|
|||||||
options: UpstreamsConfig.Options,
|
options: UpstreamsConfig.Options,
|
||||||
role: UpstreamsConfig.UpstreamRole,
|
role: UpstreamsConfig.UpstreamRole,
|
||||||
targets: CallMethods?,
|
targets: CallMethods?,
|
||||||
private val node: QuorumForLabels.QuorumItem?
|
private val node: QuorumForLabels.QuorumItem?,
|
||||||
) : DefaultUpstream(id, hash, options, role, targets, node) {
|
chainConfig: ChainsConfig.ChainConfig
|
||||||
|
) : DefaultUpstream(id, hash, options, role, targets, node, chainConfig) {
|
||||||
|
|
||||||
private val capabilities = if (options.providesBalance != false) {
|
private val capabilities = if (options.providesBalance != false) {
|
||||||
setOf(Capability.RPC, Capability.BALANCE)
|
setOf(Capability.RPC, Capability.BALANCE)
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ import io.emeraldpay.api.proto.BlockchainOuterClass
|
|||||||
import io.emeraldpay.api.proto.ReactorBlockchainGrpc
|
import io.emeraldpay.api.proto.ReactorBlockchainGrpc
|
||||||
import io.emeraldpay.dshackle.Chain
|
import io.emeraldpay.dshackle.Chain
|
||||||
import io.emeraldpay.dshackle.Defaults
|
import io.emeraldpay.dshackle.Defaults
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.data.BlockContainer
|
import io.emeraldpay.dshackle.data.BlockContainer
|
||||||
import io.emeraldpay.dshackle.data.BlockId
|
import io.emeraldpay.dshackle.data.BlockId
|
||||||
@@ -51,12 +52,14 @@ class BitcoinGrpcUpstream(
|
|||||||
chain: Chain,
|
chain: Chain,
|
||||||
val remote: ReactorBlockchainGrpc.ReactorBlockchainStub,
|
val remote: ReactorBlockchainGrpc.ReactorBlockchainStub,
|
||||||
private val client: JsonRpcGrpcClient,
|
private val client: JsonRpcGrpcClient,
|
||||||
overrideLabels: UpstreamsConfig.Labels?
|
overrideLabels: UpstreamsConfig.Labels?,
|
||||||
|
chainConfig: ChainsConfig.ChainConfig
|
||||||
) : BitcoinUpstream(
|
) : BitcoinUpstream(
|
||||||
"${parentId}_${chain.chainCode.lowercase(Locale.getDefault())}",
|
"${parentId}_${chain.chainCode.lowercase(Locale.getDefault())}",
|
||||||
chain,
|
chain,
|
||||||
UpstreamsConfig.Options.getDefaults(),
|
UpstreamsConfig.Options.getDefaults(),
|
||||||
role
|
role,
|
||||||
|
chainConfig
|
||||||
),
|
),
|
||||||
GrpcUpstream,
|
GrpcUpstream,
|
||||||
Lifecycle {
|
Lifecycle {
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ import io.emeraldpay.api.proto.BlockchainOuterClass
|
|||||||
import io.emeraldpay.api.proto.ReactorBlockchainGrpc.ReactorBlockchainStub
|
import io.emeraldpay.api.proto.ReactorBlockchainGrpc.ReactorBlockchainStub
|
||||||
import io.emeraldpay.dshackle.Chain
|
import io.emeraldpay.dshackle.Chain
|
||||||
import io.emeraldpay.dshackle.Defaults
|
import io.emeraldpay.dshackle.Defaults
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.data.BlockContainer
|
import io.emeraldpay.dshackle.data.BlockContainer
|
||||||
import io.emeraldpay.dshackle.data.BlockId
|
import io.emeraldpay.dshackle.data.BlockId
|
||||||
@@ -57,14 +58,16 @@ open class EthereumGrpcUpstream(
|
|||||||
private val chain: Chain,
|
private val chain: Chain,
|
||||||
private val remote: ReactorBlockchainStub,
|
private val remote: ReactorBlockchainStub,
|
||||||
private val client: JsonRpcGrpcClient,
|
private val client: JsonRpcGrpcClient,
|
||||||
overrideLabels: UpstreamsConfig.Labels?
|
overrideLabels: UpstreamsConfig.Labels?,
|
||||||
|
chainConfig: ChainsConfig.ChainConfig
|
||||||
) : EthereumUpstream(
|
) : EthereumUpstream(
|
||||||
"${parentId}_${chain.chainCode.lowercase(Locale.getDefault())}",
|
"${parentId}_${chain.chainCode.lowercase(Locale.getDefault())}",
|
||||||
hash,
|
hash,
|
||||||
UpstreamsConfig.Options.getDefaults(),
|
UpstreamsConfig.Options.getDefaults(),
|
||||||
role,
|
role,
|
||||||
null,
|
null,
|
||||||
null
|
null,
|
||||||
|
chainConfig
|
||||||
),
|
),
|
||||||
GrpcUpstream,
|
GrpcUpstream,
|
||||||
Lifecycle {
|
Lifecycle {
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ import io.emeraldpay.api.proto.BlockchainOuterClass
|
|||||||
import io.emeraldpay.api.proto.ReactorBlockchainGrpc
|
import io.emeraldpay.api.proto.ReactorBlockchainGrpc
|
||||||
import io.emeraldpay.dshackle.Chain
|
import io.emeraldpay.dshackle.Chain
|
||||||
import io.emeraldpay.dshackle.Defaults
|
import io.emeraldpay.dshackle.Defaults
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.data.BlockContainer
|
import io.emeraldpay.dshackle.data.BlockContainer
|
||||||
import io.emeraldpay.dshackle.data.BlockId
|
import io.emeraldpay.dshackle.data.BlockId
|
||||||
@@ -58,13 +59,16 @@ open class EthereumPosGrpcUpstream(
|
|||||||
private val remote: ReactorBlockchainGrpc.ReactorBlockchainStub,
|
private val remote: ReactorBlockchainGrpc.ReactorBlockchainStub,
|
||||||
client: JsonRpcGrpcClient,
|
client: JsonRpcGrpcClient,
|
||||||
nodeRating: Int,
|
nodeRating: Int,
|
||||||
overrideLabels: UpstreamsConfig.Labels?
|
overrideLabels: UpstreamsConfig.Labels?,
|
||||||
|
chainConfig: ChainsConfig.ChainConfig
|
||||||
) : EthereumPosUpstream(
|
) : EthereumPosUpstream(
|
||||||
"${parentId}_${chain.chainCode.lowercase(Locale.getDefault())}",
|
"${parentId}_${chain.chainCode.lowercase(Locale.getDefault())}",
|
||||||
hash,
|
hash,
|
||||||
UpstreamsConfig.Options.getDefaults(),
|
UpstreamsConfig.Options.getDefaults(),
|
||||||
role,
|
role,
|
||||||
null, null
|
null,
|
||||||
|
null,
|
||||||
|
chainConfig
|
||||||
),
|
),
|
||||||
GrpcUpstream,
|
GrpcUpstream,
|
||||||
Lifecycle {
|
Lifecycle {
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ import io.emeraldpay.dshackle.Chain
|
|||||||
import io.emeraldpay.dshackle.Defaults
|
import io.emeraldpay.dshackle.Defaults
|
||||||
import io.emeraldpay.dshackle.FileResolver
|
import io.emeraldpay.dshackle.FileResolver
|
||||||
import io.emeraldpay.dshackle.config.AuthConfig
|
import io.emeraldpay.dshackle.config.AuthConfig
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.startup.UpstreamChangeEvent
|
import io.emeraldpay.dshackle.startup.UpstreamChangeEvent
|
||||||
import io.emeraldpay.dshackle.upstream.DefaultUpstream
|
import io.emeraldpay.dshackle.upstream.DefaultUpstream
|
||||||
@@ -64,7 +65,8 @@ class GrpcUpstreams(
|
|||||||
private val nodeRating: Int,
|
private val nodeRating: Int,
|
||||||
private val labels: UpstreamsConfig.Labels,
|
private val labels: UpstreamsConfig.Labels,
|
||||||
private val chainStatusScheduler: Scheduler,
|
private val chainStatusScheduler: Scheduler,
|
||||||
private val grpcExecutor: Executor
|
private val grpcExecutor: Executor,
|
||||||
|
private val chainsConfig: ChainsConfig
|
||||||
) {
|
) {
|
||||||
private val log = LoggerFactory.getLogger(GrpcUpstreams::class.java)
|
private val log = LoggerFactory.getLogger(GrpcUpstreams::class.java)
|
||||||
|
|
||||||
@@ -185,13 +187,13 @@ class GrpcUpstreams(
|
|||||||
|
|
||||||
private val creators: Map<BlockchainType, (chain: Chain, client: JsonRpcGrpcClient) -> DefaultUpstream> = mapOf(
|
private val creators: Map<BlockchainType, (chain: Chain, client: JsonRpcGrpcClient) -> DefaultUpstream> = mapOf(
|
||||||
BlockchainType.EVM_POW to { chain, rpcClient ->
|
BlockchainType.EVM_POW to { chain, rpcClient ->
|
||||||
EthereumGrpcUpstream(id, hash, role, chain, client, rpcClient, labels)
|
EthereumGrpcUpstream(id, hash, role, chain, client, rpcClient, labels, chainsConfig.resolve(chain))
|
||||||
},
|
},
|
||||||
BlockchainType.EVM_POS to { chain, rpcClient ->
|
BlockchainType.EVM_POS to { chain, rpcClient ->
|
||||||
EthereumPosGrpcUpstream(id, hash, role, chain, client, rpcClient, nodeRating, labels)
|
EthereumPosGrpcUpstream(id, hash, role, chain, client, rpcClient, nodeRating, labels, chainsConfig.resolve(chain))
|
||||||
},
|
},
|
||||||
BlockchainType.BITCOIN to { chain, rpcClient ->
|
BlockchainType.BITCOIN to { chain, rpcClient ->
|
||||||
BitcoinGrpcUpstream(id, role, chain, client, rpcClient, labels)
|
BitcoinGrpcUpstream(id, role, chain, client, rpcClient, labels, chainsConfig.resolve(chain))
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,40 @@
|
|||||||
|
/**
|
||||||
|
* Copyright (c) 2019 ETCDEV GmbH
|
||||||
|
* Copyright (c) 2020 EmeraldPay, 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.emeraldpay.dshackle.config
|
||||||
|
|
||||||
|
import io.emeraldpay.dshackle.Chain
|
||||||
|
import spock.lang.Specification
|
||||||
|
|
||||||
|
class ChainsConfigReaderSpec extends Specification {
|
||||||
|
|
||||||
|
ChainsConfigReader reader = new ChainsConfigReader()
|
||||||
|
|
||||||
|
def "Parse standard config"() {
|
||||||
|
setup:
|
||||||
|
def stream = this.class.getClassLoader().getResourceAsStream("configs/chains-basic.yaml")
|
||||||
|
when:
|
||||||
|
def config = reader.read(stream)
|
||||||
|
def act = config.resolve(Chain.ETHEREUM)
|
||||||
|
def act2 = config.resolve(Chain.POLYGON)
|
||||||
|
then:
|
||||||
|
act.laggingLagSize == 5
|
||||||
|
act.syncingLagSize == 10
|
||||||
|
|
||||||
|
act2.laggingLagSize == 1
|
||||||
|
act2.syncingLagSize == 6
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
package io.emeraldpay.dshackle.startup
|
package io.emeraldpay.dshackle.startup
|
||||||
|
|
||||||
import io.emeraldpay.dshackle.FileResolver
|
import io.emeraldpay.dshackle.FileResolver
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.quorum.NonEmptyQuorum
|
import io.emeraldpay.dshackle.quorum.NonEmptyQuorum
|
||||||
import io.emeraldpay.dshackle.upstream.CallTargetsHolder
|
import io.emeraldpay.dshackle.upstream.CallTargetsHolder
|
||||||
@@ -23,7 +24,8 @@ class ConfiguredUpstreamsSpec extends Specification {
|
|||||||
Stub(UpstreamsConfig),
|
Stub(UpstreamsConfig),
|
||||||
callTargetsHolder,
|
callTargetsHolder,
|
||||||
Mock(ApplicationEventPublisher),
|
Mock(ApplicationEventPublisher),
|
||||||
Executors.newFixedThreadPool(1)
|
Executors.newFixedThreadPool(1),
|
||||||
|
ChainsConfig.default()
|
||||||
)
|
)
|
||||||
def methods = new UpstreamsConfig.Methods(
|
def methods = new UpstreamsConfig.Methods(
|
||||||
[
|
[
|
||||||
@@ -49,7 +51,8 @@ class ConfiguredUpstreamsSpec extends Specification {
|
|||||||
Stub(UpstreamsConfig),
|
Stub(UpstreamsConfig),
|
||||||
callTargetsHolder,
|
callTargetsHolder,
|
||||||
Mock(ApplicationEventPublisher),
|
Mock(ApplicationEventPublisher),
|
||||||
Executors.newFixedThreadPool(1)
|
Executors.newFixedThreadPool(1),
|
||||||
|
ChainsConfig.default()
|
||||||
)
|
)
|
||||||
def methods = new UpstreamsConfig.Methods(
|
def methods = new UpstreamsConfig.Methods(
|
||||||
[
|
[
|
||||||
@@ -74,7 +77,8 @@ class ConfiguredUpstreamsSpec extends Specification {
|
|||||||
Stub(UpstreamsConfig),
|
Stub(UpstreamsConfig),
|
||||||
callTargetsHolder,
|
callTargetsHolder,
|
||||||
Mock(ApplicationEventPublisher),
|
Mock(ApplicationEventPublisher),
|
||||||
Executors.newFixedThreadPool(1)
|
Executors.newFixedThreadPool(1),
|
||||||
|
ChainsConfig.default()
|
||||||
)
|
)
|
||||||
expect:
|
expect:
|
||||||
configurer.getHash(node, src) == expected
|
configurer.getHash(node, src) == expected
|
||||||
@@ -94,7 +98,8 @@ class ConfiguredUpstreamsSpec extends Specification {
|
|||||||
Stub(UpstreamsConfig),
|
Stub(UpstreamsConfig),
|
||||||
callTargetsHolder,
|
callTargetsHolder,
|
||||||
Mock(ApplicationEventPublisher),
|
Mock(ApplicationEventPublisher),
|
||||||
Executors.newFixedThreadPool(1)
|
Executors.newFixedThreadPool(1),
|
||||||
|
ChainsConfig.default()
|
||||||
)
|
)
|
||||||
when:
|
when:
|
||||||
def h1 = configurer.getHash(null, "hohoho")
|
def h1 = configurer.getHash(null, "hohoho")
|
||||||
@@ -119,7 +124,8 @@ class ConfiguredUpstreamsSpec extends Specification {
|
|||||||
Stub(UpstreamsConfig),
|
Stub(UpstreamsConfig),
|
||||||
callTargetsHolder,
|
callTargetsHolder,
|
||||||
Mock(ApplicationEventPublisher),
|
Mock(ApplicationEventPublisher),
|
||||||
Executors.newFixedThreadPool(1)
|
Executors.newFixedThreadPool(1),
|
||||||
|
ChainsConfig.default()
|
||||||
)
|
)
|
||||||
def methodsGroup = new UpstreamsConfig.MethodGroups(
|
def methodsGroup = new UpstreamsConfig.MethodGroups(
|
||||||
["filter"] as Set,
|
["filter"] as Set,
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
package io.emeraldpay.dshackle.test
|
package io.emeraldpay.dshackle.test
|
||||||
|
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.data.BlockContainer
|
import io.emeraldpay.dshackle.data.BlockContainer
|
||||||
import io.emeraldpay.dshackle.upstream.calls.AggregatedCallMethods
|
import io.emeraldpay.dshackle.upstream.calls.AggregatedCallMethods
|
||||||
@@ -73,7 +73,8 @@ class EthereumPosRpcUpstreamMock extends EthereumPosRpcUpstream {
|
|||||||
UpstreamsConfig.UpstreamRole.PRIMARY,
|
UpstreamsConfig.UpstreamRole.PRIMARY,
|
||||||
methods,
|
methods,
|
||||||
new QuorumForLabels.QuorumItem(1, UpstreamsConfig.Labels.fromMap(labels)),
|
new QuorumForLabels.QuorumItem(1, UpstreamsConfig.Labels.fromMap(labels)),
|
||||||
new ConnectorFactoryMock(api, new EthereumHeadMock()))
|
new ConnectorFactoryMock(api, new EthereumHeadMock()),
|
||||||
|
ChainsConfig.ChainConfig.default())
|
||||||
this.ethereumHeadMock = this.getHead() as EthereumHeadMock
|
this.ethereumHeadMock = this.getHead() as EthereumHeadMock
|
||||||
setLag(0)
|
setLag(0)
|
||||||
setStatus(UpstreamAvailability.OK)
|
setStatus(UpstreamAvailability.OK)
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
package io.emeraldpay.dshackle.test
|
package io.emeraldpay.dshackle.test
|
||||||
|
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.data.BlockContainer
|
import io.emeraldpay.dshackle.data.BlockContainer
|
||||||
import io.emeraldpay.dshackle.upstream.calls.AggregatedCallMethods
|
import io.emeraldpay.dshackle.upstream.calls.AggregatedCallMethods
|
||||||
@@ -65,7 +65,8 @@ class EthereumRpcUpstreamMock extends EthereumRpcUpstream {
|
|||||||
UpstreamsConfig.UpstreamRole.PRIMARY,
|
UpstreamsConfig.UpstreamRole.PRIMARY,
|
||||||
methods,
|
methods,
|
||||||
new QuorumForLabels.QuorumItem(1, new UpstreamsConfig.Labels()),
|
new QuorumForLabels.QuorumItem(1, new UpstreamsConfig.Labels()),
|
||||||
new ConnectorFactoryMock(api, new EthereumHeadMock()))
|
new ConnectorFactoryMock(api, new EthereumHeadMock()),
|
||||||
|
ChainsConfig.ChainConfig.default())
|
||||||
this.ethereumHeadMock = this.getHead() as EthereumHeadMock
|
this.ethereumHeadMock = this.getHead() as EthereumHeadMock
|
||||||
setLag(0)
|
setLag(0)
|
||||||
setStatus(UpstreamAvailability.OK)
|
setStatus(UpstreamAvailability.OK)
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
package io.emeraldpay.dshackle.upstream
|
package io.emeraldpay.dshackle.upstream
|
||||||
|
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
import io.emeraldpay.dshackle.startup.QuorumForLabels
|
||||||
import io.emeraldpay.dshackle.test.EthereumApiStub
|
import io.emeraldpay.dshackle.test.EthereumApiStub
|
||||||
@@ -57,7 +58,8 @@ class FilteredApisSpec extends Specification {
|
|||||||
UpstreamsConfig.UpstreamRole.PRIMARY,
|
UpstreamsConfig.UpstreamRole.PRIMARY,
|
||||||
ethereumTargets,
|
ethereumTargets,
|
||||||
new QuorumForLabels.QuorumItem(1, UpstreamsConfig.Labels.fromMap(it)),
|
new QuorumForLabels.QuorumItem(1, UpstreamsConfig.Labels.fromMap(it)),
|
||||||
connectorFactory
|
connectorFactory,
|
||||||
|
ChainsConfig.ChainConfig.default()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
def matcher = new Selector.LabelMatcher("test", ["foo"])
|
def matcher = new Selector.LabelMatcher("test", ["foo"])
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ import io.emeraldpay.api.proto.BlockchainGrpc
|
|||||||
import io.emeraldpay.api.proto.BlockchainOuterClass
|
import io.emeraldpay.api.proto.BlockchainOuterClass
|
||||||
import io.emeraldpay.api.proto.Common
|
import io.emeraldpay.api.proto.Common
|
||||||
import io.emeraldpay.dshackle.Global
|
import io.emeraldpay.dshackle.Global
|
||||||
|
import io.emeraldpay.dshackle.config.ChainsConfig
|
||||||
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
import io.emeraldpay.dshackle.config.UpstreamsConfig
|
||||||
import io.emeraldpay.dshackle.data.BlockId
|
import io.emeraldpay.dshackle.data.BlockId
|
||||||
import io.emeraldpay.dshackle.test.MockGrpcServer
|
import io.emeraldpay.dshackle.test.MockGrpcServer
|
||||||
@@ -83,7 +84,7 @@ class EthereumGrpcUpstreamSpec extends Specification {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
def upstream = new EthereumGrpcUpstream("test", hash, UpstreamsConfig.UpstreamRole.PRIMARY, chain, client, new JsonRpcGrpcClient(client, chain, metrics), null)
|
def upstream = new EthereumGrpcUpstream("test", hash, UpstreamsConfig.UpstreamRole.PRIMARY, chain, client, new JsonRpcGrpcClient(client, chain, metrics), null, ChainsConfig.ChainConfig.default())
|
||||||
upstream.setLag(0)
|
upstream.setLag(0)
|
||||||
upstream.update(BlockchainOuterClass.DescribeChain.newBuilder()
|
upstream.update(BlockchainOuterClass.DescribeChain.newBuilder()
|
||||||
.setStatus(BlockchainOuterClass.ChainStatus.newBuilder().setQuorum(1).setAvailabilityValue(UpstreamAvailability.OK.grpcId))
|
.setStatus(BlockchainOuterClass.ChainStatus.newBuilder().setQuorum(1).setAvailabilityValue(UpstreamAvailability.OK.grpcId))
|
||||||
@@ -141,7 +142,7 @@ class EthereumGrpcUpstreamSpec extends Specification {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
def upstream = new EthereumGrpcUpstream("test", hash, UpstreamsConfig.UpstreamRole.PRIMARY, Chain.ETHEREUM, client, new JsonRpcGrpcClient(client, Chain.ETHEREUM, metrics), null)
|
def upstream = new EthereumGrpcUpstream("test", hash, UpstreamsConfig.UpstreamRole.PRIMARY, Chain.ETHEREUM, client, new JsonRpcGrpcClient(client, Chain.ETHEREUM, metrics), null, ChainsConfig.ChainConfig.default())
|
||||||
upstream.setLag(0)
|
upstream.setLag(0)
|
||||||
upstream.update(BlockchainOuterClass.DescribeChain.newBuilder()
|
upstream.update(BlockchainOuterClass.DescribeChain.newBuilder()
|
||||||
.setStatus(BlockchainOuterClass.ChainStatus.newBuilder().setQuorum(1).setAvailabilityValue(UpstreamAvailability.OK.grpcId))
|
.setStatus(BlockchainOuterClass.ChainStatus.newBuilder().setQuorum(1).setAvailabilityValue(UpstreamAvailability.OK.grpcId))
|
||||||
@@ -203,7 +204,7 @@ class EthereumGrpcUpstreamSpec extends Specification {
|
|||||||
finished.complete(true)
|
finished.complete(true)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
def upstream = new EthereumGrpcUpstream("test", hash, UpstreamsConfig.UpstreamRole.PRIMARY, chain, client, new JsonRpcGrpcClient(client, chain, metrics), null)
|
def upstream = new EthereumGrpcUpstream("test", hash, UpstreamsConfig.UpstreamRole.PRIMARY, chain, client, new JsonRpcGrpcClient(client, chain, metrics), null, ChainsConfig.ChainConfig.default())
|
||||||
upstream.setLag(0)
|
upstream.setLag(0)
|
||||||
upstream.update(BlockchainOuterClass.DescribeChain.newBuilder()
|
upstream.update(BlockchainOuterClass.DescribeChain.newBuilder()
|
||||||
.setStatus(BlockchainOuterClass.ChainStatus.newBuilder().setQuorum(1).setAvailabilityValue(UpstreamAvailability.OK.grpcId))
|
.setStatus(BlockchainOuterClass.ChainStatus.newBuilder().setQuorum(1).setAvailabilityValue(UpstreamAvailability.OK.grpcId))
|
||||||
|
|||||||
7
src/test/resources/configs/chains-basic.yaml
Normal file
7
src/test/resources/configs/chains-basic.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
version: v1
|
||||||
|
|
||||||
|
chains:
|
||||||
|
- name: eth
|
||||||
|
syncing-size: 10
|
||||||
|
lagging-size: 5
|
||||||
|
|
||||||
Reference in New Issue
Block a user