Certified Heroku Architecture Designer v1.0 (Certified Heroku Architecture Designer)

Page:    1 / 8   
Total 120 questions

Universal Containers needs to write their Heroku application's logs to two destinations: an on-premise Syslog log server and a cloud analytics provider that ingests logs using an HTTPS endpoint.
What should an Architect recommend in this scenario?

  • A. Publish all logs to Apache Kafka on Heroku, and create a separate app that consumes and distributes log messages.
  • B. Write all logs to Heroku Redis as a buffer and use an add-on to send them to both destinations.
  • C. Add a logging library to the application source that sends all logs directly to both destinations.
  • D. Write all logs to stdout, and configure a separate log drain for each destination.


Answer : D

Reference:
https://devcenter.heroku.com/articles/logging

A hospital is planning to rewrite its on-premise patient registration system. Their current system is HIPAA-compliant as well as ISO 27018-compliant. They need to maintain these same certification levels after the rewrite. Their new app also needs to sync PII (personally identifiable information) data with their Salesforce org.
What Heroku Enterprise solutions should an Architect propose?

  • A. Build the app in a Shield Private Space, with a Shield Heroku Postgres database, and use Apache Kafka on Heroku to stream from the Salesforce org.
  • B. Build the app in the Common Runtime, use a Heroku Postgres database, and use Heroku Connect to sync to Salesforce.
  • C. Build the app in a Shield Private Space, with a Shield Heroku Postgres database, and use Shield Heroku Connect to sync to Salesforce.
  • D. Build the app in a Private Space with a Private Heroku Postgres database, and use Heroku Connect to sync to Salesforce.


Answer : C

A client is creating a new API application. The app should only be accessible from other apps that they deploy to Heroku. Also, traffic between the other apps and the API should not transit the public internet.
Which solution should an Architect recommend to meet these requirements?

  • A. Create the application in a Private Space with default options.
  • B. Create the application in a Private Space and restrict the application's set of trusted IP ranges.
  • C. Create the application with Internal Routing enabled, in a Private Space.
  • D. Create the application in a Shield Private Space to enforce stricter requirements for TLS termination.


Answer : B

Reference:
https://www.accidentaladmintoawesomearch.com/blog/what-you-need-to-know-to-pass-the-heroku-architecture-designer-exam

A client has data in a production Heroku Postgres database, and needs to quickly get access to a subset of that data for reporting needs.
Which two features does Heroku Dataclips provide to enable this? (Choose two.)

  • A. JSON export of query results, with CORS support
  • B. CSV export of query results
  • C. A simple REST API access to query results
  • D. Postgres dump file of query results


Answer : AB

Reference:
https://www.heroku.com/podcasts/codeish/8-sharing-data-with-dataclips

Which three items are required to successfully set up Single Sign-on (SSO) services with Heroku? (Choose three.)

  • A. An identity provider with built-in support for Heroku
  • B. A Heroku Enterprise Team
  • C. An existing Heroku account for each user
  • D. At least one valid SSO certificate
  • E. Administrative permissions on the selected identity provider


Answer : ABE

Reference:
https://devcenter.heroku.com/articles/using-sso-services-with-heroku#sso-setup-for-other-saml-2-0-compliant-idps

Universal Containers intends to build an app which will accept card payments. The app also needs to store, process, and transmit cardholder data.
Which Heroku architecture should an Architect recommend?

  • A. Common Runtime with secure, isolated containers for running the app's code.
  • B. A Private Space restricted to a set of trusted IP ranges.
  • C. A Shield Private Space with a Shield Postgres add-on.
  • D. A Private Space with Internal Routing enabled on the app.


Answer : C

Reference:
https://www.heroku.com/managed-data-services

A client wants to create a secure network connection between Heroku applications running in a Private Space and an AWS VPC.
Which Heroku feature should an Architect recommend to create the connection?

  • A. Internal Routing
  • B. Private Space Peering
  • C. Private Space VPN connections
  • D. Heroku Connect


Answer : C

Reference:
https://blog.heroku.com/private-spaces-vpn

