tarun-google commented on code in PR #35599: URL: https://github.com/apache/beam/pull/35599#discussion_r2214032661
########## examples/java/src/main/java/org/apache/beam/examples/cookbook/IcebergRestCatalogStreamingWriteExample.java: ########## @@ -0,0 +1,197 @@ +/* + * 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. + */ +package org.apache.beam.examples.cookbook; + +import com.google.auth.oauth2.GoogleCredentials; +import java.io.IOException; +import java.util.Map; +import org.apache.beam.sdk.Pipeline; +import org.apache.beam.sdk.coders.RowCoder; +import org.apache.beam.sdk.extensions.gcp.options.GcpOptions; +import org.apache.beam.sdk.io.gcp.pubsub.PubsubIO; +import org.apache.beam.sdk.managed.Managed; +import org.apache.beam.sdk.options.Default; +import org.apache.beam.sdk.options.Description; +import org.apache.beam.sdk.options.PipelineOptionsFactory; +import org.apache.beam.sdk.options.Validation; +import org.apache.beam.sdk.schemas.Schema; +import org.apache.beam.sdk.transforms.DoFn; +import org.apache.beam.sdk.transforms.Filter; +import org.apache.beam.sdk.transforms.JsonToRow; +import org.apache.beam.sdk.transforms.MapElements; +import org.apache.beam.sdk.transforms.ParDo; +import org.apache.beam.sdk.transforms.Sum; +import org.apache.beam.sdk.transforms.windowing.FixedWindows; +import org.apache.beam.sdk.transforms.windowing.Window; +import org.apache.beam.sdk.values.KV; +import org.apache.beam.sdk.values.PCollection; +import org.apache.beam.sdk.values.Row; +import org.apache.beam.sdk.values.TypeDescriptors; +import org.apache.beam.vendor.guava.v32_1_2_jre.com.google.common.collect.ImmutableMap; +import org.joda.time.DateTime; +import org.joda.time.Duration; + +/** + * Reads real-time NYC taxi ride information from {@code + * projects/pubsub-public-data/topics/taxirides-realtime} and writes aggregated passenger count data + * to an Iceberg table using Beam's {@link Managed} IcebergIO sink. + * + * <p>This is a streaming pipeline that processes taxi ride events, filters for 'dropoff' status, + * aggregates passenger counts within fixed 10-second windows by minute of the ride, and writes the + * results to a single Iceberg table. The Iceberg sink triggers writes every 30 seconds, creating + * new snapshots. + */ +public class IcebergRestCatalogStreamingWriteExample { + + public static final Schema TAXIRIDES_SCHEMA = + Schema.builder() + .addInt64Field("passenger_count") + .addStringField("ride_status") + .addDateTimeField("timestamp") + .build(); + + public static final Schema AGGREGATED_SCHEMA = + Schema.builder().addStringField("ride_minute").addInt64Field("passenger_count").build(); + + /** + * Main entry point for the pipeline. + * + * @param args Command line arguments + * @throws IOException if there's an issue with GoogleCredentials + */ + public static void main(String[] args) throws IOException { + IcebergPipelineOptions options = + PipelineOptionsFactory.fromArgs(args).withValidation().as(IcebergPipelineOptions.class); + options.setProject("apache-beam-testing"); + + final String tableIdentifier = "taxi_dataset.passenger_count_by_minute"; + final String pubsubTopic = options.getTopic(); + final String catalogUri = options.getCatalogUri(); + final String warehouseLocation = options.getWarehouse(); + final String projectName = options.getProject(); + final String catalogName = options.getCatalogName(); + final int triggeringFrequencySeconds = 30; + + Map<String, String> catalogProps = + ImmutableMap.<String, String>builder() + .put("type", "rest") + .put("uri", catalogUri) + .put("warehouse", warehouseLocation) + .put("header.x-goog-user-project", projectName) + .put("oauth2-server-uri", "https://oauth2.googleapis.com/token") Review Comment: @nika-qubit "oauth2-server-uri" property is needed as per the warning. "WARNING: Iceberg REST client is missing the OAuth2 server URI configuration and defaults to https://biglake.googleapis.com/iceberg/v1beta/restcatalogv1/oauth/tokens. This automatic fallback will be removed in a future Iceberg release.It is recommended to configure the OAuth2 endpoint using the 'oauth2-server-uri' property to be prepared. This warning will disappear if the OAuth2 endpoint is explicitly configured. See https://github.com/apache/iceberg/issues/10537" -- 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. To unsubscribe, e-mail: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org