File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,8 @@ ydb/public/sdk/cpp/client/ydb_topic/ut [*/*]+chunk+chunk
82
82
ydb/services/datastreams/ut DataStreams.TestPutRecordsCornerCases
83
83
ydb/services/keyvalue/ut sole chunk chunk
84
84
ydb/services/keyvalue/ut sole+chunk+chunk
85
+ ydb/services/persqueue_v1/ut TPersQueueCommonTest.TestLimiterLimitsWithBlobsRateLimit
86
+ ydb/services/persqueue_v1/ut TPersQueueCommonTest.TestLimiterLimitsWithUserPayloadRateLimit
85
87
ydb/services/ydb/sdk_sessions_pool_ut YdbSdkSessionsPool.StressTestSync1
86
88
ydb/services/ydb/sdk_sessions_pool_ut YdbSdkSessionsPool.StressTestSync10
87
89
ydb/services/ydb/sdk_sessions_ut [*/*] chunk chunk
Original file line number Diff line number Diff line change @@ -1250,10 +1250,17 @@ Y_UNIT_TEST_SUITE(KafkaProtocol) {
1250
1250
UNIT_ASSERT_EQUAL (upsertResult.GetStatus (), EStatus::SUCCESS);
1251
1251
}
1252
1252
1253
- {
1253
+ for ( size_t i = 10 ; i--;) {
1254
1254
// Check CDC
1255
1255
std::vector<std::pair<TString, std::vector<i32 >>> topics {{feedPath, {0 }}};
1256
1256
auto msg = client.Fetch (topics);
1257
+
1258
+ if (msg->Responses .empty () || msg->Responses [0 ].Partitions .empty () || !msg->Responses [0 ].Partitions [0 ].Records .has_value ()) {
1259
+ UNIT_ASSERT_C (i, " Timeout" );
1260
+ Sleep (TDuration::Seconds (1 ));
1261
+ continue ;
1262
+ }
1263
+
1257
1264
UNIT_ASSERT_VALUES_EQUAL (msg->Responses .size (), 1 );
1258
1265
UNIT_ASSERT_VALUES_EQUAL (msg->Responses [0 ].Partitions .size (), 1 );
1259
1266
UNIT_ASSERT_VALUES_EQUAL (msg->Responses [0 ].Partitions [0 ].ErrorCode , static_cast <TKafkaInt16>(EKafkaErrors::NONE_ERROR));
@@ -1264,6 +1271,8 @@ Y_UNIT_TEST_SUITE(KafkaProtocol) {
1264
1271
auto data = record.Value .value ();
1265
1272
auto dataStr = TString (data.data (), data.size ());
1266
1273
UNIT_ASSERT_VALUES_EQUAL (dataStr, " {\" update\" :{\" value\" :2},\" key\" :[1]}" );
1274
+
1275
+ break ;
1267
1276
}
1268
1277
1269
1278
} // Y_UNIT_TEST(FetchScenario)
Original file line number Diff line number Diff line change @@ -108,16 +108,16 @@ message TFeatureFlags {
108
108
reserved 83 ; // EnableKqpDataQuerySourceRead
109
109
optional bool EnableSmallDiskOptimization = 84 [default = true ];
110
110
optional bool EnableDataShardVolatileTransactions = 85 [default = true ];
111
- optional bool EnableTopicServiceTx = 86 [default = false ];
111
+ optional bool EnableTopicServiceTx = 86 [default = true ];
112
112
optional bool EnableLLVMCache = 87 [default = false ];
113
113
optional bool EnableExternalDataSources = 88 [default = false ];
114
114
optional bool EnableTopicDiskSubDomainQuota = 89 [default = true , (RequireRestart) = true ];
115
115
optional bool EnableSeparationComputeActorsFromRead = 90 [default = true ];
116
- optional bool EnablePQConfigTransactionsAtSchemeShard = 91 [default = false ];
116
+ optional bool EnablePQConfigTransactionsAtSchemeShard = 91 [default = true ];
117
117
optional bool EnableScriptExecutionOperations = 92 [default = true ];
118
118
optional bool EnableImplicitQueryParameterTypes = 93 [default = true ];
119
119
optional bool EnableForceImmediateEffectsExecution = 94 [default = false ];
120
- optional bool EnableTopicSplitMerge = 95 [default = false ];
120
+ optional bool EnableTopicSplitMerge = 95 [default = true ];
121
121
optional bool EnableChangefeedDynamoDBStreamsFormat = 96 [default = true ];
122
122
optional bool ForceColumnTablesCompositeMarks = 97 [default = false ];
123
123
optional bool EnableSubscriptionsInDiscovery = 98 [default = false , (RequireRestart) = true ];
You can’t perform that action at this time.
0 commit comments