ExamGecko
Home Home / Salesforce / Certified Heroku Architecture Designer

Salesforce Certified Heroku Architecture Designer Practice Test - Questions Answers, Page 13

Question list
Search
Search

List of questions

Search

Related questions











What are 3 examples of backing services, as described in the Twelve Factor app methodology?

A.
A database
A.
A database
Answers
B.
A logging tool
B.
A logging tool
Answers
C.
An email delivery service
C.
An email delivery service
Answers
D.
A background process with a long running task
D.
A background process with a long running task
Answers
Suggested answer: A, B, C

Explanation:

- https/Vdevcenter heroku.com/articles/internal-routing

Universal Containers (UC) has an app that allows a costumer to schedule a compute-intensive job. It allows the costumer to schedule the job on an ad-hoc basis. UC has decided to break up the app into the following services: - Website: an Interface for their costumers; -Billing: generates monthly invoices based on usage metrics; - Traffic Cop: manages the job queue, job definitions and job schedule; - Job Runner; runs jobs that Traffic Cop queues up. It Is responsible for self-introspection and self-scaling. UC also wants to create a data lake for analytics. What foundational technology and design should an Architect use to manage communication between these services?

A.
Apache Kafka on Heroku as a bus between all services Create topics for billing, jobs, and website clicks Create an additional service, which will subscribe for all topics, and dump every message into a data lake
A.
Apache Kafka on Heroku as a bus between all services Create topics for billing, jobs, and website clicks Create an additional service, which will subscribe for all topics, and dump every message into a data lake
Answers
B.
Heroku Redis, create a large Redis store. Allow each service to place messages with an agreedupon format into a single queue, backed by the Redis store Services listen for messages addressed to them and take action on them. Redis will serve as the data lake.
B.
Heroku Redis, create a large Redis store. Allow each service to place messages with an agreedupon format into a single queue, backed by the Redis store Services listen for messages addressed to them and take action on them. Redis will serve as the data lake.
Answers
C.
Heroku Connect and Salesforce Sync all relevant data into Salesforce and allow it to flow into each service Create custom objects for each service and alow them to post to each others' objects as needed. Push data from Salesforce into Heroku Postgres for a data lake.
C.
Heroku Connect and Salesforce Sync all relevant data into Salesforce and allow it to flow into each service Create custom objects for each service and alow them to post to each others' objects as needed. Push data from Salesforce into Heroku Postgres for a data lake.
Answers
D.
Apache Kafka on Heroku Create a Kafka queue for each service. Create a central routing service that connects to all of the Kafka queues and routes data. The central router is attached to a data lake, and pushes every message into It.
D.
Apache Kafka on Heroku Create a Kafka queue for each service. Create a central routing service that connects to all of the Kafka queues and routes data. The central router is attached to a data lake, and pushes every message into It.
Answers
Suggested answer: A

Explanation:

- https //devcenterheroku.com/articles/private-spaces#lruslecl-ip-ranges

Universal Containers has multiple Heroku applications that use the same Heroku Postgres database.

One of those applications, SFDC-sync. uses Heroku Connect to sync the data between a Salesforce org and the Heroku Postgres database. If the SFDC-sync app Is deleted. Heroku Connect will stop syncing dat a. What is another consequence of deleting the SFDC-sync app?

A.
All tables synced with Heroku Connect will be removed from the Heroku Postgres database
A.
All tables synced with Heroku Connect will be removed from the Heroku Postgres database
Answers
B.
Existing data will remain in both locations.
B.
Existing data will remain in both locations.
Answers
C.
All synced objects will be removed from the Salesforce org
C.
All synced objects will be removed from the Salesforce org
Answers
D.
All tables will be removed from the Heroku Postgre database
D.
All tables will be removed from the Heroku Postgre database
Answers
Suggested answer: A

Explanation:

-https://devcenter.heroku.eom/articles/privale-spaces#lrusted-ip-ranges

A client wants to deconstruct a monolithic app into a collection of smaller apps which should be able to send HTTP requests to each other. The smaller apps should not be publicly accessible on the internet. Which Heroku Enterprise features should an Architect recommend to enable this architecture?

A.
Heroku and Apache Kafka on Heroku
A.
Heroku and Apache Kafka on Heroku
Answers
B.
Heroku Connect and Internal Routing
B.
Heroku Connect and Internal Routing
Answers
C.
Heroku Private Spaces and Heroku Connect
C.
Heroku Private Spaces and Heroku Connect
Answers
D.
Heroku Private Spaces and Internal Routing
D.
Heroku Private Spaces and Internal Routing
Answers
Suggested answer: D

Explanation:

-https://www.heroku.com/tech-sessions/get-started-wtth-apache-kafka

A client has a data Ina SAP data store. The client uses Heroku External Objects to expose Heroku Postgres tables in their Salesforce org. They want to perform custom transformations on the SAP data and then expose the transformed data in their Salesforce org. Which solution should an Architect recommend?

