You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by me...@apache.org on 2018/05/01 17:50:38 UTC

[beam-site] branch mergebot updated (53ec61b -> 1daf7f2)

This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a change to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git.


    from 53ec61b  This closes #423
     add c770470  Prepare repository for deployment.
     new 709841a  [BEAM-4177] Clarify thread contraint in Programming Guide 4.3.2
     new 1daf7f2  This closes #430

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 content/documentation/dsls/sql/index.html          |   1 +
 .../sdks/feature-comparison/index.html             |   1 +
 .../documentation/sdks/java-extensions/index.html  |   1 +
 .../index.html                                     | 147 ++++++++++++++-------
 content/documentation/sdks/java/index.html         |   3 +
 content/documentation/sdks/java/nexmark/index.html |   1 +
 .../documentation/sdks/python-custom-io/index.html |   1 +
 .../sdks/python-pipeline-dependencies/index.html   |   1 +
 .../sdks/python-type-safety/index.html             |   1 +
 content/documentation/sdks/python/index.html       |   1 +
 src/documentation/programming-guide.md             |   2 +-
 11 files changed, 113 insertions(+), 47 deletions(-)
 copy content/documentation/sdks/{java-extensions => java-thirdparty}/index.html (67%)

-- 
To stop receiving notification emails like this one, please contact
mergebot-role@apache.org.

[beam-site] 02/02: This closes #430

Posted by me...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a commit to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git

commit 1daf7f237af78b9cae54e9e095a9c5c0f7c42f11
Merge: c770470 709841a
Author: Mergebot <me...@apache.org>
AuthorDate: Tue May 1 10:49:58 2018 -0700

    This closes #430

 src/documentation/programming-guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
mergebot-role@apache.org.

[beam-site] 01/02: [BEAM-4177] Clarify thread contraint in Programming Guide 4.3.2

Posted by me...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a commit to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git

commit 709841aff329b58fe9cd670c32edc9d5f96d1763
Author: John MacMillan <jo...@ca.ibm.com>
AuthorDate: Thu Apr 26 10:32:50 2018 -0400

    [BEAM-4177] Clarify thread contraint in Programming Guide 4.3.2
    
    As checked on the dev mailing list, the instance will only be active on a
    single thread at a time, not the more restrictive single thread ever.
    
    Without clarification, some developers may conservatively assume the constraint
    is more restrictive than it really is.
---
 src/documentation/programming-guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/documentation/programming-guide.md b/src/documentation/programming-guide.md
index 31db9be..b94fbee 100644
--- a/src/documentation/programming-guide.md
+++ b/src/documentation/programming-guide.md
@@ -1281,7 +1281,7 @@ Some other serializability factors you should keep in mind are:
 #### 4.3.2. Thread-compatibility {#user-code-thread-compatibility}
 
 Your function object should be thread-compatible. Each instance of your function
-object is accessed by a single thread on a worker instance, unless you
+object is accessed by a single thread at a time on a worker instance, unless you
 explicitly create your own threads. Note, however, that **the Beam SDKs are not
 thread-safe**. If you create your own threads in your user code, you must
 provide your own synchronization. Note that static members in your function

-- 
To stop receiving notification emails like this one, please contact
mergebot-role@apache.org.