Modernize enterprise intelligence workloads utilizing Amazon Fast


Conventional enterprise intelligence (BI) integration with enterprise information warehouses has been the established sample for years. With generative AI, now you can modernize BI workloads with capabilities like interactive chat brokers, automated enterprise processes, and utilizing pure language to generate dashboards.

On this submit, we offer implementation steerage for constructing built-in analytics options that mix the generative BI options of Amazon Fast with Amazon Redshift and Amazon Athena SQL analytics capabilities. Use this submit as a reference for proof-of-concept implementations, manufacturing deployment planning, or as a studying useful resource for understanding Fast integration patterns with Amazon Redshift and Athena.

Frequent use instances

You should utilize this built-in strategy throughout a number of eventualities. The next are among the most typical use instances.

  • Conventional BI reporting advantages from bundled information warehouse and BI device pricing, making generative BI the first use case with important value benefits.
    • Insurance coverage: Automates Solvency II and IFRS 17 regulatory reporting, changing handbook spreadsheet consolidation.
    • Banking: Accelerates FDIC name report era and capital adequacy dashboards, slicing month-end shut from days to hours.
  • Interactive dashboards with contextual chat brokers give BI groups conversational interfaces alongside their visible metrics.
    • Gaming: Stay ops groups question participant retention and monetization KPIs in plain English—no SQL wanted.
    • Monetary Companies: Buying and selling analysts chat with real-time P&L dashboards to floor anomalies and drill into positions on demand.
  • Area-specific analytics workspaces democratize enterprise information exploration via Fast Areas and pure language queries.
    • Insurance coverage: Actuarial and underwriting groups question claims and danger information with out ready on information engineering.
    • Banking: Danger and compliance groups discover credit score, market, and operational information via a single pure language interface.
  • Workflow automation removes repetitive duties and accelerates self-service analytics.
    • Monetary Companies: Automated AR reconciliation flows change handbook ledger matching, shrinking shut cycle effort considerably.
    • Gaming: Telemetry ingestion pipelines set off reporting refreshes routinely, liberating information engineers from routine work.

Allow us to look at an end-to-end resolution combining these applied sciences.

Resolution circulate

AWS presents two native SQL analytics engines for constructing analytics workloads. Amazon Redshift gives a totally managed information warehouse with columnar storage and massively parallel processing. Amazon Athena delivers serverless interactive question capabilities immediately towards information in Amazon S3.

You should utilize both Amazon Redshift or Amazon Athena as a SQL engine whereas implementing the steps on this submit. The next are the steps concerned in constructing an end-to-end resolution.

Figure1: Resolution steps to combine SQL Analytics engines with Amazon Fast

  1. Arrange your SQL analytics engines: Amazon Redshift or Amazon Athena.
  2. Load information and create enterprise views designed for analytics workloads.
  3. Configure integration between SQL analytics engines and Amazon Fast.
  4. Create information sources in Amazon Fast.
  5. Create datasets and dashboards for visible analytics.
  6. Use Subjects and Areas to offer pure language interfaces to your information.
  7. Deploy chat brokers to ship conversational AI experiences for enterprise customers.
  8. Implement enterprise flows to automate repetitive workflows and processes.

Let’s begin by strolling via steps 1–4 for Amazon Redshift. We then describe the identical 4 steps for Amazon Athena earlier than explaining the Amazon Fast steps 5–8.

Configure and create datasets in Amazon Redshift

Amazon Redshift presents two deployment choices to satisfy your information warehousing wants. Provisioned clusters present conventional deployment the place you handle compute assets by deciding on node sorts and cluster dimension. Serverless routinely scales compute capability primarily based on workload calls for with pay-per-use pricing. Each choices are supported by Amazon Fast. For this walkthrough, we use Redshift Serverless.

Arrange SQL analytics engine

To create a Redshift Serverless namespace and workgroup:

  1. Open the Amazon Redshift console.
  2. On the left navigation pane, choose Redshift Serverless.
  3. Observe the steps described within the Making a workgroup with a namespace documentation web page to create a workgroup and a namespace. Notice the username and password offered. You’ll use these particulars for configuring connections in Amazon Redshift and Fast.
  4. It is best to see the standing as Accessible for each the workgroup and namespace within the Serverless dashboard.

Amazon Redshift Serverless Workgroup and Namespaces

Determine 2: Amazon Redshift Serverless Workgroup and NamespacesThe deployment shall be accomplished in roughly 3–5 minutes.

