File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -105,8 +105,8 @@ message ImportDataRequest {
105
105
// - sorted by primary key;
106
106
// - all keys must be from the same partition;
107
107
// - table has no global secondary indexes;
108
- // - size of serialized data is limited to 8 MB.
109
- bytes data = 3 [(length).le = 8388608 ];
108
+ // - size of serialized data is limited to 16 MB.
109
+ bytes data = 3 [(length).le = 16777216 ];
110
110
oneof format {
111
111
// Result of `ydb tools dump`
112
112
YdbDumpFormat ydb_dump = 4 ;
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ struct TRestoreSettings: public TOperationRequestSettings<TRestoreSettings> {
58
58
ImportData,
59
59
};
60
60
61
- static constexpr ui64 MaxBytesPerRequest = 8_MB ;
61
+ static constexpr ui64 MaxBytesPerRequest = 16_MB ;
62
62
63
63
FLUENT_SETTING_DEFAULT (EMode, Mode, EMode::Yql);
64
64
FLUENT_SETTING_DEFAULT (bool , DryRun, false );
@@ -67,7 +67,7 @@ struct TRestoreSettings: public TOperationRequestSettings<TRestoreSettings> {
67
67
FLUENT_SETTING_DEFAULT (bool , SkipDocumentTables, false );
68
68
FLUENT_SETTING_DEFAULT (bool , SavePartialResult, false );
69
69
70
- FLUENT_SETTING_DEFAULT (ui64, MemLimit, 16_MB );
70
+ FLUENT_SETTING_DEFAULT (ui64, MemLimit, 32_MB );
71
71
FLUENT_SETTING_DEFAULT (ui64, RowsPerRequest, 0 );
72
72
FLUENT_SETTING_DEFAULT (ui64, BytesPerRequest, 512_KB);
73
73
FLUENT_SETTING_DEFAULT (ui64, RequestUnitsPerRequest, 30 );
You can’t perform that action at this time.
0 commit comments