Skip to content

Commit

Permalink
Add pipeline description
Browse files Browse the repository at this point in the history
  • Loading branch information
Amar3tto committed Feb 23, 2024
1 parent 835b0e7 commit 3437383
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Java/src/main/java/bigtable/ReadWithRowFilterBigTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Pipeline for reading data from Google Cloud Bigtable with row filtering and key range
* specification. The pipeline uses the {@code BigtableIO.read()} transform to read rows from a
* specified table in a Cloud Bigtable instance, applying a custom row filter based on a regular
* expression to selectively exclude rows. The {@code withKeyRange()} method is used to limit the
* scope of keys read from the Cloud Bigtable table, allowing for more targeted data retrieval.
*/
public class ReadWithRowFilterBigTable {

private static final Logger LOG = LoggerFactory.getLogger(ReadWithRowFilterBigTable.class);
Expand Down

0 comments on commit 3437383

Please sign in to comment.