Load information and create enterprise views

Now you possibly can load information utilizing the industry-standard TPC-H benchmark dataset, which gives reasonable buyer, order, and product information for analytics workloads.To load information into Amazon Redshift:

  1. Open the Amazon Redshift Question Editor V2 from the console.
  2. Run the TPC H DDL statements to create TPC-H tables.
  3. Run the next COPY instructions to load information from the general public S3 bucket: s3://redshift-downloads/TPC-H/.

Be sure that the IAM function hooked up to the namespace is ready because the default IAM function. In the event you didn’t arrange the default IAM function on the time of namespace creation, you possibly can check with the Creating an IAM function as default for Amazon Redshift documentation web page to set it now.

copy buyer from 's3://redshift-downloads/TPC-H/2.18/100GB/buyer/' iam_role default delimiter '|' area 'us-east-1'; 

copy orders from 's3://redshift-downloads/TPC-H/2.18/100GB/orders/' iam_role default delimiter '|' area 'us-east-1'; 

copy lineitem from 's3://redshift-downloads/TPC-H/2.18/100GB/lineitem/' iam_role default delimiter '|' area 'us-east-1'; 

Run the next question to validate load standing. The standing column ought to present as accomplished. You may also evaluate the knowledge in different columns to see particulars in regards to the hundreds similar to report counts, period, and information supply.

choose * from  SYS_LOAD_HISTORY  The place table_name in ('buyer','orders','lineitem');

Output of SYS_LOAD_HISTORY showing successful completion of COPY Jobs

Determine 3: Output of SYS_LOAD_HISTORY displaying profitable completion of COPY Jobs

  1. Create a materialized view to enhance question efficiency:

Run the next SQL to create a materialized view that pre-compute outcomes set for buyer revenues and order volumes by market section.

CREATE MATERIALIZED VIEW mv_customer_revenue AS 
SELECT 
c.c_custkey, 
c.c_name, 
c.c_mktsegment, 
SUM(l.l_extendedprice * (1 - l.l_discount)) as total_revenue, 
COUNT(DISTINCT o.o_orderkey) as order_count 
FROM buyer c 
JOIN orders o ON c.c_custkey = o.o_custkey
JOIN lineitem l ON o.o_orderkey = l.l_orderkey
GROUP BY c.c_custkey, c.c_name, c.c_mktsegment;

Run the next SQL to evaluate the information within the materialized view.

choose * from mv_customer_revenue restrict 10;

Configure integration with Amazon Fast

Amazon Fast auto discovers the Amazon Redshift provisioned clusters which are related along with your AWS account. These assets should be in the identical AWS Area as your Amazon Fast account. For Amazon Redshift clusters in different accounts or Amazon Redshift Serverless, we advocate that you just add a VPC connection following the steps in Enabling entry to an Amazon Redshift cluster in a VPC documentation. Normally, these steps are carried out by your group’s cloud safety administration group.

For serverless, you’ll apply the identical steps within the workgroup as a substitute of the cluster. You could find the VPC and Safety Group settings within the Information Entry tab of a workgroup.

Amazon Redshift Serverless workgroup VPC and Security groups

Determine 4: Amazon Redshift Serverless workgroup VPC and Safety teams

You may also check with How do I privately join Fast to an Amazon Redshift or RDS information supply in a non-public subnet? for an illustration.

Create information supply

To create a dataset connecting to Amazon Redshift, full the next steps.

  1. Within the Fast left navigation pane, go to Datasets.
  2. Select the Information sources tab and choose Create information supply.
  3. Choose Amazon Redshift and enter the next:
    • Information Supply Identify: Present customer-rev-datasource as information supply title.
    • Connection kind: Choose the VPC connection created within the earlier step.
    • Database server: Enter the Amazon Redshift workgroup endpoint (for instance, quick-demo-wg.123456789.us-west-2.redshift-serverless.amazonaws.com).
    • Port: 5439 (default).
    • Database: dev.
    • Username/Password: Amazon Redshift credentials with entry to the database.
  4. Select Validate connection. The validation must be profitable.

Amazon Redshift data source configuration

Determine 5: Amazon Redshift information supply configuration

  1. Select Create Information Supply to create an information supply.

Now let’s discover the best way to carry out all these 4 steps to configure Athena in Amazon Fast.

Configure and create datasets in Amazon Athena

