Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id D1E7C200D62 for ; Sat, 2 Dec 2017 01:28:22 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id CD8B6160C1B; Sat, 2 Dec 2017 00:28:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 201D7160C18 for ; Sat, 2 Dec 2017 01:28:21 +0100 (CET) Received: (qmail 63203 invoked by uid 500); 2 Dec 2017 00:28:21 -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 63191 invoked by uid 99); 2 Dec 2017 00:28:21 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 Dec 2017 00:28:21 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 7CE981A15E0 for ; Sat, 2 Dec 2017 00:28:20 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id XdVdh54k6yFF for ; Sat, 2 Dec 2017 00:28:18 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 3A5C8611B2 for ; Sat, 2 Dec 2017 00:28:14 +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 14BD5E0EF1 for ; Sat, 2 Dec 2017 00:28:13 +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 2B10B255E1 for ; Sat, 2 Dec 2017 00:28:12 +0000 (UTC) Date: Sat, 2 Dec 2017 00:28:12 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: commits@beam.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (BEAM-1630) Add Splittable DoFn to Python SDK MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Sat, 02 Dec 2017 00:28:23 -0000 [ https://issues.apache.org/jira/browse/BEAM-1630?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16275276#comment-16275276 ] ASF GitHub Bot commented on BEAM-1630: -------------------------------------- chamikaramj commented on a change in pull request #4064: [BEAM-1630] Adds support for processing Splittable DoFns using DirectRunner. URL: https://github.com/apache/beam/pull/4064#discussion_r154203185 ########## File path: sdks/python/apache_beam/runners/direct/sdf_direct_runner_test.py ########## @@ -0,0 +1,237 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +"""Unit tests for SDF implementation for DirectRunner.""" + +import logging +import os +import unittest + +import apache_beam as beam +from apache_beam import DoFn +from apache_beam.io import filebasedsource_test +from apache_beam.io.restriction_trackers import OffsetRestrictionTracker +from apache_beam.testing.test_pipeline import TestPipeline +from apache_beam.testing.util import assert_that +from apache_beam.testing.util import equal_to +from apache_beam.transforms.core import ProcessContinuation +from apache_beam.transforms.core import RestrictionProvider +from apache_beam.transforms.trigger import AccumulationMode +from apache_beam.transforms.window import SlidingWindows +from apache_beam.transforms.window import TimestampedValue + + +class ReadFilesProvider(RestrictionProvider): + + def restriction_coder(self): + return object() + + def initial_restriction(self, element): + size = os.path.getsize(element) + return (0, size) + + def create_tracker(self, restriction): + return OffsetRestrictionTracker(restriction[0], restriction[1]) + + def split(self, element, restriction): + return [restriction,] + + +class ReadFiles(DoFn): + + def __init__(self, resume_count=None): + self._resume_count = resume_count + + def process( + self, element, restriction_tracker=ReadFilesProvider(), *args, **kwargs): + file_name = element + file = open(file_name, 'rb') Review comment: Done (added with statement). ---------------------------------------------------------------- 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 > Add Splittable DoFn to Python SDK > --------------------------------- > > Key: BEAM-1630 > URL: https://issues.apache.org/jira/browse/BEAM-1630 > Project: Beam > Issue Type: Improvement > Components: sdk-py-core > Reporter: Chamikara Jayalath > Assignee: Chamikara Jayalath > > Splittable DoFn [1] is currently being implemented for Java SDK [2]. We should add this to Python SDK as well. > Following document proposes an API for this. > https://docs.google.com/document/d/1h_zprJrOilivK2xfvl4L42vaX4DMYGfH1YDmi-s_ozM/edit?usp=sharing > [1] https://s.apache.org/splittable-do-fn > [2] https://lists.apache.org/thread.html/0ce61ac162460a149d5c93cdface37cc383f8030fe86ca09e5699b18@%3Cdev.beam.apache.org%3E -- This message was sent by Atlassian JIRA (v6.4.14#64029)