A.
Use Salesforce Connect to perform any necessary transformations on Vie SAP data and sync the transformed data to the Salesforce org.
A.
Use Salesforce Connect to perform any necessary transformations on Vie SAP data and sync the transformed data to the Salesforce org.
Answers
B.
Use Heroku Connect to sync the SAP data to Heroku Postgres and then perform any necessary transformations Ensure the transformes data is in a table that is exposed in the Salesforce org.
B.
Use Heroku Connect to sync the SAP data to Heroku Postgres and then perform any necessary transformations Ensure the transformes data is in a table that is exposed in the Salesforce org.
Answers
C.
Use an ETL tool to sync the SAP data to Heroku and then perform any necessary transformations.Ensure the transformes data is in a table that is exposed in the Salesforce org.
C.
Use an ETL tool to sync the SAP data to Heroku and then perform any necessary transformations.Ensure the transformes data is in a table that is exposed in the Salesforce org.
Answers
D.
Perform in-place transformations on the data in SAP and then use Heroku Connect to sync the SAP data to Heroku Postgres. Ensure the transformed data is in a table that is exposed in the Salesforce org.
D.
Perform in-place transformations on the data in SAP and then use Heroku Connect to sync the SAP data to Heroku Postgres. Ensure the transformed data is in a table that is exposed in the Salesforce org.
Answers
Suggested answer: C

Explanation:

- https//www.heroKu.com/tech-sessions/get-started-wlth-apache-kafka

Universal Containers would like to avoid H12 ("request timeout") and H22 ("connection limit reached") errors when running an e-commerce retail site that must process millions of inbound requests during their one-day semi-annual sale. Which two solution measures should an Architect recommend to prepare for the semi-annual sale?

A.
Implement load balancing using Kafka
A.
Implement load balancing using Kafka
Answers
B.
Engage with Heroku Support to implement load testing
B.
Engage with Heroku Support to implement load testing
Answers
C.
Enable and load test autoscaling
C.
Enable and load test autoscaling
Answers
D.
Perform load test using 10% sample size
D.
Perform load test using 10% sample size
Answers
Suggested answer: B, C

Explanation:

- https://devcenter.heroku.com/artlcles/event-driven-microservlces-with-apache-kafka

Universal Containers (UC) has a front-end web application and a back-end service application running on Heroku. The applications are running in the Common Runtime. Now, UC wants to prevent any public access to the back-end application. Which two Heroku features should an Architect propose?

A.
Private Space VPN Connections
A.
Private Space VPN Connections
Answers
B.
Private Spaces DNS Service Discovery
B.
Private Spaces DNS Service Discovery
Answers
C.
Heroku Internal Routing
C.
Heroku Internal Routing
Answers
D.
Apache Kafka on Heroku
D.
Apache Kafka on Heroku
Answers
Suggested answer: A, B

Explanation:

- https //devcenterherokucom/articles/dataclips

What does a follower of Heroku Postgres leader database provide?

A.
A static snapshot of the leader
A.
A static snapshot of the leader
Answers
B.
A in-memory snapshot of the leader.
B.
A in-memory snapshot of the leader.
Answers
C.
A read-only replica of the leader.
C.
A read-only replica of the leader.
Answers
D.
A writable replica of the leader.
D.
A writable replica of the leader.
Answers
Suggested answer: C

Explanation:

- https://devcenter.heroku.eom/articles/rieroku-corinect-database-tables#encrypted-strings

A customer would like to analyze data stored in a single, large, high-traffic Heroku Postgres database using a reporting tool that runs long-running, expensive read queries. What reporting architecture should be recommended?

A client wants to create a Heroku web application that needs to provide a low-latency experience for its users, who are based primarily in Japan. Many common user actions will result in synchronous writes to the application's Heroku Postgres database. The application does not have advanced compliance requirements. Which should an Architect recommend?

A.
Deploy the application to a Shield Private Space In the Tokyo region
A.
Deploy the application to a Shield Private Space In the Tokyo region
Answers
B.
Deploy the application to the Common Runtime in the Tokyo region
B.
Deploy the application to the Common Runtime in the Tokyo region
Answers
C.
Deploy the application to a Private Space in the Tokyo region
C.
Deploy the application to a Private Space in the Tokyo region
Answers
D.
Deploy the application to the Common Runtime in the U.S region and use a CDN to accelerate content delivery
D.
Deploy the application to the Common Runtime in the U.S region and use a CDN to accelerate content delivery
Answers
Suggested answer: C

Explanation:

-https://devcenter.heroku.com/articles/dataclips

Heroku Connect data replication happens:

A.
Near real time for writes to Salesforce. and on a 30-second polling window for writes to Heroku Postgres
A.
Near real time for writes to Salesforce. and on a 30-second polling window for writes to Heroku Postgres
Answers
B.
Near real time for writes to Salesforce. and either on a polling window or near real time for writes to Heroku Postgres (depending on the user configuration)
B.
Near real time for writes to Salesforce. and either on a polling window or near real time for writes to Heroku Postgres (depending on the user configuration)
Answers
C.
Instantly in both directions
C.
Instantly in both directions
Answers
D.
Near real time in both directions
D.
Near real time in both directions
Answers
Suggested answer: B
Total 185 questions
Go to page: of 19