Skip to content

Commit

Permalink
Change test page size to avoid indexTimeInMillis < 1 issue.
Browse files Browse the repository at this point in the history
Signed-off-by: Angie Zhang <langelzh@amazon.com>
  • Loading branch information
Angie Zhang committed Aug 10, 2022
1 parent 6b00122 commit 85b1f3b
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class TransformRunnerIT : TransformRestTestCase() {
sourceIndex = "transform-source-index",
targetIndex = "transform-target-index",
roles = emptyList(),
pageSize = 100,
pageSize = 10,
groups = listOf(
Terms(sourceField = "store_and_fwd_flag", targetField = "flag")
)
Expand Down Expand Up @@ -350,7 +350,7 @@ class TransformRunnerIT : TransformRestTestCase() {
sourceIndex = dataStreamName,
targetIndex = "transform-target-index",
roles = emptyList(),
pageSize = 10,
pageSize = 100,
groups = listOf(
Terms(sourceField = "store_and_fwd_flag", targetField = "flag")
)
Expand Down Expand Up @@ -390,7 +390,7 @@ class TransformRunnerIT : TransformRestTestCase() {
sourceIndex = "transform-no-op-source-index",
targetIndex = "transform-no-op-target-index",
roles = emptyList(),
pageSize = 10,
pageSize = 100,
groups = listOf(
Terms(sourceField = "store_and_fwd_flag", targetField = "flag"),
Histogram(sourceField = "trip_distance", targetField = "distance", interval = 0.1)
Expand Down Expand Up @@ -459,7 +459,7 @@ class TransformRunnerIT : TransformRestTestCase() {
sourceIndex = "continuous-transform-source-index",
targetIndex = "continuous-transform-target-index",
roles = emptyList(),
pageSize = 10,
pageSize = 100,
groups = listOf(
Terms(sourceField = "store_and_fwd_flag", targetField = "flag")
),
Expand Down Expand Up @@ -587,7 +587,7 @@ class TransformRunnerIT : TransformRestTestCase() {
sourceIndex = sourceIndex,
targetIndex = "modified-bucket-target-index",
roles = emptyList(),
pageSize = 10,
pageSize = 100,
groups = listOf(
Histogram(sourceField = "iterating_id", targetField = "id_group", interval = 5.0)
),
Expand Down Expand Up @@ -717,7 +717,7 @@ class TransformRunnerIT : TransformRestTestCase() {
sourceIndex = "wildcard-s*e-*",
targetIndex = "wildcard-target-index",
roles = emptyList(),
pageSize = 10,
pageSize = 100,
groups = listOf(
Terms(sourceField = "store_and_fwd_flag", targetField = "flag")
),
Expand Down Expand Up @@ -806,7 +806,7 @@ class TransformRunnerIT : TransformRestTestCase() {
sourceIndex = sourceIndex,
targetIndex = "null-bucket-target-index",
roles = emptyList(),
pageSize = 10,
pageSize = 100,
groups = listOf(
Histogram(sourceField = "iterating_id", targetField = "id_group", interval = 5.0),
Terms(sourceField = "term_id", targetField = "id_term")
Expand Down

0 comments on commit 85b1f3b

Please sign in to comment.