
Security News
Rspack Introduces Rslint, a TypeScript-First Linter Written in Go
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
sequel-replica-failover
Advanced tools
This provides a NOT-THREADSAFE sharded connection pool for failing over between configured replicas.
The mechanisms it provides are as follows:
:pool_retry_count
times afterwhich it will raise the exception that triggered the failover.:pool_stick_timeout
(in seconds) after which it will
try connecting back to a replica.Add this line to your application's Gemfile:
gem 'sequel-replica-failover'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sequel-replica-failover
When initializing a Sequel connection, set the pool class:
DB = Sequel.connect({
:adapter => 'postgres',
:user => 'postgres',
:password => 'postgres',
:host => '127.0.0.1',
:database => 'postgres',
:port => 5432,
:pool_class => Sequel::ShardedSingleFailoverConnectionPool,
:pool_retry_count => 10,
:pool_stick_timeout => 30
})
Please note that if you were to open a transaction on a :read_only
connection,
queries could be retried on a different connection. Why one would open a transaction
on a :read_only
connection is unclear to us, but it is possible and a concern to
be aware of.
The connection pool allows for user-defined callbacks when a query is retried as well
as when the retry logic is reset (on timeout or on retry count). Callbacks should be
a Proc
, or something that ducktypes to one.
Callbacks to retry take an error
object and a pool
, as follows:
Sequel::ShardedSingleFailoverConnectionPool.register_on_retry_callback ->(error, pool) {
ReportingTool.notify(error)
puts pool.inspect
puts pool.failing_over?
}
Callbacks on reset take a pool
object, as follows:
Sequel::ShardedSingleFailoverConnectionPool.register_on_reset_callback ->(pool) {
puts pool.inspect
}
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that sequel-replica-failover demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.