File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
gateway/behaviour/streaming_query
ut/federated_query/datastreams Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1756,6 +1756,7 @@ class TStartStreamingQueryTableActor final : public TActionActorBase<TStartStrea
17561756 ev->ForgetAfter = TDuration::Max ();
17571757 ev->Generation = PreviousGeneration + 1 ;
17581758 ev->CheckpointId = State.GetCheckpointId ();
1759+ ev->ProgressStatsPeriod = TDuration::Seconds (1 );
17591760
17601761 auto & record = ev->Record ;
17611762 record.SetTraceId (TStringBuilder () << " streaming-query-" << QueryPath << " -" << State.GetCurrentExecutionId ());
Original file line number Diff line number Diff line change @@ -115,7 +115,6 @@ class TStreamingTestFixture : public NUnitTest::TBaseFixture {
115115
116116 auto & queryServiceConfig = *AppConfig->MutableQueryServiceConfig ();
117117 queryServiceConfig.SetEnableMatchRecognize (true );
118- queryServiceConfig.SetProgressStatsPeriodMs (1000 );
119118
120119 LogSettings
121120 .AddLogPriority (NKikimrServices::STREAMS_STORAGE_SERVICE, NLog::PRI_DEBUG)
@@ -1104,6 +1103,8 @@ Y_UNIT_TEST_SUITE(KqpFederatedQueryDatastreams) {
11041103 }
11051104
11061105 Y_UNIT_TEST_F (InsertTopicBasic, TStreamingTestFixture) {
1106+ SetupAppConfig ().MutableQueryServiceConfig ()->SetProgressStatsPeriodMs (1000 );
1107+
11071108 TString sourceName = " sourceName" ;
11081109 TString inputTopicName = " inputTopicName" ;
11091110 TString outputTopicName = " outputTopicName" ;
@@ -2181,6 +2182,8 @@ Y_UNIT_TEST_SUITE(KqpStreamingQueriesDdl) {
21812182 }
21822183
21832184 Y_UNIT_TEST_F (StreamingQueryWithStreamLookupJoin, TStreamingTestFixture) {
2185+ SetupAppConfig ().MutableQueryServiceConfig ()->SetProgressStatsPeriodMs (0 );
2186+
21842187 const auto connectorClient = SetupMockConnectorClient ();
21852188 const auto pqGateway = SetupMockPqGateway ();
21862189
You can’t perform that action at this time.
0 commit comments