Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions ydb/core/fq/libs/init/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ void Init(
yqSharedResources->UserSpaceYdbDriver,
appData->Mon,
appData->Counters,
MakeNodesManagerId());
MakeNodesManagerId(),
true);
actorRegistrator(NFq::RowDispatcherServiceActorId(), rowDispatcher.release());
}

Expand All @@ -259,15 +260,15 @@ void Init(
);
auto pqGateway = pqGatewayFactory ? pqGatewayFactory->CreatePqGateway() : NYql::CreatePqNativeGateway(std::move(pqServices));
RegisterDqPqReadActorFactory(*asyncIoFactory, yqSharedResources->UserSpaceYdbDriver, credentialsFactory, pqGateway,
yqCounters->GetSubgroup("subsystem", "DqSourceTracker"), commonConfig.GetPqReconnectPeriod());
yqCounters->GetSubgroup("subsystem", "DqSourceTracker"), commonConfig.GetPqReconnectPeriod(), true);

s3ActorsFactory->RegisterS3ReadActorFactory(*asyncIoFactory, credentialsFactory, httpGateway, s3HttpRetryPolicy, readActorFactoryCfg,
yqCounters->GetSubgroup("subsystem", "S3ReadActor"), protoConfig.GetGateways().GetS3().GetAllowLocalFiles());
s3ActorsFactory->RegisterS3WriteActorFactory(*asyncIoFactory, credentialsFactory,
httpGateway, s3HttpRetryPolicy);

RegisterGenericProviderFactories(*asyncIoFactory, credentialsFactory, connectorClient);
RegisterDqPqWriteActorFactory(*asyncIoFactory, yqSharedResources->UserSpaceYdbDriver, credentialsFactory, pqGateway, yqCounters->GetSubgroup("subsystem", "DqSinkTracker"));
RegisterDqPqWriteActorFactory(*asyncIoFactory, yqSharedResources->UserSpaceYdbDriver, credentialsFactory, pqGateway, yqCounters->GetSubgroup("subsystem", "DqSinkTracker"), true);
RegisterDQSolomonWriteActorFactory(*asyncIoFactory, credentialsFactory);
RegisterDQSolomonReadActorFactory(*asyncIoFactory, credentialsFactory);
}
Expand Down
6 changes: 4 additions & 2 deletions ydb/core/fq/libs/row_dispatcher/actors_factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ struct TActorFactory : public IActorFactory {
const ::NMonitoring::TDynamicCounterPtr& counters,
const ::NMonitoring::TDynamicCounterPtr& countersRoot,
const NYql::IPqGateway::TPtr& pqGateway,
ui64 maxBufferSize) const override {
ui64 maxBufferSize,
bool enableStreamingQueriesCounters) const override {

auto actorPtr = NFq::NewTopicSession(
readGroup,
Expand All @@ -40,7 +41,8 @@ struct TActorFactory : public IActorFactory {
counters,
countersRoot,
pqGateway,
maxBufferSize
maxBufferSize,
enableStreamingQueriesCounters
);
return NActors::TActivationContext::Register(actorPtr.release(), {}, NActors::TMailboxType::HTSwap, Max<ui32>());
}
Expand Down
3 changes: 2 additions & 1 deletion ydb/core/fq/libs/row_dispatcher/actors_factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ struct IActorFactory : public TThrRefBase {
const ::NMonitoring::TDynamicCounterPtr& counters,
const ::NMonitoring::TDynamicCounterPtr& countersRoot,
const NYql::IPqGateway::TPtr& pqGateway,
ui64 maxBufferSize) const = 0;
ui64 maxBufferSize,
bool enableStreamingQueriesCounters) const = 0;
};

IActorFactory::TPtr CreateActorFactory();
Expand Down
43 changes: 29 additions & 14 deletions ydb/core/fq/libs/row_dispatcher/row_dispatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
#include "leader_election.h"
#include "probes.h"

#include <ydb/core/base/appdata_fwd.h>
#include <ydb/core/base/feature_flags.h>

