You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2020/04/23 09:34:43 UTC

[GitHub] [flink] HuangXingBo opened a new pull request #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

HuangXingBo opened a new pull request #11881:
URL: https://github.com/apache/flink/pull/11881


   ## What is the purpose of the change
   
   *Currently the default value for "python.fn-execution.bundle.size" is 1000 and the default value for "python.fn-execution.bundle.time" is 1000ms. This pull request will adjust the default value of bundle size and bundle time which works best in most scenarios.*
   
   
   ## Brief change log
   
     - *Adjust default value of python.fn-execution.bundle.size and python.fn-execution.bundle.time in PythonOptions.java*
   
   ## Does this pull request potentially affect one of the following parts:
   
     - Dependencies (does it add or upgrade a dependency): (no)
     - The public API, i.e., is any changed class annotated with `@Public(Evolving)`: (no)
     - The serializers: (no)
     - The runtime per-record code paths (performance sensitive): (no)
     - Anything that affects deployment or recovery: JobManager (and its components), Checkpointing, Kubernetes/Yarn/Mesos, ZooKeeper: (no)
     - The S3 file system connector: (no)
   
   ## Documentation
   
     - Does this pull request introduce a new feature? (no)
     - If yes, how is the feature documented? (not applicable / docs / JavaDocs / not documented)
   
   ## How does this patch test
   ### Test Code
   
   
       @udf(input_types=[DataTypes.STRING(False)], result_type=DataTypes.STRING(False))
       def inc(x):
           import time
           time.sleep(10)
           return x
   
       t_env.register_function("inc", inc)
   
       #num_rows = 100000000
       num_rows = 20000000
       num = 1000
       # every element will be prefix
       prefix = "1" * num
       # num_rows = 1
       t_env.from_table_source(RangeStringTableSource(1, num_rows, 1, prefix)).alias("id") \
            .select("inc(id)") \
            .insert_into("sink")
   
       beg_time = time.time()
       t_env.execute("perf_test")
       print("consume time: " + str(time.time() - beg_time))
   
   
   ## Test Data
   4 Byte(30kw row data)
   100 Byte(10kw row data)
   1k Byte(2kw row data)


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on issue #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on issue #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618306450


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "PENDING",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161601076",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1 Travis: [PENDING](https://travis-ci.com/github/flink-ci/flink/builds/161601076) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123) 
   * 2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618306450


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "DELETED",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161601076",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "FAILURE",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161626000",
       "triggerID" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132",
       "triggerID" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "PENDING",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161626000",
       "triggerID" : "618583200",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132",
       "triggerID" : "618583200",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063 UNKNOWN
   * 4c80d03a4dcd4eadbcd66326b8abac9c19f55527 Travis: [PENDING](https://travis-ci.com/github/flink-ci/flink/builds/161626000) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot commented on issue #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
flinkbot commented on issue #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618295932


   Thanks a lot for your contribution to the Apache Flink project. I'm the @flinkbot. I help the community
   to review your pull request. We will use this comment to track the progress of the review.
   
   
   ## Automated Checks
   Last check on commit dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1 (Thu Apr 23 09:37:16 UTC 2020)
   
   **Warnings:**
    * No documentation files were touched! Remember to keep the Flink docs up to date!
   
   
   <sub>Mention the bot in a comment to re-run the automated checks.</sub>
   ## Review Progress
   
   * ❓ 1. The [description] looks good.
   * ❓ 2. There is [consensus] that the contribution should go into to Flink.
   * ❓ 3. Needs [attention] from.
   * ❓ 4. The change fits into the overall [architecture].
   * ❓ 5. Overall code [quality] is good.
   
   Please see the [Pull Request Review Guide](https://flink.apache.org/contributing/reviewing-prs.html) for a full explanation of the review process.<details>
    The Bot is tracking the review progress through labels. Labels are applied according to the order of the review items. For consensus, approval by a Flink committer of PMC member is required <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot approve description` to approve one or more aspects (aspects: `description`, `consensus`, `architecture` and `quality`)
    - `@flinkbot approve all` to approve all aspects
    - `@flinkbot approve-until architecture` to approve everything until `architecture`
    - `@flinkbot attention @username1 [@username2 ..]` to require somebody's attention
    - `@flinkbot disapprove architecture` to remove an approval you gave earlier
   </details>


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on issue #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on issue #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618306450


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "PENDING",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161601076",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1 Travis: [PENDING](https://travis-ci.com/github/flink-ci/flink/builds/161601076) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on issue #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on issue #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618306450


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "DELETED",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161601076",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "FAILURE",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161626000",
       "triggerID" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132",
       "triggerID" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063 UNKNOWN
   * 4c80d03a4dcd4eadbcd66326b8abac9c19f55527 Travis: [FAILURE](https://travis-ci.com/github/flink-ci/flink/builds/161626000) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on issue #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on issue #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618306450


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "CANCELED",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161601076",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1 Travis: [CANCELED](https://travis-ci.com/github/flink-ci/flink/builds/161601076) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123) 
   * 2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063 UNKNOWN
   * 4c80d03a4dcd4eadbcd66326b8abac9c19f55527 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on issue #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on issue #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618306450


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "DELETED",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161601076",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "PENDING",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161626000",
       "triggerID" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132",
       "triggerID" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063 UNKNOWN
   * 4c80d03a4dcd4eadbcd66326b8abac9c19f55527 Travis: [PENDING](https://travis-ci.com/github/flink-ci/flink/builds/161626000) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618306450


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "DELETED",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161601076",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "FAILURE",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161626000",
       "triggerID" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132",
       "triggerID" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "SUCCESS",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161626000",
       "triggerID" : "618583200",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132",
       "triggerID" : "618583200",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063 UNKNOWN
   * 4c80d03a4dcd4eadbcd66326b8abac9c19f55527 Travis: [SUCCESS](https://travis-ci.com/github/flink-ci/flink/builds/161626000) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on issue #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on issue #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618306450


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "PENDING",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161601076",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1 Travis: [PENDING](https://travis-ci.com/github/flink-ci/flink/builds/161601076) Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] dianfu commented on issue #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
dianfu commented on issue #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618432764


   @flinkbot run azure


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] dianfu commented on pull request #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
dianfu commented on pull request #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618752518


   @flinkbot run azure


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot commented on issue #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
flinkbot commented on issue #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618306450


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618306450


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=123",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "status" : "DELETED",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161601076",
       "triggerID" : "dcfd81a2c9b8a7c22f67f6f071dfd6ffb67f48e1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "FAILURE",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161626000",
       "triggerID" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132",
       "triggerID" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4c80d03a4dcd4eadbcd66326b8abac9c19f55527",
       "status" : "PENDING",
       "url" : "https://travis-ci.com/github/flink-ci/flink/builds/161626000",
       "triggerID" : "618583200",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 2d262e3386d3b2583bb05fc0fd6d2a3eeef9a063 UNKNOWN
   * 4c80d03a4dcd4eadbcd66326b8abac9c19f55527 Travis: [PENDING](https://travis-ci.com/github/flink-ci/flink/builds/161626000) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=132) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] dianfu commented on pull request #11881: [FLINK-15971][python] Adjust the default value of bundle size and bundle time

Posted by GitBox <gi...@apache.org>.
dianfu commented on pull request #11881:
URL: https://github.com/apache/flink/pull/11881#issuecomment-618583048






----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org