From commits-return-94263-archive-asf-public=cust-asf.ponee.io@beam.apache.org Tue Sep 25 00:44:04 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 215F318067B for ; Tue, 25 Sep 2018 00:44:03 +0200 (CEST) Received: (qmail 22589 invoked by uid 500); 24 Sep 2018 22:44:03 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 22580 invoked by uid 99); 24 Sep 2018 22:44:03 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Sep 2018 22:44:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id BB6B5C01C1 for ; Mon, 24 Sep 2018 22:44:02 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -109.501 X-Spam-Level: X-Spam-Status: No, score=-109.501 tagged_above=-999 required=6.31 tests=[ENV_AND_HDR_SPF_MATCH=-0.5, KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_MED=-2.3, SPF_PASS=-0.001, USER_IN_DEF_SPF_WL=-7.5, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id lf3ag-pcEPRn for ; Mon, 24 Sep 2018 22:44:01 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 1C1845F2F0 for ; Mon, 24 Sep 2018 22:44:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 5ABFAE0047 for ; Mon, 24 Sep 2018 22:44:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 1C79523F9E for ; Mon, 24 Sep 2018 22:44:00 +0000 (UTC) Date: Mon, 24 Sep 2018 22:44:00 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: commits@beam.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Work logged] (BEAM-5288) Modify Environment to support non-dockerized SDK harness deployments MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/BEAM-5288?focusedWorklogId=147359&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-147359 ] ASF GitHub Bot logged work on BEAM-5288: ---------------------------------------- Author: ASF GitHub Bot Created on: 24/Sep/18 22:43 Start Date: 24/Sep/18 22:43 Worklog Time Spent: 10m Work Description: angoenka commented on issue #6441: [BEAM-5288] Support environment pipeline option in Java and Python. URL: https://github.com/apache/beam/pull/6441#issuecomment-424149599 Run Java PostCommit ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on 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 Issue Time Tracking ------------------- Worklog Id: (was: 147359) Time Spent: 9h (was: 8h 50m) > Modify Environment to support non-dockerized SDK harness deployments > --------------------------------------------------------------------- > > Key: BEAM-5288 > URL: https://issues.apache.org/jira/browse/BEAM-5288 > Project: Beam > Issue Type: New Feature > Components: beam-model > Reporter: Maximilian Michels > Assignee: Ankur Goenka > Priority: Major > Time Spent: 9h > Remaining Estimate: 0h > > As of mailing discussions and BEAM-5187, it has become clear that we need to extend the Environment information. In addition to the Docker environment, the extended environment holds deployment options for 1) a process-based environment, 2) an externally managed environment. > The proto definition, as of now, looks as follows: > {noformat} > message Environment { > // (Required) The URN of the payload > string urn = 1; > // (Optional) The data specifying any parameters to the URN. If > // the URN does not require any arguments, this may be omitted. > bytes payload = 2; > } > message StandardEnvironments { > enum Environments { > DOCKER = 0 [(beam_urn) = "beam:env:docker:v1"]; > PROCESS = 1 [(beam_urn) = "beam:env:process:v1"]; > EXTERNAL = 2 [(beam_urn) = "beam:env:external:v1"]; > } > } > // The payload of a Docker image > message DockerPayload { > string container_image = 1; // implicitly linux_amd64. > } > message ProcessPayload { > string os = 1; // "linux", "darwin", .. > string arch = 2; // "amd64", .. > string command = 3; // process to execute > map env = 4; // environment variables > } > {noformat} -- This message was sent by Atlassian JIRA (v7.6.3#76005)