[
https://issues.apache.org/jira/browse/BEAM-3342?focusedWorklogId=266363&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-266363
]
ASF GitHub Bot logged work on BEAM-3342:
----------------------------------------
Author: ASF GitHub Bot
Created on: 25/Jun/19 06:48
Start Date: 25/Jun/19 06:48
Worklog Time Spent: 10m
Work Description: mf2199 commented on pull request #8457: [BEAM-3342]
Create a Cloud Bigtable IO connector for Python
URL: https://github.com/apache/beam/pull/8457#discussion_r297029622
##########
File path: sdks/python/apache_beam/io/gcp/bigtableio.py
##########
@@ -37,16 +37,23 @@
"""
from __future__ import absolute_import
+from collections import namedtuple
+from random import shuffle
+
import apache_beam as beam
+from apache_beam.io import iobase
+from apache_beam.io.range_trackers import LexicographicKeyRangeTracker
from apache_beam.metrics import Metrics
from apache_beam.transforms.display import DisplayDataItem
try:
from google.cloud.bigtable import Client
+ from google.cloud.bigtable.row_set import RowRange
+ from google.cloud.bigtable.row_set import RowSet
except ImportError:
- pass
+ Client = None
-__all__ = ['WriteToBigTable']
+__all__ = ['BigtableSource', 'WriteToBigTable']
Review comment:
Done.
----------------------------------------------------------------
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:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 266363)
Time Spent: 23h 20m (was: 23h 10m)
> Create a Cloud Bigtable IO connector for Python
> -----------------------------------------------
>
> Key: BEAM-3342
> URL: https://issues.apache.org/jira/browse/BEAM-3342
> Project: Beam
> Issue Type: Bug
> Components: sdk-py-core
> Reporter: Solomon Duskis
> Assignee: Solomon Duskis
> Priority: Major
> Time Spent: 23h 20m
> Remaining Estimate: 0h
>
> I would like to create a Cloud Bigtable python connector.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)