本文整理汇总了Java中org.apache.beam.sdk.options.Default.Long方法的典型用法代码示例。如果您正苦于以下问题:Java Default.Long方法的具体用法?Java Default.Long怎么用?Java Default.Long使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.beam.sdk.options.Default
的用法示例。
在下文中一共展示了Default.Long方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getWindowSize
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Window size for aggregation")
@Default.Long(15L)
Long getWindowSize();
示例2: getWindowInterval
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Window interval for aggregation")
@Default.Long(5L)
Long getWindowInterval();
示例3: getTestTimeoutSeconds
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Default.Long(10 * 60)
@Nullable
Long getTestTimeoutSeconds();
示例4: getNumberOfRecords
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Number records that will be written and read by the test")
@Default.Long(100000)
Long getNumberOfRecords();
示例5: getRunMillis
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Default.Long(0)
long getRunMillis();
示例6: getBatchIntervalMillis
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Batch interval for Spark streaming in milliseconds.")
@Default.Long(500)
Long getBatchIntervalMillis();
示例7: getMinReadTimeMillis
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Minimum time to spend on read, for each micro-batch.")
@Default.Long(200)
Long getMinReadTimeMillis();
示例8: getMaxRecordsPerBatch
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Max records per micro-batch. For streaming sources only.")
@Default.Long(-1)
Long getMaxRecordsPerBatch();
示例9: checkpoint
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("The period to checkpoint (in Millis). If not set, Spark will default "
+ "to Max(slideDuration, Seconds(10)). This PipelineOptions default (-1) will end-up "
+ "with the described Spark default.")
@Default.Long(-1)
Long getCheckpointDurationMillis();
示例10: checkpoints
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("The interval between consecutive checkpoints (i.e. snapshots of the current"
+ "pipeline state used for fault tolerance).")
@Default.Long(-1L)
Long getCheckpointingInterval();
示例11: getCheckpointTimeoutMillis
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("The maximum time that a checkpoint may take before being discarded.")
@Default.Long(20 * 60 * 1000)
Long getCheckpointTimeoutMillis();
示例12: getExecutionRetryDelay
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("Sets the delay between executions. A value of {@code -1} "
+ "indicates that the default value should be used.")
@Default.Long(-1L)
Long getExecutionRetryDelay();
示例13: getMaxBundleSize
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("The maximum number of elements in a bundle.")
@Default.Long(1000)
Long getMaxBundleSize();
示例14: bundle
import org.apache.beam.sdk.options.Default; //导入方法依赖的package包/类
@Description("The maximum time to wait before finalising a bundle (in milliseconds).")
@Default.Long(1000)
Long getMaxBundleTimeMills();