Amazon Athena gives quick question capabilities towards petabytes of information with automated scaling to deal with concurrent customers. Let’s undergo the steps to configure connections between Amazon Fast and Amazon Athena.

Arrange SQL analytics engine

To create an Athena workgroup:

  1. Open the Amazon Athena console.
  2. Within the navigation pane, select Workgroups.
  3. Select Create workgroup.
  4. For Workgroup title, enter quick-demo.
  5. For Question outcome configuration, choose Athena managed.
  6. Select Create workgroup.

Your workgroup is prepared instantly for querying information.

Load information and create enterprise views

For Athena, you create tables utilizing the TPC-H benchmark dataset that AWS gives in a public S3 bucket. This strategy offers you 1.5 million buyer data already optimized in Parquet format with out requiring information loading.

To create tables and views in Athena:

  1. Open the Athena Question Editor from the console.
  2. Create a database in your analytics (create S3 bucket if it exists already):
    CREATE DATABASE IF NOT EXISTS athena_demo_db 
    COMMENT 'Analytics database for buyer insights' 
    LOCATION 's3://my-analytics-data-lake-[account-id]/';

  3. Create an exterior desk pointing to the TPC-H public dataset:
    CREATE EXTERNAL TABLE IF NOT EXISTS athena_demo_db.customer_csv ( 
      C_CUSTKEY INT, 
      C_NAME STRING, 
      C_ADDRESS STRING, 
      C_NATIONKEY INT, 
      C_PHONE STRING, 
      C_ACCTBAL DOUBLE, 
      C_MKTSEGMENT STRING, 
      C_COMMENT STRING 
    ) 
    
    ROW FORMAT DELIMITED 
    FIELDS TERMINATED BY '|' 
    STORED AS TEXTFILE 
    LOCATION 's3://redshift-downloads/TPC-H/2.18/100GB/buyer/' 

  4. Create a business-friendly view for analytics:

Run the next SQL to create a view that aggregates buyer account balances grouped by market segments.

CREATE VIEW athena_demo_db.customer_deep_analysis AS 
SELECT 
    c_custkey AS customer_id, 
    c_name AS customer_name, 
    c_mktsegment AS market_segment, 
    c_nationkey, 
    ROUND(c_acctbal, 2) AS account_balance, 
    CASE 
        WHEN c_acctbal 

  1. Confirm your view from Athena with:
SELECT * FROM athena_demo_db.customer_deep_analysis restrict 5;

Output from the SELECT query

Determine 6: Output from the SELECT question

Configure integration with Amazon Fast

To hook up with Amazon Athena in Amazon Fast, observe these steps, consolidated from official AWS documentation and authorizing connections to Amazon Athena.

Authorize Fast to Entry Athena, S3 Bucket for information, and S3 bucket for Athena Outcomes.

Open the Amazon Fast Safety Settings

  • Sign up to the Amazon Fast console as an administrator.
  • Within the top-right nook, select your profile icon, then choose Handle account.
  • Beneath Permissions, select AWS assets.AWS resource permissions

    Determine 7: AWS useful resource permissions

Allow Athena Entry

  • Beneath Fast entry to AWS companies, select Handle.
  • Find Amazon Athena within the record of AWS companies.
  • If Athena is already chosen however entry points persist, clear the checkbox and re-select it to re-enable Athena.
  • Beneath Amazon S3, choose S3 buckets.
  • Examine the containers subsequent to every S3 bucket that Amazon Fast must entry—together with buckets used for Athena question outcomes and any Redshift COPY supply buckets.
  • Allow Write permission for Athena Workgroup to permit Amazon Fast to put in writing Athena question outcomes to S3 and select End.
  • Select Save to replace the configuration.

The ultimate step is to grant your Amazon Fast writer permissions to question your database, Athena tables, and views. Configuration is determined by whether or not AWS Lake Formation is enabled.

If AWS Lake Formation is just not enabled

Permissions are managed on the Fast service function degree via customary IAM-based S3 entry management. Be sure that the Fast service function (for instance, aws-quick-service-role-v0) has the suitable IAM permissions for the related S3 buckets and Athena assets. No further Lake Formation configuration is required.

If AWS Lake Formation is enabled

Lake Formation acts because the central authorization layer, overriding customary IAM-based S3 permissions. Grant permissions on to the Amazon Fast writer or IAM function.