#include <ydb/core/fq/libs/actors/logging/log.h>
#include <ydb/core/fq/libs/events/events.h>
#include <ydb/core/fq/libs/metrics/sanitize_label.h>
Expand Down Expand Up @@ -117,14 +120,17 @@ struct TQueryStatKeyHash {

struct TAggQueryStat {
TAggQueryStat() = default;
TAggQueryStat(const TString& queryId, const ::NMonitoring::TDynamicCounterPtr& counters, const NYql::NPq::NProto::TDqPqTopicSource& sourceParams)
TAggQueryStat(const TString& queryId, const ::NMonitoring::TDynamicCounterPtr& counters, const NYql::NPq::NProto::TDqPqTopicSource& sourceParams, bool enableStreamingQueriesCounters)
: QueryId(queryId)
, SubGroup(counters) {
for (const auto& sensor : sourceParams.GetTaskSensorLabel()) {
SubGroup = SubGroup->GetSubgroup(sensor.GetLabel(), sensor.GetValue());
auto topicGroup = SubGroup;
if (enableStreamingQueriesCounters) {
for (const auto& sensor : sourceParams.GetTaskSensorLabel()) {
SubGroup = SubGroup->GetSubgroup(sensor.GetLabel(), sensor.GetValue());
}
SubGroup = SubGroup->GetSubgroup("query_id", queryId);
topicGroup = SubGroup->GetSubgroup("read_group", SanitizeLabel(sourceParams.GetReadGroup()));
}
auto queryGroup = SubGroup->GetSubgroup("query_id", queryId);
auto topicGroup = queryGroup->GetSubgroup("read_group", SanitizeLabel(sourceParams.GetReadGroup()));
MaxQueuedBytesCounter = topicGroup->GetCounter("MaxQueuedBytes");
AvgQueuedBytesCounter = topicGroup->GetCounter("AvgQueuedBytes");
MaxReadLagCounter = topicGroup->GetCounter("MaxReadLag");
Expand Down Expand Up @@ -411,6 +417,7 @@ class TRowDispatcher : public TActorBootstrapped<TRowDispatcher> {
TMap<ui64, TAtomicSharedPtr<TConsumerInfo>> ConsumersByEventQueueId;
THashMap<TTopicSessionKey, TTopicSessionInfo, TTopicSessionKeyHash> TopicSessions;
TMap<TActorId, TReadActorInfo> ReadActorsInternalState;
bool EnableStreamingQueriesCounters = false;

public:
explicit TRowDispatcher(
Expand All @@ -425,7 +432,8 @@ class TRowDispatcher : public TActorBootstrapped<TRowDispatcher> {
const NYql::IPqGateway::TPtr& pqGateway,
NYdb::TDriver driver,
NActors::TMon* monitoring = nullptr,
NActors::TActorId nodesManagerId = {}
NActors::TActorId nodesManagerId = {},
bool enableStreamingQueriesCounters = false
);

void Bootstrap();
Expand Down Expand Up @@ -509,7 +517,8 @@ TRowDispatcher::TRowDispatcher(
const NYql::IPqGateway::TPtr& pqGateway,
NYdb::TDriver driver,
NActors::TMon* monitoring,
NActors::TActorId nodesManagerId)
NActors::TActorId nodesManagerId,
bool enableStreamingQueriesCounters)
: Config(config)
, CredentialsProviderFactory(credentialsProviderFactory)
, CredentialsFactory(credentialsFactory)
Expand All @@ -525,6 +534,7 @@ TRowDispatcher::TRowDispatcher(
, Driver(driver)
, Monitoring(monitoring)
, NodesManagerId(nodesManagerId)
, EnableStreamingQueriesCounters(enableStreamingQueriesCounters)
{
Y_ENSURE(!Tenant.empty());
}
Expand Down Expand Up @@ -665,7 +675,7 @@ void TRowDispatcher::UpdateMetrics() {
TQueryStatKey statKey{consumer->QueryId, key.ReadGroup};
auto& stats = AggrStats.LastQueryStats.emplace(
statKey,
TAggQueryStat(consumer->QueryId, Metrics.Counters, consumer->SourceParams)).first->second;
TAggQueryStat(consumer->QueryId, Metrics.Counters, consumer->SourceParams, EnableStreamingQueriesCounters)).first->second;
stats.Add(partition.Stat, partition.FilteredBytes);
partition.FilteredBytes = 0;
}
Expand Down Expand Up @@ -841,9 +851,11 @@ void TRowDispatcher::UpdateReadActorsInternalState() {
void TRowDispatcher::Handle(NFq::TEvRowDispatcher::TEvStartSession::TPtr& ev) {
LOG_ROW_DISPATCHER_DEBUG("Received TEvStartSession from " << ev->Sender << ", read group " << ev->Get()->Record.GetSource().GetReadGroup() << ", topicPath " << ev->Get()->Record.GetSource().GetTopicPath() <<
" part id " << JoinSeq(',', ev->Get()->Record.GetPartitionIds()) << " query id " << ev->Get()->Record.GetQueryId() << " cookie " << ev->Cookie);
auto queryGroup = Metrics.Counters->GetSubgroup("query_id", ev->Get()->Record.GetQueryId());
auto topicGroup = queryGroup->GetSubgroup("read_group", SanitizeLabel(ev->Get()->Record.GetSource().GetReadGroup()));
topicGroup->GetCounter("StartSession", true)->Inc();
if (EnableStreamingQueriesCounters) {
auto queryGroup = Metrics.Counters->GetSubgroup("query_id", ev->Get()->Record.GetQueryId());
auto topicGroup = queryGroup->GetSubgroup("read_group", SanitizeLabel(ev->Get()->Record.GetSource().GetReadGroup()));
topicGroup->GetCounter("StartSession", true)->Inc();
}

LWPROBE(StartSession, ev->Sender.ToString(), ev->Get()->Record.GetQueryId(), ev->Get()->Record.ByteSizeLong());

Expand Down Expand Up @@ -896,7 +908,8 @@ void TRowDispatcher::Handle(NFq::TEvRowDispatcher::TEvStartSession::TPtr& ev) {
Counters,
CountersRoot,
PqGateway,
MaxSessionBufferSizeBytes
MaxSessionBufferSizeBytes,
EnableStreamingQueriesCounters
);
TSessionInfo& sessionInfo = topicSessionInfo.Sessions[sessionActorId];
sessionInfo.Consumers[ev->Sender] = consumerInfo;
Expand Down Expand Up @@ -1303,7 +1316,8 @@ std::unique_ptr<NActors::IActor> NewRowDispatcher(
const NYql::IPqGateway::TPtr& pqGateway,
NYdb::TDriver driver,
NActors::TMon* monitoring,
NActors::TActorId nodesManagerId)
NActors::TActorId nodesManagerId,
bool enableStreamingQueriesCounters)
{
return std::unique_ptr<NActors::IActor>(new TRowDispatcher(
config,
Expand All @@ -1317,7 +1331,8 @@ std::unique_ptr<NActors::IActor> NewRowDispatcher(
pqGateway,
driver,
monitoring,
nodesManagerId));
nodesManagerId,
enableStreamingQueriesCounters));
}

} // namespace NFq
3 changes: 2 additions & 1 deletion ydb/core/fq/libs/row_dispatcher/row_dispatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ std::unique_ptr<NActors::IActor> NewRowDispatcher(
const NYql::IPqGateway::TPtr& pqGateway,
NYdb::TDriver driver,
NActors::TMon* monitoring = nullptr,
NActors::TActorId nodesManagerId = {});
NActors::TActorId nodesManagerId = {},
bool enableStreamingQueriesCounters = false);

} // namespace NFq
6 changes: 4 additions & 2 deletions ydb/core/fq/libs/row_dispatcher/row_dispatcher_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ std::unique_ptr<NActors::IActor> NewRowDispatcherService(
NYdb::TDriver driver,
NActors::TMon* monitoring,
::NMonitoring::TDynamicCounterPtr countersRoot,
NActors::TActorId nodesManagerId)
NActors::TActorId nodesManagerId,
bool enableStreamingQueriesCounters)
{
return NewRowDispatcher(
config,
Expand All @@ -34,7 +35,8 @@ std::unique_ptr<NActors::IActor> NewRowDispatcherService(
pqGateway,
driver,
monitoring,
nodesManagerId);
nodesManagerId,
enableStreamingQueriesCounters);
}

} // namespace NFq
3 changes: 2 additions & 1 deletion ydb/core/fq/libs/row_dispatcher/row_dispatcher_service.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ std::unique_ptr<NActors::IActor> NewRowDispatcherService(
NYdb::TDriver driver,
NActors::TMon* monitoring = nullptr,
::NMonitoring::TDynamicCounterPtr countersRoot = MakeIntrusive<::NMonitoring::TDynamicCounters>(),
NActors::TActorId nodesManagerId = {});
NActors::TActorId nodesManagerId = {},
bool enableStreamingQueriesCounters = false);

} // namespace NFq
51 changes: 32 additions & 19 deletions ydb/core/fq/libs/row_dispatcher/topic_session.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#include "topic_session.h"