A client wants to add CPU-intensive video processing functionality to their Heroku web application.
Which two strategies should an Architect recommend for implementing this functionality? (Choose two.)

  • A. Add a new process type for worker dynos that pull video processing jobs from a queue.
  • B. Attach a video processing add-on from the Heroku Elements Marketplace to the application.
  • C. Delegate video processing tasks to the app's staging version to remove load from the production app.
  • D. Divide each video processing task across multiple web dynos to mitigate added CPU load.


Answer : AB

Reference:
https://devcenter.heroku.com/articles/how-heroku-works

Universal Containers has a Heroku app that uses several third-party add-ons. They now need to enforce data privacy and be compliant with General Data
Protection Regulation (GDPR).
What should an Architect advise UC regarding data residency in this scenario?

  • A. Heroku does not control where add-on providers store data.
  • B. Heroku support can configure add-ons for specific data residency needs.
  • C. Heroku guarantees the physical location of its control surface APIs.
  • D. Data residency for add-ons is covered under Salesforce's GDPR compliance.


Answer : B

An app uses a queue of worker dynos to perform complex image processing, but the worker dynos are occasionally running out of memory when performing the processing. All of their dynos are currently standard-1x dynos.
What should an Architect recommend in this scenario?

  • A. Add additional worker dynos.
  • B. Break up the image processing across multiple dynos.
  • C. Move the app to a Private Space.
  • D. Change the type of dynos to standard-2x.


Answer : D

Reference:
https://devcenter.heroku.com/articles/scaling

A client wants to use Heroku to build a data bridge between Salesforce and Google Cloud Platform (GCP).
Which combination of Heroku features should an Architect recommend to secure the connection between Heroku and GCP?

  • A. Heroku Shield Private Spaces and Heroku Shield Connect
  • B. Heroku Private Spaces and Private Space VPN Connections
  • C. Heroku Private Spaces and Private Space Peering
  • D. Heroku Shield Private Spaces and Internal Routing


Answer : A

Part of a client's design is the ability to easily share between two applications running on Heroku.
What should an Architect recommend?

  • A. Attach a single storage add-on, such as Heroku Postgres, to both applications.
  • B. Create Foreign Data Wrappers to expose the tables from one database to another.
  • C. Provision Heroku Connect to sync the data into a custom object in Salesforce.
  • D. Provision Apache Kafka on Heroku to easily stream the data between the two apps.


Answer : A

A healthcare services client is requesting an architecture for a set of applications: one is a marketing application, and the other two are of customer service applications that allow for customers to interact with their healthcare records. The marketing application must be able to scale up within seconds in response to traffic spikes. The client wants to be able to deploy each of these applications to the U.S. East Coast and EMEA.
Which applications should be deployed into which Heroku runtime?

  • A. The marketing application into Private Spaces; customer service applications into Shield Private Spaces
  • B. The marketing application into the Common Runtime; customer service applications into Shield Private Spaces
  • C. The marketing application into the Common Runtime; customer service applications into Private Spaces
  • D. The marketing application into Private Spaces; customer service applications into separate Private Spaces


Answer : A

For which two use cases should an Architect recommend using Heroku Redis? (Choose two.)

  • A. Providing long-term data warehousing
  • B. Adding jobs to a queue
  • C. Providing a data cache layer
  • D. Querying relational data


Answer : AD

Reference:
https://blog.heroku.com/heroku-redis-ga-and-introducing-heroku-data-links

Universal Containers experienced an outage with their production Heroku Postgres database due to a fault with the underlying infrastructure. The database was unavailable for an hour. The database is on the Standard-0 plan.
Which two actions should an Architect recommend to mitigate such database failures and outages in the future? (Choose two.)

  • A. Create a follower database that uses the same plan as the leader.
  • B. Migrate the database to a Premium-tier plan.
  • C. Migrate the database to a larger Standard-tier plan.
  • D. Create a fork of the database that uses the same plan as the leader.


Answer : AC

Reference:
https://devcenter.heroku.com/articles/updating-heroku-postgres-databases

Page:    1 / 8   
Total 120 questions