To grant information permissions:

  1. Open the AWS Lake Formation console.
  2. Select Permissions, then Information permissions, then Grant.
  3. Choose the IAM person or function.
  4. Select the required databases, tables, and columns.
  5. Grant SELECT at minimal; add DESCRIBE for dataset creation.
  6. Repeat for every person or function that requires entry.

Create information supply

Observe these steps to create an Athena information supply on Amazon Fast.

  1. Within the Amazon Fast console, navigate to Datasets and select Information sources tab.
  2. Select Create information supply, then choose the Amazon Athena card.
  3. Enter a Information supply title (you may give any title of your alternative), choose your Athena workgroup (like quick-demo), and select Validate connection.

Athena data source creation

Determine 8: Athena information supply creation

  1. Select Create information supply.

Your Athena information supply is now accessible for constructing datasets, dashboards, and Subjects.

Use Amazon Fast generative AI options

The subsequent steps, from 5–8, show Amazon Fast generative AI capabilities utilizing Amazon Redshift as an information supply. Whereas we use Amazon Redshift on this instance, you possibly can substitute with Amazon Athena primarily based in your particular necessities.

Create dashboards

Let’s begin by creating datasets from the Amazon Redshift information supply.

  1. Within the left navigation pane, select Datasets.
  2. On the Datasets web page, select Create Dataset.
  3. For the information supply, choose Amazon Redshift information supply customer-rev-datasource.
  4. From the menu, select mv_customer_revenue.

Select table to visualize

Determine 9: Choose desk to visualise

  1. You possibly can select one of many following question modes. For this submit, choose Instantly question your information choice and select Visualize.
    • Import to SPICE for faster analytics – Fast hundreds a snapshot into its in-memory engine for quicker dashboard efficiency.
    • Instantly question your information– Fast runs queries on demand towards your question engine.
  2. Choose Construct icon to open a chat window. Enter “Present me orders by market segments” because the immediate. Notice that you just want Creator Professional entry to make use of this function.

Build visualization using generative BI feature

Determine 10: Construct visualization utilizing generative BI function

  1. You possibly can change the visible kind to a pie chart and add it to the evaluation.

Change visual type

Determine 10: Change visible kind

To publish your evaluation as a dashboard

  1. After you add the visuals, select Publish.
  2. Enter a reputation for the dashboard. For this submit, use the Market Section Dashboard.
  3. Select Publish dashboard. Your dashboard is now accessible for viewing and sharing.

Create subjects and areas

To totally maximize enterprise information with AI, we should present the suitable construction and context. That’s the place Subjects and Areas are available. Subjects act as pure language interfaces to your structured datasets, routinely analyzing your information, mapping fields, and including synonyms. Enterprise customers can ask “What are complete revenues by market section?” and obtain instantaneous, visualized solutions with out writing a single line of SQL. Areas carry collectively your whole associated belongings right into a single collaborative workspace that democratizes information entry, reduces context-switching, accelerates group onboarding, so everyone seems to be working from the identical trusted, AI-ready information sources.

To create a Fast matter

  1. From the Amazon Fast homepage, select Subjects, then select Create matter.
  2. Enter a reputation in your matter. For this submit, use Buyer Income Analytics.
  3. Enter an outline. For instance:

The Buyer Income Analytics matter is designed for enterprise customers (together with analysts, gross sales operations groups, finance, and market section house owners who must discover buyer and income information with out SQL experience. It serves as a pure language interface over the mv_customer_revenue Amazon Redshift dataset, permitting customers to ask plain-English questions like “What are complete revenues by market section?” and obtain instantaneous, visualized solutions. By routinely mapping enterprise language to the underlying schema, it democratizes entry to income insights throughout the group.

  1. Beneath Dataset, choose mv_customer_revenue.
  2. Select Create. The subject can take 15–half-hour to allow relying on the information. Throughout this time, Amazon Fast routinely analyzes your information, selects related fields, and provides synonyms.
  3. After the subject is enabled, take a couple of minutes to evaluate and enrich it. The next are some instance enrichments.
    1. Add column descriptions to make clear discipline which means for enterprise customers.
    2. Outline most well-liked aggregations (for instance, sum in comparison with common for income fields).
    3. Verify which fields are Dimensions and that are Measures.
  4. (Non-compulsory) To additional refine how your matter interprets and responds to queries, add a number of datasets (for instance, a buyer CSV mixed with a database view), customized directions, filters, and calculated fields.

After your matter is created, its columns can be found so as to add to a Area or to an Agent by deciding on it as an information supply.



Determine 11: Create a Fast Matter

Create a Area in your group

Areas carry collectively dashboards, subjects, datasets, paperwork, and different assets into organized, collaborative workspaces. By centralizing associated belongings in a single workspace, Areas cut back context-switching, speed up onboarding, so everyone seems to be working from the identical trusted information sources.

What to incorporate in your Fast Area

  • Dashboard – Add the dashboard Market Section Dashboard printed out of your mv_customer_revenue evaluation. This provides group members instantaneous entry to visualizations similar to income by market section, high clients by order quantity, and income distribution.
  • Matter – Join the Buyer Income Analytics (constructed on the mv_customer_revenue materialized view) to allow pure language queries immediately towards your Amazon Redshift information.
  • Optionally, you possibly can add supporting context to floor your group’s evaluation:
    • Information dictionary or discipline definitions for mv_customer_revenue
    • Market section definitions (AUTOMOBILE, BUILDING, FURNITURE, MACHINERY, HOUSEHOLD)
    • Enterprise guidelines for income calculation (for instance, how reductions are utilized within the TPC-H mannequin)
    • This implementation information, so new group members can onboard rapidly

To create the Fast Area

  1. From the left navigation menu, select Areas, then select Create area.
  2. Enter a reputation, for instance, Buyer Income & Segmentation.
  3. Enter an outline. For instance:

Centralized workspace for buyer income evaluation powered by Amazon Redshift consists of interactive dashboards, pure language question entry to buyer and section information, and helps documentation for the TPC-H income mannequin.

  1. Add information by connecting the Market Section Dashboard and matter Buyer Income Analytics.
  2. You possibly can invite group members, similar to finance, gross sales operations, and section house owners, and set acceptable permissions.

Your Area is now prepared for collaborative information exploration.



Determine 12: Create a Fast Area

Construct chat brokers

A customized chat agent delivers conversational AI experiences that perceive enterprise context and supply clever, grounded responses to person queries. These brokers transcend question-and-answer interactions. They synthesize information out of your dashboards, subjects, datasets, and paperwork to elucidate developments, floor anomalies, information customers via complicated analytics workflows, and advocate subsequent steps.

Somewhat than requiring customers to navigate a number of instruments or write SQL queries, brokers function a single conversational interface to your total analytics surroundings. Brokers may connect with Actions, pre-built integrations with enterprise instruments similar to Slack, Microsoft Groups, Outlook, and SharePoint, enabling them to reply questions and set off real-world workflows, ship notifications, create duties, and work together with exterior programs immediately from the dialog. Customized brokers may be tailor-made to particular enterprise domains, groups, or use instances in order that responses align with organizational terminology, information definitions, and enterprise processes. After created, brokers may be shared throughout groups, enabling constant, actionable, AI-powered information entry at scale. For groups working with the mv_customer_revenue dataset, we advocate making a devoted Buyer Income Evaluation Agent. This can be a purpose-built conversational assistant grounded in your Amazon Redshift information, dashboards, and the Buyer Income & Segmentation Area.

Create a Fast chat agent

There are two ways in which you should utilize Amazon Fast to create a Fast agent. You should utilize the navigation menu or immediately from Area. The next steps stroll you thru creating one from the navigation menu.

To create a Fast chat agent

  1. From the left navigation menu, select Brokers, then select Create agent.
  2. Enter a reputation in your agent, for instance, Buyer Income Analyst.
  3. Enter an outline. For instance:

An AI assistant for analyzing buyer income, market section efficiency, and order developments utilizing our Amazon Redshift or information warehouse.

  1. Beneath Information Sources, add the Buyer Income & Segmentation Area as an information supply. This provides your agent entry to the dashboards, subjects, and reference paperwork you’ve already constructed.
  2. (Non-compulsory) Outline customized persona directions to align the agent’s responses with your online business context. For instance, specifying most well-liked terminology, response fashion, or the kinds of questions it ought to prioritize.
  3. Select Launch chat agent.
  4. Begin having a dialog along with your information. You might be welcome to ask any questions. The next are some examples.
    • Which market section generated most income?
    • Present me order developments



Determine 13: Create a Fast Chat agent

To share your Fast chat agent

After your agent is printed, select Share and invite group members or share it throughout your group. Customized brokers may be tailor-made to particular enterprise contexts in order that completely different groups can get AI help that speaks their language, while not having to configure something themselves.

Create Fast Flows

Fast Flows automate repetitive duties and orchestrate multi-step workflows throughout your total analytics surroundings. This removes handbook effort, decreasing human error, and guaranteeing constant execution of essential enterprise processes. Flows may be triggered on a schedule or launched on demand, providing you with versatile management over when and the way automation runs.

You possibly can construct flows that span the total analytics lifecycle: monitoring information high quality and flagging anomalies, producing and distributing scheduled reviews to stakeholders, and triggering downstream actions in built-in programs similar to Slack, Outlook. Amazon Fast offers you 3 ways to create a circulate, so whether or not you like a no-code dialog or a visible step-by-step builder, there’s an choice that matches how you’re employed.

To create a circulate from chat

  1. Whereas conversing with My Assistant or a customized agent, describe the workflow that you just wish to automate in plain English.
  2. Amazon Fast generates the circulate and presents to create it immediately out of your dialog — no configuration screens required.

To create a circulate from a pure language description

  1. From the left navigation menu, select Flows, then select Create circulate.
  2. Enter a plain-English description of your workflow. For instance:

” Question income information by market segments. Filter by order rely and all dates. Search internet for comparable related market developments. Generate formatted abstract reviews offering market abstract and look forward per section. ”

  1. Amazon Fast routinely generates the whole workflow with all the mandatory steps.
  2. Optionally, you possibly can add further steps.
  3. Select Run Mode to check the Circulation.
  4. After your circulate is created, share it with group members or publish it to your group’s circulate library, so everybody advantages from the identical automation with out having to rebuild it independently.



Determine 14: Create a Fast Circulation to generate summaries and publish dashboards

For extra complicated circulate, evaluate weekly buyer income abstract circulate for instance.

  1. Queries the mv_customer_revenue materialized view in Amazon Redshift for the most recent weekly income figures by market section.
  2. Compares outcomes towards the prior week to calculate segment-level variance.
  3. Generates a formatted abstract report and publishes it to the Buyer Income & Segmentation Area.
  4. Sends a notification via e-mail or Slack to finance, gross sales operations, and section house owners with a direct hyperlink to the up to date dashboard.
  5. Flags any section the place income has declined greater than an outlined threshold, routing an alert to the suitable proprietor for follow-up.

This circulate transforms what may in any other case be a handbook, multi-step reporting course of into a totally automated pipeline, so stakeholders obtain constant, well timed income insights with out analyst intervention and saving analysts an estimated 3–5 hours per week. For detailed steerage on creating and managing flows, see Utilizing Amazon Fast Flows. Additionally evaluate Create workflows for routine duties demo.

Cleanup

Contemplate deleting the next assets created whereas following this submit to keep away from incurring prices. We encourage you to make use of the trials for gratis as a lot as attainable to familiarize your self with the options described.

  1. Delete the Amazon Redshift Serverless workgroup and namespace.
  2. Delete Athena workgroup and S3 Buckets.
  3. Delete the Amazon Fast account used whereas following this submit. In the event you used an present account, delete the information units, dashboards, subjects, areas, brokers and flows created.

Conclusion

This built-in strategy to enterprise intelligence combines the ability of AWS SQL analytics engines with Amazon Fast generative AI capabilities to ship complete analytics options. By following these implementation steps, you identify a basis for conventional BI reporting, interactive dashboards, pure language information exploration, and clever workflow automation. The structure scales from proof-of-concept implementations to manufacturing deployments, remodeling how organizations entry and act on information insights. For extra details about Amazon Fast options and capabilities, see the Amazon Fast documentation. To study extra about Amazon Redshift, go to the Amazon Redshift product web page. For Amazon Athena particulars, see the Amazon Athena product web page.


In regards to the authors

“Satesh Sonti”

Satesh is a Principal Analytics Specialist Options Architect primarily based in Atlanta, specializing in constructing enterprise information platforms, information warehousing, and analytics options. He has over 20 years of expertise in constructing information belongings and main complicated information platform packages for banking and insurance coverage purchasers throughout the globe.

“Ramon Lopez”

Ramon Lopez is a Principal Options Architect for Amazon Fast. With a few years of expertise constructing BI options and a background in accounting, he loves working with clients, creating options, and making world-class companies. When not working, he prefers to be open air within the ocean or up on a mountain.

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles