-
Notifications
You must be signed in to change notification settings - Fork 172
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
Backport includeEndStreamAction in DeltasharingService to branch-1.1 #593
Conversation
@linzhou-db Should we soak this for some more time before the backport? |
@@ -172,12 +173,14 @@ class DeltaSharingRestClient( | |||
readerFeatures: String = "", | |||
queryTablePaginationEnabled: Boolean = false, | |||
maxFilesPerReq: Int = 100000, | |||
endStreamActionEnabled: Boolean = false, |
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.
@chakankardb setting the default to false
@@ -39,6 +39,9 @@ object ConfUtils { | |||
val USE_ASYNC_QUERY_CONF = "spark.delta.sharing.network.useAsyncQuery" | |||
val USE_ASYNC_QUERY_DEFAULT = "false" | |||
|
|||
val INCLUDE_END_STREAM_ACTION_CONF = "spark.delta.sharing.query.includeEndStreamAction" | |||
val INCLUDE_END_STREAM_ACTION_DEFAULT = "false" |
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.
@chakankardb setting the default to false
Backport includeEndStreamAction in DeltasharingService to branch-1.1