#include <ydb/core/base/appdata_fwd.h>
#include <ydb/core/base/feature_flags.h>

#include <ydb/core/fq/libs/actors/logging/log.h>
#include <ydb/core/fq/libs/metrics/sanitize_label.h>
#include <ydb/core/fq/libs/row_dispatcher/events/data_plane.h>
Expand All @@ -23,11 +26,14 @@ namespace {
////////////////////////////////////////////////////////////////////////////////

struct TTopicSessionMetrics {
void Init(const ::NMonitoring::TDynamicCounterPtr& counters, const TString& topicPath, const TString& readGroup, ui32 partitionId) {
TopicGroup = counters->GetSubgroup("topic", SanitizeLabel(topicPath));
ReadGroup = TopicGroup->GetSubgroup("read_group", SanitizeLabel(readGroup));
PartitionGroup = ReadGroup->GetSubgroup("partition", ToString(partitionId));

void Init(const ::NMonitoring::TDynamicCounterPtr& counters, const TString& topicPath, const TString& readGroupName, ui32 partitionId, bool enableStreamingQueriesCounters) {
ReadGroup = counters;
PartitionGroup = counters;
if (enableStreamingQueriesCounters) {
const auto topicGroup = counters->GetSubgroup("topic", SanitizeLabel(topicPath));
ReadGroup = topicGroup->GetSubgroup("read_group", SanitizeLabel(readGroupName));
PartitionGroup = ReadGroup->GetSubgroup("partition", ToString(partitionId));
}
AllSessionsDataRate = ReadGroup->GetCounter("AllSessionsDataRate", true);
InFlyAsyncInputData = PartitionGroup->GetCounter("InFlyAsyncInputData");
InFlySubscribe = PartitionGroup->GetCounter("InFlySubscribe");
Expand All @@ -37,10 +43,8 @@ struct TTopicSessionMetrics {
WaitEventTimeMs = PartitionGroup->GetHistogram("WaitEventTimeMs", NMonitoring::ExplicitHistogram({5, 20, 100, 500, 2000}));
QueuedBytes = PartitionGroup->GetCounter("QueuedBytes");
}

::NMonitoring::TDynamicCounterPtr TopicGroup;
::NMonitoring::TDynamicCounterPtr ReadGroup;
::NMonitoring::TDynamicCounterPtr PartitionGroup;
::NMonitoring::TDynamicCounterPtr ReadGroup;
::NMonitoring::TDynamicCounters::TCounterPtr InFlyAsyncInputData;
::NMonitoring::TDynamicCounters::TCounterPtr InFlySubscribe;
::NMonitoring::TDynamicCounters::TCounterPtr ReconnectRate;
Expand Down Expand Up @@ -101,7 +105,7 @@ class TTopicSession : public TActorBootstrapped<TTopicSession>, NYql::TTopicEven
struct TClientsInfo : public IClientDataConsumer {
using TPtr = TIntrusivePtr<TClientsInfo>;

TClientsInfo(TTopicSession& self, const TString& logPrefix, const ITopicFormatHandler::TSettings& handlerSettings, const NFq::TEvRowDispatcher::TEvStartSession::TPtr& ev, const NMonitoring::TDynamicCounterPtr& counters, const TString& readGroup, TMaybe<ui64> offset)
TClientsInfo(TTopicSession& self, const TString& logPrefix, const ITopicFormatHandler::TSettings& handlerSettings, const NFq::TEvRowDispatcher::TEvStartSession::TPtr& ev, const NMonitoring::TDynamicCounterPtr& counters, const TString& readGroup, TMaybe<ui64> offset, bool enableStreamingQueriesCounters)
: Self(self)
, LogPrefix(logPrefix)
, HandlerSettings(handlerSettings)
Expand All @@ -122,11 +126,15 @@ class TTopicSession : public TActorBootstrapped<TTopicSession>, NYql::TTopicEven
InitialOffset = *offset;
}
Y_UNUSED(TDuration::TryParse(ev->Get()->Record.GetSource().GetReconnectPeriod(), ReconnectPeriod));
for (const auto& sensor : ev->Get()->Record.GetSource().GetTaskSensorLabel()) {
Counters = Counters->GetSubgroup(sensor.GetLabel(), sensor.GetValue());

auto readSubGroup = Counters;
if (enableStreamingQueriesCounters) {
for (const auto& sensor : ev->Get()->Record.GetSource().GetTaskSensorLabel()) {
Counters = Counters->GetSubgroup(sensor.GetLabel(), sensor.GetValue());
}
readSubGroup = readSubGroup->GetSubgroup("query_id", QueryId);
readSubGroup = readSubGroup->GetSubgroup("read_group", SanitizeLabel(readGroup));
}
auto queryGroup = Counters->GetSubgroup("query_id", QueryId);
auto readSubGroup = queryGroup->GetSubgroup("read_group", SanitizeLabel(readGroup));
FilteredDataRate = readSubGroup->GetCounter("FilteredDataRate", true);
RestartSessionByOffsetsByQuery = readSubGroup->GetCounter("RestartSessionByOffsetsByQuery", true);

Expand Down Expand Up @@ -298,6 +306,7 @@ class TTopicSession : public TActorBootstrapped<TTopicSession>, NYql::TTopicEven
TTopicSessionMetrics Metrics;
const ::NMonitoring::TDynamicCounterPtr Counters;
const ::NMonitoring::TDynamicCounterPtr CountersRoot;
bool EnableStreamingQueriesCounters = false;

public:
TTopicSession(
Expand All @@ -315,7 +324,8 @@ class TTopicSession : public TActorBootstrapped<TTopicSession>, NYql::TTopicEven
const ::NMonitoring::TDynamicCounterPtr& counters,
const ::NMonitoring::TDynamicCounterPtr& countersRoot,
const NYql::IPqGateway::TPtr& pqGateway,
ui64 maxBufferSize);
ui64 maxBufferSize,
bool enableStreamingQueriesCounters);

void Bootstrap();
void PassAway() override;
Expand Down Expand Up @@ -403,7 +413,8 @@ TTopicSession::TTopicSession(
const ::NMonitoring::TDynamicCounterPtr& counters,
const ::NMonitoring::TDynamicCounterPtr& countersRoot,
const NYql::IPqGateway::TPtr& pqGateway,
ui64 maxBufferSize)
ui64 maxBufferSize,
bool enableStreamingQueriesCounters)
: ReadGroup(readGroup)
, TopicPath(topicPath)
, TopicPathPartition(TStringBuilder() << topicPath << "/" << partitionId)
Expand All @@ -421,11 +432,12 @@ TTopicSession::TTopicSession(
, LogPrefix("TopicSession")
, Counters(counters)
, CountersRoot(countersRoot)
, EnableStreamingQueriesCounters(enableStreamingQueriesCounters)
{}

void TTopicSession::Bootstrap() {
Become(&TTopicSession::StateFunc);
Metrics.Init(Counters, TopicPath, ReadGroup, PartitionId);
Metrics.Init(Counters, TopicPath, ReadGroup, PartitionId, EnableStreamingQueriesCounters);
LogPrefix = LogPrefix + " " + SelfId().ToString() + " ";
LOG_ROW_DISPATCHER_DEBUG("Bootstrap " << TopicPathPartition
<< ", Timeout " << Config.GetTimeoutBeforeStartSession() << " sec");
Expand Down Expand Up @@ -793,7 +805,7 @@ void TTopicSession::Handle(NFq::TEvRowDispatcher::TEvStartSession::TPtr& ev) {
const TString& format = source.GetFormat();
ITopicFormatHandler::TSettings handlerSettings = {.ParsingFormat = format ? format : "raw"};

auto clientInfo = Clients.insert({ev->Sender, MakeIntrusive<TClientsInfo>(*this, LogPrefix, handlerSettings, ev, Counters, ReadGroup, offset)}).first->second;
auto clientInfo = Clients.insert({ev->Sender, MakeIntrusive<TClientsInfo>(*this, LogPrefix, handlerSettings, ev, Counters, ReadGroup, offset, EnableStreamingQueriesCounters)}).first->second;
auto formatIt = FormatHandlers.find(handlerSettings);
if (formatIt == FormatHandlers.end()) {
auto config = CreateFormatHandlerConfig(Config, FunctionRegistry, CompileServiceActorId, source.GetSkipJsonErrors());
Expand Down Expand Up @@ -1062,8 +1074,9 @@ std::unique_ptr<IActor> NewTopicSession(
const ::NMonitoring::TDynamicCounterPtr& counters,
const ::NMonitoring::TDynamicCounterPtr& countersRoot,
const NYql::IPqGateway::TPtr& pqGateway,
ui64 maxBufferSize) {
return std::unique_ptr<IActor>(new TTopicSession(readGroup, topicPath, endpoint, database, config, functionRegistry, rowDispatcherActorId, compileServiceActorId, partitionId, std::move(driver), credentialsProviderFactory, counters, countersRoot, pqGateway, maxBufferSize));
ui64 maxBufferSize,
bool enableStreamingQueriesCounters) {
return std::unique_ptr<IActor>(new TTopicSession(readGroup, topicPath, endpoint, database, config, functionRegistry, rowDispatcherActorId, compileServiceActorId, partitionId, std::move(driver), credentialsProviderFactory, counters, countersRoot, pqGateway, maxBufferSize, enableStreamingQueriesCounters));
}

} // namespace NFq
3 changes: 2 additions & 1 deletion ydb/core/fq/libs/row_dispatcher/topic_session.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ std::unique_ptr<NActors::IActor> NewTopicSession(
const ::NMonitoring::TDynamicCounterPtr& counters,
const ::NMonitoring::TDynamicCounterPtr& countersRoot,
const NYql::IPqGateway::TPtr& pqGateway,
ui64 maxBufferSize);
ui64 maxBufferSize,
bool enableStreamingQueriesCounters);

} // namespace NFq
3 changes: 2 additions & 1 deletion ydb/core/fq/libs/row_dispatcher/ut/row_dispatcher_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ struct TTestActorFactory : public NFq::NRowDispatcher::IActorFactory {
const ::NMonitoring::TDynamicCounterPtr& /*counters*/,
const ::NMonitoring::TDynamicCounterPtr& /*counters*/,
const NYql::IPqGateway::TPtr& /*pqGateway*/,
ui64 /*maxBufferSize*/) const override {
ui64 /*maxBufferSize*/,
bool /*enableStreamingQueriesCounters*/) const override {
auto actorId = Runtime.AllocateEdgeActor();
ActorIds.push(actorId);
return actorId;
Expand Down
3 changes: 2 additions & 1 deletion ydb/core/fq/libs/row_dispatcher/ut/topic_session_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ class TFixture : public NTests::TBaseFixture {
MakeIntrusive<NMonitoring::TDynamicCounters>(),
MakeIntrusive<NMonitoring::TDynamicCounters>(),
!MockTopicSession ? CreatePqNativeGateway(pqServices) : MockPqGateway,
16000000
16000000,
true
).release());
Runtime.EnableScheduleForActor(TopicSession);
}
Expand Down
Loading
Loading