Store stard status in the database
This commit is contained in:
parent
26dc69e5a4
commit
ae9ed0f4ee
@ -2,6 +2,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net.WebSockets;
|
using System.Net.WebSockets;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
using App.Metrics;
|
using App.Metrics;
|
||||||
|
|
||||||
@ -10,6 +11,8 @@ using Myriad.Gateway;
|
|||||||
using NodaTime;
|
using NodaTime;
|
||||||
using NodaTime.Extensions;
|
using NodaTime.Extensions;
|
||||||
|
|
||||||
|
using PluralKit.Core;
|
||||||
|
|
||||||
using Serilog;
|
using Serilog;
|
||||||
|
|
||||||
namespace PluralKit.Bot
|
namespace PluralKit.Bot
|
||||||
@ -33,10 +36,15 @@ namespace PluralKit.Bot
|
|||||||
private readonly Cluster _client;
|
private readonly Cluster _client;
|
||||||
private readonly Dictionary<int, ShardInfo> _shardInfo = new();
|
private readonly Dictionary<int, ShardInfo> _shardInfo = new();
|
||||||
|
|
||||||
public ShardInfoService(ILogger logger, Cluster client, IMetrics metrics)
|
private readonly IDatabase _db;
|
||||||
|
private readonly ModelRepository _repo;
|
||||||
|
|
||||||
|
public ShardInfoService(ILogger logger, Cluster client, IMetrics metrics, IDatabase db, ModelRepository repo)
|
||||||
{
|
{
|
||||||
_client = client;
|
_client = client;
|
||||||
_metrics = metrics;
|
_metrics = metrics;
|
||||||
|
_db = db;
|
||||||
|
_repo = repo;
|
||||||
_logger = logger.ForContext<ShardInfoService>();
|
_logger = logger.ForContext<ShardInfoService>();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,8 +75,8 @@ namespace PluralKit.Bot
|
|||||||
// Call our own SocketOpened listener manually (and then attach the listener properly)
|
// Call our own SocketOpened listener manually (and then attach the listener properly)
|
||||||
|
|
||||||
// Register listeners for new shards
|
// Register listeners for new shards
|
||||||
shard.Resumed += () => Resumed(shard);
|
shard.Resumed += () => ReadyOrResumed(shard);
|
||||||
shard.Ready += () => Ready(shard);
|
shard.Ready += () => ReadyOrResumed(shard);
|
||||||
shard.SocketClosed += (closeStatus, message) => SocketClosed(shard, closeStatus, message);
|
shard.SocketClosed += (closeStatus, message) => SocketClosed(shard, closeStatus, message);
|
||||||
shard.HeartbeatReceived += latency => Heartbeated(shard, latency);
|
shard.HeartbeatReceived += latency => Heartbeated(shard, latency);
|
||||||
|
|
||||||
@ -86,20 +94,18 @@ namespace PluralKit.Bot
|
|||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Resumed(Shard shard)
|
private void ReadyOrResumed(Shard shard)
|
||||||
{
|
{
|
||||||
var info = TryGetShard(shard);
|
var info = TryGetShard(shard);
|
||||||
info.LastConnectionTime = SystemClock.Instance.GetCurrentInstant();
|
info.LastConnectionTime = SystemClock.Instance.GetCurrentInstant();
|
||||||
info.Connected = true;
|
info.Connected = true;
|
||||||
ReportShardStatus();
|
ReportShardStatus();
|
||||||
}
|
|
||||||
|
|
||||||
private void Ready(Shard shard)
|
_ = ExecuteWithDatabase(async c =>
|
||||||
{
|
{
|
||||||
var info = TryGetShard(shard);
|
await _repo.SetShardStatus(c, shard.ShardId, PKShardInfo.ShardStatus.Up);
|
||||||
info.LastConnectionTime = SystemClock.Instance.GetCurrentInstant();
|
await _repo.RegisterShardConnection(c, shard.ShardId);
|
||||||
info.Connected = true;
|
});
|
||||||
ReportShardStatus();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SocketClosed(Shard shard, WebSocketCloseStatus? closeStatus, string message)
|
private void SocketClosed(Shard shard, WebSocketCloseStatus? closeStatus, string message)
|
||||||
@ -108,6 +114,9 @@ namespace PluralKit.Bot
|
|||||||
info.DisconnectionCount++;
|
info.DisconnectionCount++;
|
||||||
info.Connected = false;
|
info.Connected = false;
|
||||||
ReportShardStatus();
|
ReportShardStatus();
|
||||||
|
|
||||||
|
_ = ExecuteWithDatabase(c =>
|
||||||
|
_repo.SetShardStatus(c, shard.ShardId, PKShardInfo.ShardStatus.Down));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Heartbeated(Shard shard, TimeSpan latency)
|
private void Heartbeated(Shard shard, TimeSpan latency)
|
||||||
@ -116,6 +125,23 @@ namespace PluralKit.Bot
|
|||||||
info.LastHeartbeatTime = SystemClock.Instance.GetCurrentInstant();
|
info.LastHeartbeatTime = SystemClock.Instance.GetCurrentInstant();
|
||||||
info.Connected = true;
|
info.Connected = true;
|
||||||
info.ShardLatency = latency.ToDuration();
|
info.ShardLatency = latency.ToDuration();
|
||||||
|
|
||||||
|
_ = ExecuteWithDatabase(c =>
|
||||||
|
_repo.RegisterShardHeartbeat(c, shard.ShardId, latency.ToDuration()));
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task ExecuteWithDatabase(Func<IPKConnection, Task> fn)
|
||||||
|
{
|
||||||
|
// wrapper function to log errors because we "async void" it at call site :(
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await using var conn = await _db.Obtain();
|
||||||
|
await fn(conn);
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
_logger.Error(e, "Error persisting shard status");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public ShardInfo GetShardInfo(Shard shard) => _shardInfo[shard.ShardId];
|
public ShardInfo GetShardInfo(Shard shard) => _shardInfo[shard.ShardId];
|
||||||
|
@ -19,7 +19,7 @@ namespace PluralKit.Core
|
|||||||
internal class Database: IDatabase
|
internal class Database: IDatabase
|
||||||
{
|
{
|
||||||
private const string RootPath = "PluralKit.Core.Database"; // "resource path" root for SQL files
|
private const string RootPath = "PluralKit.Core.Database"; // "resource path" root for SQL files
|
||||||
private const int TargetSchemaVersion = 13;
|
private const int TargetSchemaVersion = 14;
|
||||||
|
|
||||||
private readonly CoreConfig _config;
|
private readonly CoreConfig _config;
|
||||||
private readonly ILogger _logger;
|
private readonly ILogger _logger;
|
||||||
|
15
PluralKit.Core/Database/Migrations/14.sql
Normal file
15
PluralKit.Core/Database/Migrations/14.sql
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
-- SCHEMA VERSION 14: 2021-06-10 --
|
||||||
|
-- Add shard status table --
|
||||||
|
|
||||||
|
create table shards (
|
||||||
|
id int not null primary key,
|
||||||
|
|
||||||
|
-- 0 = down, 1 = up
|
||||||
|
status smallint not null default 0,
|
||||||
|
|
||||||
|
ping float,
|
||||||
|
last_heartbeat timestamptz,
|
||||||
|
last_connection timestamptz
|
||||||
|
);
|
||||||
|
|
||||||
|
update info set schema_version = 14;
|
30
PluralKit.Core/Database/Repository/ModelRepository.Shards.cs
Normal file
30
PluralKit.Core/Database/Repository/ModelRepository.Shards.cs
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
using Dapper;
|
||||||
|
|
||||||
|
using NodaTime;
|
||||||
|
|
||||||
|
namespace PluralKit.Core
|
||||||
|
{
|
||||||
|
public partial class ModelRepository
|
||||||
|
{
|
||||||
|
public Task<IEnumerable<PKShardInfo>> GetShards(IPKConnection conn) =>
|
||||||
|
conn.QueryAsync<PKShardInfo>("select * from shards");
|
||||||
|
|
||||||
|
public Task SetShardStatus(IPKConnection conn, int shard, PKShardInfo.ShardStatus status) =>
|
||||||
|
conn.ExecuteAsync(
|
||||||
|
"insert into shards (id, status) values (@Id, @Status) on conflict (id) do update set status = @Status",
|
||||||
|
new {Id = shard, Status = status});
|
||||||
|
|
||||||
|
public Task RegisterShardHeartbeat(IPKConnection conn, int shard, Duration ping) =>
|
||||||
|
conn.ExecuteAsync(
|
||||||
|
"insert into shards (id, last_heartbeat, ping) values (@Id, now(), @Ping) on conflict (id) do update set last_heartbeat = now(), ping = @Ping",
|
||||||
|
new {Id = shard, Ping = ping.TotalSeconds});
|
||||||
|
|
||||||
|
public Task RegisterShardConnection(IPKConnection conn, int shard) =>
|
||||||
|
conn.ExecuteAsync(
|
||||||
|
"insert into shards (id, last_connection) values (@Id, now()) on conflict (id) do update set last_connection = now()",
|
||||||
|
new {Id = shard});
|
||||||
|
}
|
||||||
|
}
|
19
PluralKit.Core/Models/PKShardInfo.cs
Normal file
19
PluralKit.Core/Models/PKShardInfo.cs
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
using NodaTime;
|
||||||
|
|
||||||
|
namespace PluralKit.Core
|
||||||
|
{
|
||||||
|
public class PKShardInfo
|
||||||
|
{
|
||||||
|
public int Id { get; }
|
||||||
|
public ShardStatus Status { get; }
|
||||||
|
public float? Ping { get; }
|
||||||
|
public Instant? LastHeartbeat { get; }
|
||||||
|
public Instant? LastConnection { get; }
|
||||||
|
|
||||||
|
public enum ShardStatus
|
||||||
|
{
|
||||||
|
Down = 0,
|
||||||
|
Up = 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user