@@ -72,10 +72,9 @@ <ACC, R> SingleOutputStreamOperator<R> aggregate(
72
72
* records must be {@link Tuple}.
73
73
*
74
74
* <p>This operator will use managed memory for the sort.For {@link
75
- * NonKeyedPartitionWindowedStream}, the managed memory size can be set by
76
- * "execution.sort.partition.memory" in {@link ExecutionOptions}. For {@link
77
- * KeyedPartitionWindowedStream}, the managed memory size can be set by
78
- * "execution.sort.keyed.partition.memory" in {@link ExecutionOptions}.
75
+ * NonKeyedPartitionWindowedStream}, the managed memory size can be set by {@link
76
+ * ExecutionOptions#SORT_PARTITION_MEMORY}. For {@link KeyedPartitionWindowedStream}, the
77
+ * managed memory size can be set by {@link ExecutionOptions#SORT_KEYED_PARTITION_MEMORY}.
79
78
*
80
79
* @param field The field 1-based index on which records is sorted.
81
80
* @param order The order in which records is sorted.
@@ -99,10 +98,9 @@ <ACC, R> SingleOutputStreamOperator<R> aggregate(
99
98
* </ul>
100
99
*
101
100
* <p>This operator will use managed memory for the sort.For {@link
102
- * NonKeyedPartitionWindowedStream}, the managed memory size can be set by
103
- * "execution.sort.partition.memory" in {@link ExecutionOptions}. For {@link
104
- * KeyedPartitionWindowedStream}, the managed memory size can be set by
105
- * "execution.sort.keyed.partition.memory" in {@link ExecutionOptions}.
101
+ * NonKeyedPartitionWindowedStream}, the managed memory size can be set by {@link
102
+ * ExecutionOptions#SORT_PARTITION_MEMORY}. For {@link KeyedPartitionWindowedStream}, the
103
+ * managed memory size can be set by {@link ExecutionOptions#SORT_KEYED_PARTITION_MEMORY}.
106
104
*
107
105
* @param field The field expression referring to the field on which records is sorted.
108
106
* @param order The order in which records is sorted.
@@ -114,10 +112,9 @@ <ACC, R> SingleOutputStreamOperator<R> aggregate(
114
112
* Sorts the records according to a {@link KeySelector} in the specified order.
115
113
*
116
114
* <p>This operator will use managed memory for the sort.For {@link
117
- * NonKeyedPartitionWindowedStream}, the managed memory size can be set by
118
- * "execution.sort.partition.memory" in {@link ExecutionOptions}. For {@link
119
- * KeyedPartitionWindowedStream}, the managed memory size can be set by
120
- * "execution.sort.keyed.partition.memory" in {@link ExecutionOptions}.
115
+ * NonKeyedPartitionWindowedStream}, the managed memory size can be set by {@link
116
+ * ExecutionOptions#SORT_PARTITION_MEMORY}. For {@link KeyedPartitionWindowedStream}, the
117
+ * managed memory size can be set by {@link ExecutionOptions#SORT_KEYED_PARTITION_MEMORY}.
121
118
*
122
119
* @param keySelector The key selector to extract key from the records for sorting.
123
120
* @param order The order in which records is sorted.
0 commit comments