kou commented on code in PR #43096:
URL: https://github.com/apache/arrow/pull/43096#discussion_r1716485330
##########
cpp/src/arrow/filesystem/azurefs.h:
##########
@@ -112,6 +112,9 @@ struct ARROW_EXPORT AzureOptions {
/// This will be ignored if non-empty metadata is passed to OpenOutputStream.
std::shared_ptr<const KeyValueMetadata> default_metadata;
+ /// Whether OutputStream writes will be issued in the background, without
blocking.
+ bool background_writes = false;
Review Comment:
If we can specify an option value by URI something like
`abfs://.../...?background_writes=yes`, we don't need to implement
`AzureOptions` bindings. For example, Apache Arrow C GLib doesn't provide
`S3Options` nor `GCSOptions` but it can use `S3FileSystem` and `GCSFileSystem`.
I think that #43197 is for security. But this is not related to security.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]