class Google::Apis::DataflowV1b3::SourceSplitOptions
Hints for splitting a Source
into bundles (parts for parallel processing) using SourceSplitRequest
.
Attributes
desired_bundle_size_bytes[RW]
The source should be split into a set of bundles where the estimated size of each is approximately this many bytes. Corresponds to the JSON property `desiredBundleSizeBytes` @return [Fixnum]
desired_shard_size_bytes[RW]
DEPRECATED in favor of desired_bundle_size_bytes. Corresponds to the JSON property `desiredShardSizeBytes` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 4747 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 4752 def update!(**args) @desired_bundle_size_bytes = args[:desired_bundle_size_bytes] if args.key?(:desired_bundle_size_bytes) @desired_shard_size_bytes = args[:desired_shard_size_bytes] if args.key?(:desired_shard_size_bytes) end