[PDE CERTIFICATE - EXAMTOPIC] DUMPS Q36-Q40

Google Professional Data Engineer Certificate EXAMTOPIC DUMPS Q36-Q40

Q 38.

MJTelco Case Study

Company Overview

MJTelco is a startup that plans to build networks in rapidly growing, underserved markets around the world. The company has patents for innovative optical communications hardware. Based on these patents, they can create many reliable, high-speed backbone links with inexpensive hardware.

Company Background
  • Founded by experienced telecom executives, MJTelco uses technologies originally developed to overcome communications challenges in space. Fundamental to their operation, they need to create a distributed data infrastructure that drives real-time analysis and incorporates machine learning to continuously optimize their topologies. Because their hardware is inexpensive, they plan to overdeploy the network allowing them to account for the impact of dynamic regional politics on location availability and cost.
  • Their management and operations teams are situated all around the globe creating many-to-many relationship between data consumers and provides in their system. After careful consideration, they decided public cloud is the perfect environment to support their needs.
Solution Concept

MJTelco is running a successful proof-of-concept (PoC) project in its labs. They have two primary needs:

  • Scale and harden their PoC to support significantly more data flows generated when they ramp to more than 50,000 installations.
  • Refine their machine-learning cycles to verify and improve the dynamic models they use to control topology definition.
  • MJTelco will also use three separate operating environments "" development/test, staging, and production "" to meet the needs of running experiments, deploying new features, and serving production customers.
Business Requirements
  • Scale up their production environment with minimal cost, instantiating resources when and where needed in an unpredictable, distributed telecom user community.
  • Ensure security of their proprietary data to protect their leading-edge machine learning and analysis.
  • Provide reliable and timely access to data for analysis from distributed research workers
  • Maintain isolated environments that support rapid iteration of their machine-learning models without affecting their customers.
Technical Requirements -
  • Ensure secure and efficient transport and storage of telemetry data
  • Rapidly scale instances to support between 10,000 and 100,000 data providers with multiple flows each.
  • Allow analysis and presentation against data tables tracking up to 2 years of data storing approximately 100m records/day
  • Support rapid iteration of monitoring infrastructure focused on awareness of data pipeline problems both in telemetry flows and in production learning cycles.
CEO Statement

Our business model relies on our patents, analytics and dynamic machine learning. Our inexpensive hardware is organized to be highly reliable, which gives us cost advantages. We need to quickly stabilize our large distributed data pipelines to meet our reliability and capacity commitments.

CTO Statement

Our public cloud services must operate as advertised. We need resources that scale and keep our data secure. We also need environments in which our data scientists can carefully study and quickly adapt our models. Because we rely on automation to process our data, we also need our development and test environments to work as we iterate.

CFO Statement

The project is too large for us to maintain the hardware and software required for the data and analysis. Also, we cannot afford to staff an operations team to monitor so many data feeds, so we will rely on automation and infrastructure. Google Cloud's machine learning will allow our quantitative researchers to work on our high-value problems instead of problems with our data pipelines.

Question

MJTelco's _Google Cloud Dataflow pipeline is now ready to start receiving data from the 50,000 installations. You want _to allow Cloud Dataflow to scale its compute power up as required. Which Cloud Dataflow pipeline configuration setting should you update?

  • ❌ A. The zone
  • ❌ B. The number of workers
  • ❌ C. The disk size per worker
  • D. The maximum number of workers

Deploying a Dataflow pipeline

Autoscaling

Dataflow Streaming Autoscaling
to scale its compute power up "as required"

--autoscaling_algorithm=THROUGHPUT_BASED
--max_num_workers=N
  • The objective of autoscaling streaming pipelines is to minimize backlog while maximizing worker utilization and throughput, and quickly react to spikes in load.
  • By enabling autoscaling, you don't have to choose between provisioning for peak load and fresh results. Workers are added as CPU utilization and backlog increase and are removed as these metrics come down. This way, you’re paying only for what you need, and the job is processed as efficiently as possible.

Q 39.

MJTelco Case Study ( Continued Q38-Q40 )

You need to compose visualizations for operations teams with the following requirements:

  • The report must include telemetry data from all 50,000 installations for the most resent 6 weeks (sampling once every minute).
  • The report must not be more than 3 hours delayed from live data.
  • The actionable report should only show suboptimal links.
  • Most suboptimal links should be sorted to the top.
  • Suboptimal links can be grouped and filtered by regional geography.
  • User response time to load the report must be <5 seconds.
    Which approach meets the requirements?
  • ❌ A. Load the data into Google Sheets, use formulas to calculate a metric, and use filters/sorting to show only suboptimal links in a table.
  • ❌ B. Load the data into Google BigQuery tables, write Google Apps Script that queries the data, calculates the metric, and shows only suboptimal rows in a table in Google Sheets.
  • ❌ C. Load the data into Google Cloud Datastore tables, write a Google App Engine Application that queries all rows, applies a function to derive the metric, and then renders results in a table using the Google charts and visualization API.
    It may work but need to consider user response time ; not best solution for requirements
  • D. Load the data into Google BigQuery tables, write a Google Data Studio 360 report that connects to your data, calculates a metric, and then uses a filter expression to show only suboptimal rows in a table.
RULEs OF ANSWER
  • NO GOOGLE SHEETS for LARGE DATA
  • VISUALIZATION, REORTING TOOL for GCP (mostly) : DATA STUDIO
  • DATAWAREHOUSE for ANALYSIS (mostly) : BigQuery

Q 40.

MJTelco Case Study ( Continued Q38-Q40 )

You create a new report for your large team in Google Data Studio 360. The report uses Google BigQuery as its data source. It is company policy to ensure employees can view only the data associated with their region, so you create and populate a table for each region. You need to enforce the regional access policy to the data. Which two actions should you take? (Choose two.)

  • ❌ A. Ensure all the tables are included in global dataset.
    Not follow regional access policy
  • B. Ensure_ each table is included in a dataset for a region_.
  • C. Adjust the settings for each table to allow a related region-based security group view access.
  • ⚠️ D. Adjust the settings for each view to allow a related region-based security group view access.
  • ⭕ E. Adjust the settings for each dataset to allow a related region-based security group view access.

Bigquery table ACL

Limitation of view

BigQuery - Views / limitations

  • Views are read-only. You cannot run DML (insert, update, delete) queries against a view.
  • The dataset that contains your view and the dataset that contains the tables referenced by the view must be in the same location.
  • You cannot use the TableDataList JSON API method to retrieve data from a view.