-
Notifications
You must be signed in to change notification settings - Fork 734
Blocks for first stages #1404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blocks for first stages #1404
Conversation
|
⚪
|
|
⚪
|
| YQL_ENSURE(IsIn({EKikimrQueryType::Query, EKikimrQueryType::Script}, TransformCtx->QueryCtx->Type)); | ||
| YQL_ENSURE(TMaybeNode<TKiDataQueryBlocks>(query)); | ||
|
|
||
| TypesCtx.BlockEngineMode = NYql::EBlockEngineMode::Auto; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You may want to explicitly disable dq.UseWideChannels and dq.UseWideBlockChannels, since BlockEngineMode=auto will enable WideChannels and WideBlocksChannels unless they are disabled explicitly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already set scalar channels only mode here
| EChannelMode mode = EChannelMode::CHANNEL_SCALAR; |
(similar to
| NDq::EChannelMode mode = GetConfiguredChannelMode(State_, typesCtx); |
c84e62b to
f1dd049
Compare
|
⚪
|
|
⚪
|
Changelog entry
enable block computation for first stages
Changelog category
Additional information
...