<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>Supply Chain &amp; Logistics</title><link>https://cloud.google.com/blog/topics/supply-chain-logistics/</link><description>Supply Chain &amp; Logistics</description><atom:link href="https://cloudblog.withgoogle.com/blog/topics/supply-chain-logistics/rss/" rel="self"></atom:link><language>en</language><lastBuildDate>Fri, 14 Nov 2025 18:03:26 +0000</lastBuildDate><image><url>https://cloud.google.com/blog/topics/supply-chain-logistics/static/blog/images/google.a51985becaa6.png</url><title>Supply Chain &amp; Logistics</title><link>https://cloud.google.com/blog/topics/supply-chain-logistics/</link></image><item><title>Waze keeps traffic flowing with 1M+ real-time reads per second on Memorystore</title><link>https://cloud.google.com/blog/products/databases/how-waze-keeps-traffic-flowing-with-memorystore/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;strong style="font-style: italic; vertical-align: baseline;"&gt;Editor’s note: &lt;/strong&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;Waze (a division of Google parent company Alphabet) depends on vast volumes of dynamic, real-time user session data to power its core navigation features, but scaling that data to support concurrent users worldwide required a new approach. Their team built a centralized Session Server backed by &lt;/span&gt;&lt;a href="https://cloud.google.com/memorystore"&gt;&lt;span style="font-style: italic; text-decoration: underline; vertical-align: baseline;"&gt;Memorystore for Redis Cluster&lt;/span&gt;&lt;/a&gt;&lt;span style="font-style: italic; vertical-align: baseline;"&gt;, a fully managed service with 99.99% availability that supports partial updates and easily scales to Waze’s use case of over 1 million MGET commands per second with ~1ms latency. This architecture is the foundation for Waze’s continued backend modernization.&lt;/span&gt;&lt;/p&gt;
&lt;hr/&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Real-time data drives the Waze app experience. Our turn-by-turn guidance, accident rerouting, and driver alerts depend on up-to-the-millisecond accuracy. But keeping that experience seamless for millions of concurrent sessions requires robust and battle hardened infrastructure that is built to manage a massive stream of user session data. This includes active navigation routes, user location, and driver reports that can appear and evolve within seconds.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Behind the scenes, user sessions are large, complex objects that update frequently and contribute to an extremely high volume of read and write operations. Session data was once locked in a monolithic service, tightly coupled to a single backend instance. That made it hard to scale and blocked other microservices from accessing the real-time session state. To modernize, we needed a shared, low-latency solution that could handle these sessions in real time and at global scale. Memorystore for Redis Cluster made that possible.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;Build smarter with Google Cloud databases!&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7f22ed36b670&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Choosing the right route&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;As we planned the move to a microservices-based backend, we evaluated our options, including Redis Enterprise Cloud, a self-managed Redis cluster, or continuing with our existing Memcached via Memorystore deployment. In the legacy setup, Memcached stored session data behind the monolithic Realtime (RT) server, but it lacked the replication, advanced data types, and partial update capabilities we wanted. We knew Redis had the right capabilities, but managing it ourselves or through a third-party provider would add operational overhead. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Memorystore for Redis Cluster offered the best of both worlds. It’s a fully managed service from Google Cloud with the performance, scalability, and resilience to meet Waze’s real-time demands. It delivers a 99.99% SLA and a clustered architecture for horizontal scaling. With the database decision made, we planned a careful migration from Memcached to Memorystore for Redis using a dual-write approach. For a period, both systems were updated in parallel until data parity was confirmed. Then we cut over to Redis with zero downtime.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Waze’s new data engine&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;From there, we built a centralized Session Server – our new command center for active user sessions – as a wrapper around Memorystore for Redis Cluster. This service became the single source of truth for all active user sessions, replacing the tight coupling between session data and the monolithic RT server. The Session Server exposes simple gRPC APIs, allowing any backend microservice to read from or write to the session state directly, including RT during the migration. This eliminated the need for client affinity, freed us from routing all session traffic through a single service, and made session data accessible across the platform.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We designed the system for resilience and scale from the ground up. Redis clustering and sharding remove single points of contention, letting us scale horizontally as demand grows. Built-in replication and automatic failover are designed to keep sessions online. While node replacements may briefly increase failure rates and latency for a short period, sessions are designed to stay online, allowing the navigation experience to quickly stabilize.&lt;/span&gt;&lt;strong style="vertical-align: baseline;"&gt; &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;And with support for direct gRPC calls from the mobile client to any backend service, we can use more flexible design patterns while shaving precious milliseconds off the real-time path.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Fewer pit stops, faster rides&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Moving from Memcached’s 99.9% SLA to Memorystore for Redis Cluster’s 99.99% means higher availability and resiliency from the service. Load testing proved the new architecture can sustain full production traffic, comfortably handling bursts of up to 1 million MGET commands per second with a stable sub-millisecond service latency. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Because Memorystore for Redis supports partial updates, we can change individual fields within a session object rather than rewriting the entire record. That reduces network traffic, speeds up write performance, and makes the system more efficient overall – especially important when sessions can grow to many megabytes in size. These efficiencies translate directly into giving our engineering teams more time to focus on application-level performance and new feature development.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Session data in Memorystore for Redis Cluster is now integral to Waze’s core features, from evaluating configurations to triggering real-time updates for drivers. It supports today’s demands and is built to handle what’s ahead.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;The road ahead&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;By proving Memorystore for Redis Cluster in one of Waze’s most critical paths, we’ve built the confidence to use it in other high-throughput caching scenarios across the platform. The centralized Session Server and clustered Redis architecture are now standard building blocks in our backend, which we can apply to new services without starting from scratch.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;With that initial critical path complete, our next major focus is the migration of all remaining legacy session management from our RT server. This work will ultimately give every microservice independent access to update session data. Looking ahead, we're also focused on scaling Memorystore for Redis Cluster to meet future user growth and fine-tuning it for both cost and performance.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Learn more&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Waze’s story showcases the power and flexibility of Memorystore for Redis Cluster, &lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt;a fully managed service with 99.99% availability&lt;/span&gt;&lt;span style="vertical-align: baseline;"&gt; for high-scale, real-time workloads. &lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Learn more about the power of &lt;/span&gt;&lt;a href="https://cloud.google.com/memorystore"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Memorystore&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and get started for free. &lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://cloud.google.com/memorystore/docs/cluster"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;See Memorystore for Redis Cluster product documentation&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description><pubDate>Fri, 14 Nov 2025 17:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/products/databases/how-waze-keeps-traffic-flowing-with-memorystore/</guid><category>AI &amp; Machine Learning</category><category>Customers</category><category>Manufacturing</category><category>Supply Chain &amp; Logistics</category><category>Databases</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/Waze-Memorystore-Hero.max-600x600.png" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Waze keeps traffic flowing with 1M+ real-time reads per second on Memorystore</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/Waze-Memorystore-Hero.max-600x600.png</image><site_name>Google</site_name><url>https://cloud.google.com/blog/products/databases/how-waze-keeps-traffic-flowing-with-memorystore/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Eden Levin</name><title>Waze BE infra developer</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Yuval Kamran</name><title>Waze SRE</title><department></department><company></company></author></item><item><title>Where’s the beef? For São Paulo’s agricultural secretariat, it’s on Cloud SQL for SQL Server</title><link>https://cloud.google.com/blog/products/databases/sao-paulo-ranchers-raise-efficiency-with-cloud-sql-for-sql-server/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;When most people think of São Paulo, business and culture usually come to mind, not beef and chicken. But the state of São Paulo isn’t only home to the largest city in the hemisphere — it’s also the second largest producer of meat in a country that’s the second largest agricultural exporter in the world. Given the importance of agribusiness to Brazil’s economy, &lt;/span&gt;&lt;a href="https://www.agricultura.sp.gov.br/" rel="noopener" target="_blank"&gt;&lt;strong style="text-decoration: underline; vertical-align: baseline;"&gt;the Secretariat of Agriculture and Supply of the State of São Paulo&lt;/strong&gt;&lt;/a&gt;&lt;strong style="vertical-align: baseline;"&gt; (SAA-SP)&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; plays a fundamental role in the development of agribusiness across the region and, by extension, the country.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;With the mission of promoting the sustainable production of food, fibers and bioenergy, SAA-SP offers support to rural producers in several areas, such as technical assistance, research, agricultural defense, and access to markets. The Secretariat is also responsible for ensuring food security for the population, monitoring the quality of agricultural products and promoting nutritional education actions.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;As the world’s food systems have evolved and grown more complex, organizations have looked to technology to help meet the goals for food security and sustainability. In the case of SAA-SP, the secretariat needs to securely manage increasing amounts of confidential data and ensure its critical systems are available 24/7. These systems include the Rural Environmental Registry (a mandatory electronic registry for all rural properties), and GEDAVE (a management system for animal and plant monitoring).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;To give a sense of just how complex the system is, in one example, GEDAVE would handle controls for the management of poultry production, whereby each chick, after birth, needs to be transferred to a new location within 24 hours — and the entire process must be rigorously documented to ensure food safety.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;If it wanted to meet the needs not only of its aging IT infrastructure but also the needs of a growing global population in need of safe, reliable food sources, the SAA-SP knew it was time to modernize some of our most important systems.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-aside"&gt;&lt;dl&gt;
    &lt;dt&gt;aside_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;title&amp;#x27;, &amp;#x27;$300 in free credit to try Google Cloud databases&amp;#x27;), (&amp;#x27;body&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7f22ed305d60&amp;gt;), (&amp;#x27;btn_text&amp;#x27;, &amp;#x27;Start building for free&amp;#x27;), (&amp;#x27;href&amp;#x27;, &amp;#x27;http://console.cloud.google.com/freetrial?redirectPath=/products?#databases&amp;#x27;), (&amp;#x27;image&amp;#x27;, None)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;The growing pains:&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Our team in the Department of Systems Management sits within the Information Technology Coordination organization of the SAA-SP. We’re in charge of operating GEDAVE, which is a crucial system for SAA-SP that’s responsible for controlling and monitoring animal and plant health throughout the state of São Paulo. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;GEDAVE records and manages data on animal movement, plant production, use of pesticides, vaccination, pest and disease control, among other information relevant to São Paulo's agriculture. GEDAVE assists in issuing documents such as the Animal Transit Guide (GTA) and the Phytosanitary Certificate of Origin (CFO), which are essential for the trade of agricultural products.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;GEDAVE's back-end was developed in Java and connected to a SQL Server database. It contains sensitive information about rural producers, such as production data, management strategies, and financial information. Previously, this database was hosted on-premises, which caused a series of issues, including:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Difficulty in keeping the database up to date:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Applying patches and security updates in the on-premises environment required time and planning, resulting in periods of system unavailability, directly impacting producers who depend on SAA-SP services.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Complexity in performing regular backups:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Ensuring data security with regular and reliable backups was a complex and laborious process in the on-premises environment.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Challenging high availability:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Maintaining high availability of the on-premises database required investments in redundant and complex infrastructure, increasing management costs and complexity.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;In addition, SAA-SP needed to ensure the 24/7 availability of these systems to help producers meet market demands, including such complex issues as quality control for export and monitoring internal production.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Data security was also crucial, as information on types of herds, vaccination strategies, pest control, among others, is highly sensitive and requires rigorous protection.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Sowing the seeds of innovation:&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;SAA-SP decided to modernize its data infrastructure to address these challenges, choosing Google Cloud. They felt the Google Cloud platform's high performance could ensure application availability and efficiency, while its ease of management would simplify database administration and allows the IT team to focus on other priorities.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;As a first step in this modernization, SAA-SP migrated its SQL Server database to &lt;/span&gt;&lt;a href="https://cloud.google.com/sql/sqlserver"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud SQL for SQL Server on Google Cloud&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;. A crucial factor in the choice was the ease of enabling high availability (HA) in Cloud SQL for SQL Server. With just a few clicks, SAA-SP configured automatic database replication and failover, ensuring service continuity in the event of failures and compliance with SLAs, without the need for complex configurations. In addition, the migration to Cloud SQL for SQL Server was carried out quickly and easily, minimizing the impact on SAA-SP's operations.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;This strategic change brought a series of benefits, allowing Java applications to connect to a more modern, scalable and secure database environment.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Harvesting success:&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Simplified updates:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Cloud SQL for SQL Server makes it easier to apply patches and updates, minimizing downtime and ensuring that systems are always protected with the latest versions of the software.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Automated backups:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; The service offers automated and managed backups, ensuring data security and recovery in the event of failures.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Simplified high availability:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; The simplified configuration of high availability in Cloud SQL for SQL Server reduced the effort of the IT team and ensured compliance with service SLAs.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Enhanced security: &lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt;With data encryption at rest and in transit, Cloud SQL for SQL Server protects SAA-SP’s confidential information from unauthorized access.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;On-demand scalability:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; SAA-SP can adjust Cloud SQL for SQL Server resources according to demand, ensuring optimal performance of Java applications, even during peak periods.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Focus on innovation:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; SAA-SP’s IT team can now focus on strategic projects, such as developing new features for Java applications, instead of worrying about managing the data infrastructure.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Reduced IT costs:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; The migration to Cloud SQL for SQL Server eliminated the need to invest in hardware and software to maintain the on-premises database, reducing operational costs.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Cultivating a future of innovation in agriculture with Cloud SQL for SQL Server:&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;The migration to Cloud SQL for SQL Server was a strategic decision that allowed SAA-SP to overcome the challenges of on-premises data management and ensure the availability, security, and scalability of its critical systems. The ease of enabling high availability and the simplicity of the migration were determining factors for the success of the project.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;But more than that, Cloud SQL enabled innovation at SAA-SP, opening doors to integration with generative AI for more assertive and efficient analysis and decision-making. For example, SAA-SP is leveraging the power of Gemini with Looker to provide C-level executives with real-time data insights hosted on Cloud SQL, facilitating data-driven decisions. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Furthermore, SAA-SP is empowering its customers with Gemini Database, allowing them to harness AI to enhance database performance and maintenance. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;SAA-SP plans to continue modernizing its infrastructure and services, undertaking:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Migration to microservices:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Launch an updated version of the microservices-based application to increase the flexibility, scalability and capacity of the system.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Data analysis with generative AI:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Enable the use of generative AI to perform predictive analysis and obtain real-time insights from Cloud SQL for SQL Server data, assisting in strategic decision-making for the agricultural sector.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;strong style="vertical-align: baseline;"&gt;Data management with Gemini:&lt;/strong&gt;&lt;span style="vertical-align: baseline;"&gt; Use Gemini to facilitate data management and analysis, extracting relevant information and simplifying access to complex data.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;SAA-SP’s move towards intelligent management of operations, coupled with the advancements in analysis, has consolidated SAA-SP's position as a reference in technology and innovation in the agricultural sector, driving the development of agribusiness across São Paulo and serving as a beacon for those around the world.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Get Started:&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Discover how &lt;/span&gt;&lt;a href="https://cloud.google.com/sql/sqlserver"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud SQL for SQL Server&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; can enhance your application performance and ensure uninterrupted availability.&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Read more on how others like &lt;/span&gt;&lt;a href="https://cloud.google.com/blog/products/databases/ford-reduces-routine-database-management-with-google-cloud"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Ford&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and &lt;/span&gt;&lt;a href="https://cloud.google.com/blog/products/databases/visual-research-gives-a-digital-boost-to-real-estate-agencies"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Visual Research&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; are modernizing their workloads with Cloud SQL for SQL Server, resulting in high performance and cost reduction. &lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li aria-level="1" style="list-style-type: disc; vertical-align: baseline;"&gt;
&lt;p role="presentation"&gt;&lt;span style="vertical-align: baseline;"&gt;Ready to unlock the power of Cloud SQL? &lt;/span&gt;&lt;a href="https://console.cloud.google.com/freetrial?redirectPath=sql" style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Start a free trial today&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;!&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description><pubDate>Fri, 14 Feb 2025 17:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/products/databases/sao-paulo-ranchers-raise-efficiency-with-cloud-sql-for-sql-server/</guid><category>Retail</category><category>Consumer Packaged Goods</category><category>Supply Chain &amp; Logistics</category><category>Databases</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Where’s the beef? For São Paulo’s agricultural secretariat, it’s on Cloud SQL for SQL Server</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/products/databases/sao-paulo-ranchers-raise-efficiency-with-cloud-sql-for-sql-server/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Michel Martins da Silva</name><title>Director of Systems Management, São Paulo State Secretariat of Agriculture and Supply</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Roseani Moraes Pereira</name><title>Dept. Director of User Support and Service, São Paulo State Secretariat of Agriculture and Supply</title><department></department><company></company></author></item><item><title>How Prewave is helping to secure deep supply chains worldwide with AI on Google Cloud</title><link>https://cloud.google.com/blog/topics/customers/prewave-helps-secure-deep-supply-chains-with-ai-on-google-cloud/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Most businesses know that taking responsibility for their environmental and social impact is key for long-term success. But how can they make fully-informed decisions when most companies only have visibility into their immediate suppliers? At &lt;/span&gt;&lt;a href="https://www.prewave.com/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Prewave&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, we’re driven by the mission to help companies make their entire supply chains more resilient, transparent, and sustainable.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Our end-to-end platform monitors and predicts a wide range of supply chain risks, and AI is the driving-force behind its success. Without AI, handling vast volumes of data and extracting meaningful insights from publicly-available information would be almost unfathomable at the scale that we do to help our clients. Because of that, Prewave needs a rock-solid technology foundation that is reliable, secure, and highly scalable to continually handle this demand. That’s why we built the Prewave supply chain risk intelligence platform on &lt;/span&gt;&lt;a href="https://cloud.google.com/?hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google Cloud&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; from inception in 2019. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Back then, as a small team, we didn’t want to have to maintain hardware or infrastructure, and Google Cloud managed services stood out for providing reliability, availability, and security while freeing us up to develop our product and focus on Prewave’s mission. A shared concern for sustainability also influenced our decision, and we’re proud to be working with data centers with such a &lt;/span&gt;&lt;a href="https://blog.google/outreach-initiatives/sustainability/how-googles-data-centers-help-europe-meet-its-sustainability-goals/" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;low carbon footprint&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Tracking hundreds of thousands of suppliers&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Prewave’s end-to-end platform solves two key challenges for customers: First, it makes supply chains more resilient by identifying description risks and developing the appropriate mitigation plans. And second, it makes supply chains more sustainable by detecting and solving ESG risks, such as forced labor or environmental issues.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;It all starts with our Risk Monitoring capability, which uses AI that was developed by our co-founder Lisa in 2012 during her PhD research. With it, we’re scanning publicly available information in 120+ languages, looking for insights that can indicate early signals of Risk Events for our clients, such as labor unrest, an accident, fire, or 140 other different risk types that can disrupt their supply chain. Based on the resulting insights, clients can take actions on our platform to mitigate the risk, from filing an incident review to arranging an on-site audit.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;With this information, Prewave also maps our clients’ supply chains from immediate and sub-tier suppliers down to the raw materials’ providers. Having this level of granularity and transparency is now a requirement of new regulations such as the European &lt;/span&gt;&lt;a href="https://commission.europa.eu/business-economy-euro/doing-business-eu/corporate-sustainability-due-diligence_en" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;corporate sustainability due diligence directive&lt;/span&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt; &lt;/span&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;(CSDDD)&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, but it can be challenging for our clients to do without help. They usually have hundreds or thousands of suppliers and our platform helps them to know each one, but also to focus attention, when needed, on those with the highest risk.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;The Prewave platform keeps effort on the supplier’s side as light as possible. They only have to act if potential risk is flagged by our Tier-N Monitoring capability, in which case, we support them to fix issues and raise their standards. Additionally, this level of visibility frees them up from having to manually answer hundreds of questionnaires in order to qualify to do business with more partners. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;To make all this possible, our engineering teams rely heavily on scalable technology such as &lt;/span&gt;&lt;a href="https://cloud.google.com/kubernetes-engine?hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Google Kubernetes Engine&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; (GKE) to support our SaaS. We recently switched from Standard to Autopilot and noticed great results in time efficiency now that we don’t need to ensure that node pools are in place or that all CPU power available is being used appropriately, helping save up to 30% of resources. This also has helped us to reduce costs because we only pay for the deployments we run.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We also believe that having the best tools in place is key to delivering the best experience not only to customers but also to our internal teams. So we use &lt;/span&gt;&lt;a href="https://cloud.google.com/build?hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud Build&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; and &lt;/span&gt;&lt;a href="https://cloud.google.com/artifact-registry"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Artifact Registry&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; to experiment, build, and deploy artifacts and manage docker containers that we also use for GKE. Meanwhile, &lt;/span&gt;&lt;a href="https://cloud.google.com/security/products/armor?hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud Armor&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; acts as a firewall protecting us against denial of service and web attacks. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Because scalability is key for our purposes, the application development and data science teams use &lt;/span&gt;&lt;a href="https://cloud.google.com/sql?hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Cloud SQL&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; as a database. This is a fully managed service that helps us focus on developing our product, since we don’t have to worry about managing the servers according to demand. Data science teams also use &lt;/span&gt;&lt;a href="https://cloud.google.com/compute?hl=en"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Compute Engine&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; to host our AI implementations as we develop and maintain our own models, and these systems are at the core of Prewave’s daily work.&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;strong style="vertical-align: baseline;"&gt;Helping more businesses improve their deep supply chains &lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Since 2020, Prewave has grown from three clients to more than 170, our team of 10 grew to more than 160, and the company’s revenue growth multiplied by 100, achieving a significant milestone. We’ve also since then released many new features to our platform that required us to scale the product alongside scaling the company. With Google Cloud, this wasn’t an issue. We simply extended the resources that the new implementations needed, helping us to gain more visibility at the right time and win new customers. Because our foundation is highly stable and scalable, growing our business has been a smooth ride. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Next, Prewave is continuing its expansion plans into Europe that began in 2023, before moving to new markets, such as the US. This is going well and our association with Google Cloud is helping us win the trust of early-stage clients who clearly also trust in its reliability and security. We’re confident that our collaboration with Google Cloud will continue to bring us huge benefits as we help more companies internationally to achieve transparency, resilience, sustainability, and legal compliance along their deep supply chains.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Thu, 25 Apr 2024 08:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/customers/prewave-helps-secure-deep-supply-chains-with-ai-on-google-cloud/</guid><category>AI &amp; Machine Learning</category><category>Supply Chain &amp; Logistics</category><category>Sustainability</category><category>Customers</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/prewave.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>How Prewave is helping to secure deep supply chains worldwide with AI on Google Cloud</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/prewave.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/customers/prewave-helps-secure-deep-supply-chains-with-ai-on-google-cloud/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Daniel Höfer</name><title>Head of Network, Prewave</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Jonas Artmeier</name><title>VP Advisory, Prewave</title><department></department><company></company></author></item><item><title>Ninja Van: delivering flexibility, stability and scalability to core applications with a cloud container platform</title><link>https://cloud.google.com/blog/products/application-modernization/how-ninja-van-ran-business-critical-apps-and-microservices-in-gke/</link><description>&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;At &lt;/span&gt;&lt;a href="https://www.ninjavan.co" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Ninja Van&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt;, running applications in a stable, scalable environment is business-critical. We are a fast-growing tech-enabled express logistics business with operations across South East Asia. In the past 12 months, we’ve partnered with close to two million businesses to deliver around two million parcels daily to customers, with the help of more than 40,000 workers and employees. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We are an established customer of Google Cloud, and continue to work closely with them to expand into new products and markets, including supply chain management and last mile courier services. &lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;Deploying a secure, stable, container platform&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;To run the applications and microservices architecture that enable our core businesses, we opted to deploy a secure and stable container platform. We had been early adopters of containerization. We were initially running our container workload in CoreOS with a custom scheduler, Fleet. As we monitor the activities in the open source community, it was evident Kubernetes was gaining more traction and is becoming more and more popular. We decided to run our own Kubernetes cluster and API server, later deploying a number of &lt;/span&gt;&lt;a href="https://cloud.google.com/compute"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;Compute Engine&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; virtual machines, consisting of both control plane and worker nodes. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;As we dived deeper into Kubernetes, we realized that a lot of what we did was already baked into its core functionalities, such as service discovery. This feature enables applications and microservices to communicate with each other without the need to know where the container is deployed to among the worker nodes. We felt that if we continued maintaining our discovery system, we would just be reinventing the wheel. Thus, we dropped what we had in favor of this Kubernetes core feature.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We also found the opportunity to engage with and contribute to the open source community working on Kubernetes compelling. With Kubernetes being open standards-based, we gained the freedom and flexibility to adapt our technology stack to our needs.   &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;However, we found upgrading a self-managed Kubernetes challenging and troublesome in the early days and decided to move to a fully managed Kubernetes service. Among other benefits, we could upgrade Kubernetes easily through Google Kubernetes Engine (GKE) user interface or Google Cloud command line tool. We could also enable auto upgrades simply by specifying an appropriate release channel.  &lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;Simplifying the operation of multiple GKE clusters&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;With a technology stack based on open-source technologies, we have simplified the operation of multiple clusters in GKE. For monitoring and logging operations, we have moved to a centralized architecture to colocate the technology stack on a single management GKE cluster. We use Elasticsearch, Fluentbit and Kibana for logging and Thanos, Prometheus and Grafana for monitoring. When we first started, logging and monitoring were distributed across individual clusters, which meant that administrators had to access the clusters separately which led to a lot of operational inefficiencies. This also meant maintaining duplicated charts across different instances of Kibana and Grafana.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/1_VKuJoWR.max-1000x1000.png"
        
          alt="1"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;For CI/CD, we run a dedicated DevOps GKE cluster used for hosting developer toolsets and running the pipelines. We embrace the Atlassian suite of services, such as JIRA, Confluence, Bitbucket, Bamboo to name a few. These applications are hosted in the same DevOps GKE cluster.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Our CI/CD is centralized, but custom steps can be put in, giving some autonomy to teams. When a team pushes out new versions of codes, our CI pipeline undertakes the test and build processes. This then produces container  image artifacts for backend services and minified artifacts for frontend websites. Typically, the pipelines are parameterized to push out and test the codes in development and testing environments, and subsequently deploy them into sandbox and production. Depending on their requirements, application teams have the flexibility to opt for a fully automated pipeline or a semi-automated one, that requires manual approval for deployment to production.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Autoscaling also comes into play during runtime. As more requests come in, we need to scale up to more containers, but shrink down automatically as the number of requests decreases. To support autoscaling based on our metrics, we integrate KEDA to our technology stack. &lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;Delivering a seamless development experience&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;In a sense, our developers are our customers as well as our colleagues. We aim to provide a frictionless experience for them by automating the testing, deployment, management and operation of application services and infrastructure. By doing this, we allow them to focus on building the application they’re assigned.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;To do this, we’re using DevOps pipelines to automate and simplify infrastructure provisioning and software testing and release cycles. Teams can also self-serve and spin up GKE clusters with the latest environment builds mirroring production with non-production sample data preloaded, which gives them a realistic environment to test the latest fixes and releases. &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/2_iYb7faz.max-1000x1000.png"
        
          alt="2"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph_advanced"&gt;&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;As a build proceeds to deployment, they can visit a Bamboo CI/CD Console to track progress.   &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Code quality is critical to our development process. An engineering excellence sub-vertical within our business monitors code quality through part of our CI/CD using the SonarQube open-source code inspection tool. We set stringent unit test coverage percentage requirements and do not allow anything into our environment that fails unit or integration testing. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;We release almost once a day excluding code freezes on days like Black Friday or Cyber Monday, when we only release bug fixes or features that need to be deployed urgently during demand peaks. While we’ve not changed our release schedule with GKE, we’ve been able to undertake concurrent builds in parallel environments, enabling us to effectively manage releases across our 200-microservice architecture.              &lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span style="vertical-align: baseline;"&gt;Latency key to Google Cloud and GKE selection&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;When we moved from other cloud providers to Google Cloud and GKE, the extremely low latency between Google Cloud data centers, in combination with reliability, scalability and competitive pricing, gave us confidence Google Cloud was the right choice. In a scenario with a lot of people using the website, we can provide a fast response time and a better customer experience. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;In addition, Google Cloud makes the patching and upgrading of multiple GKE clusters a breeze by automating the upgrade process and proactively informing us when an automated upgrade or change threatens to break one of our APIs.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Google Cloud and GKE also open up a range of technical opportunities for our business, including simplification. Many of our services use persistent storage, and GKE provides a simple way to automatically deploy and manage them through their Container Storage Interface (CSI) driver. The CSI driver enables native volume snapshots and in conjunction with Kubernetes CronJob, where we can easily take automated backups of the disks running services such as TiDB, MySQL, Elasticsearch and Kafka. On the development front, we are also exploring Skaffold, which opens up possibilities for development teams to improve their inner development loop cycle and develop more effectively as if their local running instance is deployed within a Kubernetes cluster.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;Overall, the ease of management of GKE means we can manage our 200-microservice architecture in 15 clusters with just 10 engineers even as the business continues to grow.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="vertical-align: baseline;"&gt;If you want to try this out yourself, check out a hands-on &lt;/span&gt;&lt;a href="https://www.cloudskillsboost.google/focuses/552" rel="noopener" target="_blank"&gt;&lt;span style="text-decoration: underline; vertical-align: baseline;"&gt;tutorial&lt;/span&gt;&lt;/a&gt;&lt;span style="vertical-align: baseline;"&gt; where you will set up a continuous delivery pipeline in GKE that automatically rebuilds, retests, and redeploys changes to a sample application.&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Mon, 22 Apr 2024 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/products/application-modernization/how-ninja-van-ran-business-critical-apps-and-microservices-in-gke/</guid><category>Supply Chain &amp; Logistics</category><category>Containers &amp; Kubernetes</category><category>DevOps &amp; SRE</category><category>Customers</category><category>Application Modernization</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Ninja Van: delivering flexibility, stability and scalability to core applications with a cloud container platform</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/products/application-modernization/how-ninja-van-ran-business-critical-apps-and-microservices-in-gke/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Ivan Kenneth Wang</name><title>Senior Staff Software Engineer, Ninja Van</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Woh Shon Phoon</name><title>Customer Engineer, Google Cloud</title><department></department><company></company></author></item><item><title>How supply chain organizations can use data and AI to drive efficiency and optimization</title><link>https://cloud.google.com/blog/topics/supply-chain-logistics/drive-supply-chain-efficiency-and-optimization-using-data-and-ai/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;Data and AI are transforming every industry, and so is the supply chain that powers many of them. In recent years, supply chains have increased in visibility and impact for both businesses and consumers. At the same time, the challenges of adhering to sustainability expectations, while balancing geopolitical and financial challenges, have made it harder than ever to run efficient and sustainable supply chains. At Google Cloud, we’ve delivered great results to our supply chain customers through data and AI, allowing them to better understand their supply chains, identify areas for improvement, reach their sustainability goals, and make more informed decisions.&lt;/p&gt;&lt;p&gt;Today, we’re proud to bring our expertise to more customers with &lt;a href="https://cloud.google.com/solutions/supply-chain-logistics"&gt;Data and AI Cloud for Supply Chain&lt;/a&gt;. Together with our partners and customers, we’ve gained a deep understanding across many industries, and our customers have gotten huge value from building data-driven supply chains with our technology and value accelerators. With Data and AI Cloud for Supply Chain, you can enjoy the following benefits:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Exceptional customer experiences by using data and AI to gain a deeper understanding, increase efficiency and resilience of your supply chain. Accurately forecast when products are needed and how to get them there in the most efficient way.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Reduced costs and carbon footprint: Identifying bottlenecks, inefficiencies, and risks through improved visibility has enabled organizations to free up resources, automate where possible, and increase efficiency. This has not only been clear through reduced costs, but also through improved customer and employee satisfaction.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;A platform to accelerate deployment of AI-enabled use cases: Be ready to leverage the latest generative AI technology for intercompany search, for example, for insights into the far ends of the supply chain through a simple question; or to serve up personalized experiences to your customers based on real-time inventory availability.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Delivering value to our customers&lt;/h3&gt;&lt;p&gt;Innovative companies have been using Google’s Data and AI Cloud for many years now, achieving incredible results.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;a href="https://cloud.google.com/blog/products/ai-machine-learning/coop-reduces-food-waste-with-google-cloud-ai-and-data-cloud"&gt;Coop&lt;/a&gt; reduces food waste by forecasting with Google’s Data and AI technologies, resulting in a 43% performance improvement over the purpose build, in-house solution.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="https://media.renaultgroup.com/renault-group-and-google-accelerate-partnership-to-develop-the-vehicle-of-tomorrow-and-strengthen-renault-groups-digital-transformation/" target="_blank"&gt;Renault&lt;/a&gt; improves its supply chain visibility, reduces cost of inventory, understands end-of-life of stock components, lower costs, and manages logistics more effectively, in turn improving customer satisfaction.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Google’s Data and AI Cloud for Supply Chain capabilities&lt;/h3&gt;&lt;p&gt;Google’s Data and AI Cloud for Supply Chain includes a variety of solutions and value accelerators that help businesses optimize their supply chains. Some of the key solutions and value accelerators include:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;b&gt;AI-optimized planning and forecasting&lt;/b&gt;: Google Cloud’s products and our partners provide businesses the ability to use machine learning to help optimize their planning, forecasting processes and on-shelf availability. This can help them reduce waste, improve customer service, and increase profits.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;b&gt;Vendor performance visibility&lt;/b&gt;: This solution helps businesses track the performance of their vendors. This information can be used to identify and address potential problems, such as late deliveries or poor-quality products.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;b&gt;Cross-company data sharing&lt;/b&gt;: Businesses can more easily share data across their supply chain with partners, vendors and customers, improving collaboration and coordination, and helping them make more informed decisions. By connecting to various data sources from our wide ecosystem of providers and securely sharing data with trading partners, businesses can improve collaboration and coordination and make more informed decisions.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;b&gt;Sophisticated partner ecosystem&lt;/b&gt;: We partner with an assortment of Independent Software Vendors ( ISVs) in supply chain and sustainability. ISVs such as &lt;a href="https://www.kinaxis.com/en?utm_source=google&amp;amp;utm_medium=ppc&amp;amp;utm_campaign=7015Y000003sEekQAE&amp;amp;utm_term=132016943197&amp;amp;utm_content=project-authority&amp;amp;gad=1&amp;amp;gclid=Cj0KCQjw_5unBhCMARIsACZyzS2jJiFtwO9FZDBA2YaenIdowQ78haf7GR5kbAeKBzlY0n2MqmYH_ZoaAoRtEALw_wcB" target="_blank"&gt;Kinaxis&lt;/a&gt;, &lt;a href="https://www.dematic.com/en-us/" target="_blank"&gt;Dematic&lt;/a&gt;, &lt;a href="https://www.atlasai.co/?utm_keyword=atlas%20ai&amp;amp;utm_source=google&amp;amp;utm_medium=cpc&amp;amp;utm_campaign=14931972405&amp;amp;utm_term=atlas%20ai&amp;amp;hsa_acc=8322175305&amp;amp;hsa_cam=14931972405&amp;amp;hsa_grp=131945572521&amp;amp;hsa_ad=552493909110&amp;amp;hsa_src=g&amp;amp;hsa_tgt=kwd-821938258539&amp;amp;hsa_kw=atlas%20ai&amp;amp;hsa_mt=e&amp;amp;hsa_net=adwords&amp;amp;hsa_ver=3&amp;amp;gclid=Cj0KCQjw_5unBhCMARIsACZyzS1-0P1n-RbfL-yli2kMPQWJFyYDOVuEGraCxDLfHw531tYsUgFlfqUaAhrrEALw_wcB" target="_blank"&gt;Atlas AI&lt;/a&gt;,&lt;a href="https://www.esgbook.com/" target="_blank"&gt; ESG Book&lt;/a&gt;, &lt;a href="https://tracemark.com/" target="_blank"&gt;NGIS&lt;/a&gt;, &lt;a href="https://www.project44.com/" target="_blank"&gt;Project44&lt;/a&gt; and &lt;a href="https://www.geotab.com/" target="_blank"&gt;Geotab&lt;/a&gt; integrate into Google Cloud’s Data and AI capabilities and support critical workflows for our customers. Organizations can further accelerate their development journey by tapping into Google Cloud's latest &lt;a href="https://cloud.google.com/blog/topics/partners/pre-integrated-solutions-in-google-clouds-industry-value-network"&gt;Industry Value Networks&lt;/a&gt;, which brings accelerators and reusable IP / assets with select partners to solve several high-value use cases across industries. &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Augment and accelerate your supply chain opportunities&lt;/h3&gt;&lt;p&gt;Google’s Data and AI Cloud for Supply Chain is a powerful suite of solutions, value accelerators, and partner offerings that help businesses of all sizes optimize their supply chains using data and AI. To learn more, tune into &lt;a href="https://cloud.withgoogle.com/next?session=ANA117" target="_blank"&gt;our session&lt;/a&gt; at Google Cloud Next or contact us &lt;a href="https://cloud.google.com/contact/?utm_source=google&amp;amp;utm_medium=cpc&amp;amp;utm_campaign=na-none-all-en-dr-sitelink-all-all-trial-b-gcp-1605212&amp;amp;utm_content=text-ad-none-any-DEV_c-CRE_665735450768-ADGP_Hybrid%20%7C%20BKWS%20-%20BRO%20%7C%20Txt_GCP-KWID_43700077212154724-kwd-14471151-userloc_9031937&amp;amp;utm_term=KW_gcp-ST_gcp-NET_g-&amp;amp;gclid=Cj0KCQjwldKmBhCCARIsAP-0rfx1Af28wXzm9M9ysvga3Ltx0D00sdF9F5bjwpFT2H606LD4gHfZRJAaAnuOEALw_wcB&amp;amp;gclsrc=aw.ds"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;/div&gt;</description><pubDate>Thu, 31 Aug 2023 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/supply-chain-logistics/drive-supply-chain-efficiency-and-optimization-using-data-and-ai/</guid><category>Data Analytics</category><category>Google Cloud Next</category><category>Supply Chain &amp; Logistics</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/Data__AI_Cloud_for_Supply_Chain.max-600x600.png" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>How supply chain organizations can use data and AI to drive efficiency and optimization</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/Data__AI_Cloud_for_Supply_Chain.max-600x600.png</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/supply-chain-logistics/drive-supply-chain-efficiency-and-optimization-using-data-and-ai/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Lucas Thelosen</name><title>Group Product Manager</title><department></department><company></company></author></item><item><title>Coop reduces food waste by forecasting with Google’s AI and Data Cloud</title><link>https://cloud.google.com/blog/products/ai-machine-learning/coop-reduces-food-waste-with-google-cloud-ai-and-data-cloud/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;Although &lt;a href="https://www.coop.ch/en/" target="_blank"&gt;Coop&lt;/a&gt; has a rich history spanning nearly 160 years, the machine learning (ML) team supporting its modern operations is quite young. Its story began in 2018 with one simple mission: to leverage ML-powered forecasting to help inform business decisions, such as demand planning based on supply chain seasonality and expected customer demand. The end goal? By having insight into not only current data but also projections of what could happen in the future, the business can optimize operations to keep customers happy, save costs, and support its sustainability goals (more on that later!).&lt;/p&gt;&lt;p&gt;Coop’s initial forecasting environment was one on-premises workstation that leveraged open-source frameworks such as PyTorch and TensorFlow. Fine tuning and scaling models to a larger number of CPUs or GPUs was cumbersome. In other words, the infrastructure couldn’t keep up with their ideas.&lt;/p&gt;&lt;p&gt;So when the question arose of how to solve these challenges and operationalize the produced outcomes beyond those local machines, Coop leveraged &lt;a href="https://cloud.google.com/customers/coop"&gt;the company’s wider migration to Google Cloud&lt;/a&gt; to find a solution that could stand the test of time.&lt;/p&gt;&lt;h3&gt;Setting up new grounds for innovation&lt;/h3&gt;&lt;p&gt;Over a two-day workshop with the Google Cloud team, Coop kicked things off by ingesting data from its vast data pipelines and SAP systems to &lt;a href="https://cloud.google.com/bigquery"&gt;BigQuery&lt;/a&gt;. At the same time, Coop’s ML team implemented physical accumulation cues of incoming new information and sorted out what kind of information this was. The team was relieved to not have to worry about setting up infrastructure and new instances.&lt;/p&gt;&lt;p&gt;Next, the Coop team turned to &lt;a href="https://cloud.google.com/vertex-ai-workbench"&gt;Vertex AI Workbench&lt;/a&gt; to further develop its data science workflow, finding it surprisingly fast to get started. The goal was to train forecasting models to support Coop’s distribution centers so they could optimize their stock of fresh produce based on accurate numbers. &lt;/p&gt;&lt;h3&gt;Achieving higher accuracy, faster, to better meet customer demand&lt;/h3&gt;&lt;p&gt;During the proof-of-concept (POC) phase, Coop’s ML team had two custom-built models competing against an &lt;a href="https://cloud.google.com/automl"&gt;AutoML&lt;/a&gt;-powered &lt;a href="https://cloud.google.com/vertex-ai/docs/tabular-data/forecasting/overview"&gt;Vertex AI Forecast model&lt;/a&gt;, which the team ultimately operationalized on Vertex AI: a single Extreme Gradient Boosting model and a Temporal Fusion Transformer in PyTorch. The team established that using Vertex AI Forecast was faster and more accurate than training a model manually on a custom virtual machine (VM).&lt;/p&gt;&lt;p&gt;On the test set in the POC, the team reached 14.5 WAPE (Weighted Average Percentage Error), which means Vertex AI Forecast provided a 43% performance improvement relative to models trained in-house on a custom VM.&lt;/p&gt;&lt;p&gt;After a successful POC and several internal tests, Coop is building a small-scale pilot (to be put live in production for one distribution center) that will conclude with the Coop ML team eventually streaming back the forecasting insights to SAP, where processes such as carrying out orders to importers and distributors take place. Upon successful completion and evaluation of the small-scale pilot in production in the next few months, they could possibly scale it out to full blown production across distribution centers throughout Switzerland. The architecture diagram below approximately illustrates the steps involved in both stages. The vision is of course to leverage Google’s data and AI services, including forecasting and post-forecasting optimization, to support all of Coop’s distribution centers in Switzerland in the near future&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/1_Coop.max-1000x1000.jpg"
        
          alt="1 Coop.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;Leveraging Google Cloud to increase the relative forecasting accuracy by 43% over custom models trained by the Coop team can significantly affect the retailer’s supply chain. By taking this POC to pilot and possibly production, the Coop ML team hopes to improve its forecasting model to better support wider company goals, such as reducing food waste.&lt;/p&gt;&lt;h3&gt;Driving sustainability by reducing food waste&lt;/h3&gt;&lt;p&gt;Coop believes that sustainability must be a key component of its business activity. With the aim to become a zero-waste company, its &lt;a href="https://www.actions-not-words.ch/en/background/sustainability-at-coop/strategy.html" target="_blank"&gt;sustainability strategy&lt;/a&gt; feeds into all corporate divisions, from how it selects suppliers of organic, animal-friendly, and fair-trade products to efforts for reducing energy, CO2 emissions, waste materials, and water usage in its supply chains. &lt;/p&gt;&lt;p&gt;Achieving these goals boils down to an optimal control problem. This is known as a Bayesian framework: Coop must carry out quantile inference to determine the scope of its distributions. For example, is it expecting to sell between 35 and 40 tomatoes on a given day, or is its confidence interval between 20 and 400? Reducing this amount of uncertainty with more specific and accurate numbers means Coop can order the precise number of units for distribution centers, ensuring customers can always find the products they need. At the same time, it prevents ordering in excess, which reduces food waste. &lt;/p&gt;&lt;h3&gt;Pushing the envelope of what can be achieved company-wide&lt;/h3&gt;&lt;p&gt;Having challenged its in-house models against the Vertex AI Forecast model in the POC, Coop is in the process of rolling out a production pilot to one distribution center in the coming months, and possibly all distribution centers across Switzerland later thereafter. In the process, one of the most rewarding things was realizing that the ML team behind the project could use different Google Cloud tools, such as &lt;a href="https://cloud.google.com/kubernetes-engine"&gt;Google Kubernetes Engine&lt;/a&gt; and BigQuery, and &lt;a href="https://cloud.google.com/vertex-ai"&gt;Vertex AI&lt;/a&gt; to create its own ML platform. Beyond using pre-trained Vertex AI models, the team can automate and create data science workflows quickly so it’s not always dependent on infrastructure teams.&lt;/p&gt;&lt;p&gt;Next, Coop’s ML team aims to use BigQuery as a pre-stage for Vertex AI. This will allow the entire data streaming process to flow more efficiently, serving data to any part of Vertex AI when needed. “The two tools integrate seamlessly, so we look forward to trying that combination for our forecasting use cases and potentially new use cases, too. We are also exploring the possibility of deploying different types of natural language processing-based solutions to other data science departments within Coop that are relying heavily on TensorFlow models,” says Martin Mendelin, Head of AI/ML Analytics, Coop. &lt;/p&gt;&lt;p&gt;“By creating and customizing our own ML platform on Google Cloud, we’re creating a standard for other teams to follow, with the flexibility to work with open-source programs but in a stable, reliable environment where their ingenuity can flourish,” Mendelin adds. “The Google team went above and beyond with its expertise and customer focus to help us make this a reality. We’re confident that this will be a nice differentiator for our business.”&lt;/p&gt;&lt;/div&gt;</description><pubDate>Thu, 16 Mar 2023 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/products/ai-machine-learning/coop-reduces-food-waste-with-google-cloud-ai-and-data-cloud/</guid><category>Data Analytics</category><category>Supply Chain &amp; Logistics</category><category>Google Cloud in Europe</category><category>Google Cloud</category><category>SAP on Google Cloud</category><category>Sustainability</category><category>AI &amp; Machine Learning</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/original_images/Copy_of_COOP_Shopping_HeroBanner_loop.gif" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Coop reduces food waste by forecasting with Google’s AI and Data Cloud</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/original_images/Copy_of_COOP_Shopping_HeroBanner_loop.gif</image><site_name>Google</site_name><url>https://cloud.google.com/blog/products/ai-machine-learning/coop-reduces-food-waste-with-google-cloud-ai-and-data-cloud/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Nicolo Lardelli</name><title>Data Scientist, Coop</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Anant Nawalgaria</name><title>Sr. Staff ML Engineer &amp; Founder of Gen AI Intensive, Google</title><department></department><company></company></author></item><item><title>Harness the power of data and AI in your life science supply chain</title><link>https://cloud.google.com/blog/topics/healthcare-life-sciences/data-driven-intelligent-visible-life-sciences-supply-chain/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;Global life science supply chains are lengthy and complex with many moving parts. One small disruption can create serious delays and affect your ability to deliver therapeutics for patients. &lt;/p&gt;&lt;h3&gt;Supply chain disruptors&lt;/h3&gt;&lt;p&gt;Over the last few years, healthcare organizations have encountered a range of obstacles, from both internal and external factors, that have resulted in supply networks failing to get drugs and medical devices to where they need to be on time. These obstacles include:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Labor and supply shortages &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Rising material costs &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Raw material constraints&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Geo-political events&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Unpredictable weather &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;How do you overcome supply chain disruptors that are out of your control?&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-video"&gt;



&lt;div class="article-module article-video "&gt;
  &lt;figure&gt;
    &lt;a class="h-c-video h-c-video--marquee"
      href="https://youtube.com/watch?v=pn1JaouNOpU"
      data-glue-modal-trigger="uni-modal-pn1JaouNOpU-"
      data-glue-modal-disabled-on-mobile="true"&gt;

      
        &lt;img src="//img.youtube.com/vi/pn1JaouNOpU/maxresdefault.jpg"
             alt="In this 2-minute overview, learn how Google Cloud is helping life sciences companies enhance their supply chain visibility and in particular, how AI is bringing efficiency and resilience to life sciences manufacturing and supply chains."/&gt;
      
      &lt;svg role="img" class="h-c-video__play h-c-icon h-c-icon--color-white"&gt;
        &lt;use xlink:href="#mi-youtube-icon"&gt;&lt;/use&gt;
      &lt;/svg&gt;
    &lt;/a&gt;

    
  &lt;/figure&gt;
&lt;/div&gt;

&lt;div class="h-c-modal--video"
     data-glue-modal="uni-modal-pn1JaouNOpU-"
     data-glue-modal-close-label="Close Dialog"&gt;
   &lt;a class="glue-yt-video"
      data-glue-yt-video-autoplay="true"
      data-glue-yt-video-height="99%"
      data-glue-yt-video-vid="pn1JaouNOpU"
      data-glue-yt-video-width="100%"
      href="https://youtube.com/watch?v=pn1JaouNOpU"
      ng-cloak&gt;
   &lt;/a&gt;
&lt;/div&gt;

&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;h3&gt;The intelligent healthcare supply chain&lt;/h3&gt;&lt;p&gt;While many organizations have already implemented data-driven supply chains, organizations are still faced with the challenges of static, siloed, and different functional supply chain applications; limited data exchange with key trading partners across upstream and downstream operations; and the inability to effectively leverage relevant external data. &lt;/p&gt;&lt;p&gt;At Google Cloud, we believe the key to meaningful and effective change is a data-driven supply chain that allows you to achieve visibility, flexibility, and innovation.&lt;/p&gt;&lt;p&gt;Our solutions help you prepare for the unpredictable and enhance the value of your data. By unlocking AI-driven insights, you can strengthen distribution networks and optimize your workflows and supply chains to become more reliable, intelligent, and sustainable. Some of the business challenges we address include:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Predicting demand with &lt;a href="https://cloud.google.com/vertex-ai"&gt;Vertex AI&lt;/a&gt; Forecast&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="https://cloud.google.com/solutions/visual-inspection-ai"&gt;Visual inspection&lt;/a&gt; for quality and &lt;a href="https://cloud.google.com/solutions/manufacturing-data-engine#section-7"&gt;predictive maintenance&lt;/a&gt; with pre-built ML models&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Automating and optimizing pickup and delivery operations with &lt;a href="https://cloud.google.com/blog/products/ai-machine-learning/google-cloud-optimization-ai-cloud-fleet-routing-api"&gt;Cloud Fleet Routing API&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Real time and holistic inventory visibility with &lt;a href="https://cloud.google.com/solutions/supply-chain-twin"&gt;Supply Chain Twin&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Make sure you’re prepared for the unpredictable with real-time visibility over your distribution networks. &lt;a href="https://cloud.google.com/solutions/supply-chain-logistics"&gt;Learn how&lt;/a&gt; you can harness the power of AI and analytics and gain actionable insights that enhance your supply chain.&lt;/p&gt;&lt;/div&gt;</description><pubDate>Tue, 13 Dec 2022 17:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/healthcare-life-sciences/data-driven-intelligent-visible-life-sciences-supply-chain/</guid><category>Supply Chain &amp; Logistics</category><category>Healthcare &amp; Life Sciences</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Harness the power of data and AI in your life science supply chain</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/healthcare-life-sciences/data-driven-intelligent-visible-life-sciences-supply-chain/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Geri Studebaker</name><title>Director, Life Sciences Key Accounts, Google Cloud</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Paula Natoli</name><title>Director, Supply Chain &amp; Logistics Industry Solutions, Google Cloud</title><department></department><company></company></author></item><item><title>Beating inflation: 5 tips for retailers heading into the holidays</title><link>https://cloud.google.com/blog/topics/retail/five-things-retailers-can-do-to-stay-ahead-of-inflation-in-2023/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;Budget concerns and inflation shock are causing noticeable shifts in consumer behavior, a head-spinning turnabout since the pandemic days of 2020. We went from not having access to enough goods to now not having the right goods at the right price points. Heading into the holiday season, retailers will need to look sharp and be able to deliver value to the increasingly cost-conscious consumer — with frictionless product discovery and digital shopping experiences, relevant inventory, and personalization.&lt;/p&gt;&lt;p&gt;Those are a few of the insights gleaned from a &lt;a href="https://www.quantummetric.com/thankyou/5-ways-retailers-can-combat-the-effects-of-inflation/?_hsmi=228049074&amp;amp;_hsenc=p2ANqtz-9DMfxHc8hofZ5gO4_EHp_fHRs1zdWBpoAoJ0b49yKhSIHZFX12AYvsLJT4tgtvfgC_ahutB8uDsrII2dg6oHgH6EZ9tQ" target="_blank"&gt;recent eMarketer webcast&lt;/a&gt; on how retailers can better combat the effects of inflation, with pragmatic recommendations from experts including Amy Eschliman, managing director of retail solutions strategy and industry engagement at Google Cloud; Alexis Hoopes, vice president and head of e-commerce and direct-to-consumer (DTC) at Mattel Inc; and Elissa Quinby, head of retail insights at Quantum Metric. We’d like to share five key takeaways that retailers can adopt.&lt;/p&gt;&lt;p&gt;&lt;b&gt;1. Be prepared for earlier holiday planning&lt;/b&gt;. Budget-conscious buyers are planning their purchases earlier than ever. According to our partner &lt;a href="https://www.quantummetric.com/resources/ebook/retail-inflation-benchmarks/" target="_blank"&gt;Quantum Metric’s latest Retail Benchmarks research&lt;/a&gt;, 40% of U.S. consumers and 30% in the UK have already started their holiday shopping&lt;sup&gt;1&lt;/sup&gt;. At Mattel, Alexis noted, “We’ve learned to be nimble and early for our consumers, and to have products available for them when they’re ready to shop.” With higher prices, she added, “Consumers are preplanning and researching more, viewing product detail pages multiple times to check a higher-price item before adding it to their basket.”&lt;/p&gt;&lt;p&gt;Quantum Metric’s same research also shows that while average cart values grew between January to July 2022 — larger than they were at the same time last year1 — consumers were shopping less frequently. Because of higher prices, 37% of shoppers are now pre-planning and purchasing items all at once to help keep to their budget1. Amy observed. “That means retailers need to make it super easy for customers to find what they want to avoid shopping-cart abandonment.”&lt;/p&gt;&lt;p&gt;Retailers who make it easier for shoppers to find the right products, by providing &lt;a href="https://cloud.google.com/solutions/retail-product-discovery"&gt;Google-quality search and recommendations&lt;/a&gt;, can help reduce cart abandonment and increase conversions.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-video"&gt;



&lt;div class="article-module article-video "&gt;
  &lt;figure&gt;
    &lt;a class="h-c-video h-c-video--marquee"
      href="https://youtube.com/watch?v=-_RfJ5HIyx8"
      data-glue-modal-trigger="uni-modal--_RfJ5HIyx8-"
      data-glue-modal-disabled-on-mobile="true"&gt;

      
        &lt;img src="//img.youtube.com/vi/-_RfJ5HIyx8/maxresdefault.jpg"
             alt="Learn how the most innovative ecommerce, customer data platform, data enablement, and continuous product design platforms are leveraging the power of Google Cloud’s data and open infrastructure cloud solutions to help retailers better understand, engage, and activate consumers."/&gt;
      
      &lt;svg role="img" class="h-c-video__play h-c-icon h-c-icon--color-white"&gt;
        &lt;use xlink:href="#mi-youtube-icon"&gt;&lt;/use&gt;
      &lt;/svg&gt;
    &lt;/a&gt;

    
  &lt;/figure&gt;
&lt;/div&gt;

&lt;div class="h-c-modal--video"
     data-glue-modal="uni-modal--_RfJ5HIyx8-"
     data-glue-modal-close-label="Close Dialog"&gt;
   &lt;a class="glue-yt-video"
      data-glue-yt-video-autoplay="true"
      data-glue-yt-video-height="99%"
      data-glue-yt-video-vid="-_RfJ5HIyx8"
      data-glue-yt-video-width="100%"
      href="https://youtube.com/watch?v=-_RfJ5HIyx8"
      ng-cloak&gt;
   &lt;/a&gt;
&lt;/div&gt;

&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;&lt;b&gt;2. Get a handle on out-of-stock issues&lt;/b&gt;. While many of the supply-chain issues that surfaced during the pandemic have cleared up, inventory continues to be a challenge in retail. During the 2021 holiday season, Google/Ipsos research shows that consumers saw a 253% increase in “out of stock” messages versus pre-pandemic&lt;sup&gt;2&lt;/sup&gt;. Elissa further pointed out that a great majority of both U.S. and UK consumers experience out-of-stock issues several times a month. It’s a fluid situation, however, with retailers facing bloated inventory as consumer demands quickly pivot from, for example, branded goods to generic or white-label items. “In the next six months or so, you really need to make sure you have the right inventory to meet consumer demands,” she advised.&lt;/p&gt;&lt;p&gt;The need for end-to-end visibility and the ability to act in real-time across the supply chain has never been more pressing. Google Cloud and our partners are &lt;a href="https://cloud.google.com/solutions/supply-chain-logistics"&gt;tackling the top supply chain issues&lt;/a&gt; head on with solutions that enable end-to-end visibility, analytics and alert-driven event management as well as AI solutions and automation to streamline processes like &lt;a href="https://cloud.google.com/solutions/procurement-doc-ai"&gt;procurement&lt;/a&gt;, fulfillment, and delivery.&lt;/p&gt;&lt;p&gt;&lt;b&gt;3. Introduce value: communicate the quality of the product and the experience&lt;/b&gt;. While rising prices are paramount for many shoppers, it’s a common misconception that consumers are making purchase decisions based solely on price. Alexis remarked, “In e-commerce, we talk about price, product, service, and experience. Price is only one of the pillars for consumers. At Mattel, we are fully focused on product and experience. What makes this special? How do we connect directly in new ways to the consumer? Create ‘wow’ moments and deeper connections. When we think about value for our consumers, it’s the strength of the products that will drive the purchase.”  &lt;/p&gt;&lt;p&gt;Elissa also noted that while consumers are doing a lot of comparison shopping, it’s really about value, whether a high-quality product or a high-quality experience. &lt;a href="https://www.quantummetric.com/" target="_blank"&gt;Quantum Metric’s Continuous Product Design solution&lt;/a&gt;, which is &lt;a href="https://cloud.google.com/solutions/data-cloud-isvs"&gt;built with BigQuery&lt;/a&gt;, ingests data across multiple digital touchpoints, including from mobile and web applications, and connects customer signals to every stage of the product lifecycle to help deliver the products and experiences that customers actually want.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/image1_q2kathp.max-1000x1000.jpg"
        
          alt="image1.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;&lt;b&gt;4. Ensure consistent experiences across channels&lt;/b&gt;. Today, consumers crave the cross-channel shopping experience. “The channel experience has gone from online to in-store to now everywhere,” Amy commented. “We call it ubiquitous digital shopping.” Elissa added that 75% of consumers do most of their shopping digitally. However, mobile drives 67% of digital traffic, but just 49% of sales.&lt;sup&gt;1&lt;/sup&gt; “Recent trends in traffic and conversion rates by device show that we can expect the most traffic for the big sale days on mobile,” she said. “People are looking for discovery and awareness, maybe even adding items to the cart as a placeholder or reminder. But they prefer to complete a sale on a desktop. It will be critical for retailers to offer a consistent experience, especially on major sale days like Black Friday and Cyber Monday.” Elissa also advised wrapping up any experiments with product and site design early, making sure to understand the customer experience holistically across the organization and prioritizing efforts to eliminate friction.&lt;/p&gt;&lt;p&gt;Consumers now expect to be able to shop wherever and whenever best fits their needs, whether in a store, on your website, through your app, or from within a social media ad, and have it be a consistently good experience no matter how they first entered or exited your commerce site. Google’s &lt;a href="https://www.thinkwithgoogle.com/consumer-insights/consumer-journey/grow-online-and-in-app-sales/" target="_blank"&gt;2022 Retail Marketing Guide&lt;/a&gt; provides useful insights and tips on how to grow your online and in-app sales. &lt;/p&gt;&lt;p&gt;&lt;b&gt;5. Personalize touchpoints to build loyalty&lt;/b&gt;. Connecting with your customer base and making sure they understand the value of your offering is essential. Alexis noted that the key is to keep your messages fresh as the holiday shopping season expands, providing new messages as they keep coming back to your store. “We need to engage them by helping them find what they are looking for at the right time,” she said. “Recognize that they are doing more planning and wish-list building early, then buying last-minute gifts at lower prices towards the end. Make sure those are front and center.”&lt;/p&gt;&lt;p&gt;Alexis also pointed out that today, consumers are providing more data points with the products they view or the items sitting in their carts. “What's so great about e-commerce is that we can use all of this to create more personalized, direct messages targeted to those consumers,” she commented.&lt;/p&gt;&lt;p&gt;Amy recommended continuing to focus on conversion with product discovery and personalization, harnessing customer data to drive insights and action. “Any company’s biggest asset is their data. Using it in as many ways possible and activating it across the company is incredibly important,” she remarked. “Take advantage of your first-party data to activate everything from marketing campaigns to a more efficient supply chain. For every customer who comes to one of your digital properties, make sure your product discovery is as easy as possible. Pay attention to your &lt;a href="https://cloud.google.com/recommendations"&gt;recommendations&lt;/a&gt;, driving personalization to make that experience as unique and fruitful for the customer as possible.”&lt;/p&gt;&lt;p&gt;Achieving these objectives requires a modern cloud data warehouse and activation of a customer data platform. Retailers can explore how &lt;a href="https://cloud.google.com/solutions/data-warehouse-modernization"&gt;Google Cloud's advanced data capabilities &lt;/a&gt;and our &lt;a href="https://cloud.google.com/solutions/retail#section-4"&gt;ecosystem of partners&lt;/a&gt; can power a customer data platform that supports more personalized marketing, shopping experience, and customer service.&lt;/p&gt;&lt;p&gt;While these are our key takeaways, we invite you to register to watch the&lt;a href="https://www.quantummetric.com/thankyou/5-ways-retailers-can-combat-the-effects-of-inflation/?_hsmi=228049074&amp;amp;_hsenc=p2ANqtz-9DMfxHc8hofZ5gO4_EHp_fHRs1zdWBpoAoJ0b49yKhSIHZFX12AYvsLJT4tgtvfgC_ahutB8uDsrII2dg6oHgH6EZ9tQ" target="_blank"&gt; on-demand webinar&lt;/a&gt;, “5 Ways Retailers Can Combat the Effects of Inflation,” for even more insights.&lt;/p&gt;&lt;hr/&gt;&lt;p&gt;&lt;i&gt;&lt;sup&gt;1. &lt;a href="https://www.quantummetric.com/resources/ebook/retail-inflation-benchmarks/" target="_blank"&gt;Quantum Metric Retail Benchmarks, “Adjusting for Inflation.”&lt;/a&gt; The report is based on aggregated browsing behavior from January to July 2022, paired with a survey of 3,400 consumers in the U.S. and UK. &lt;br/&gt;2. Google/Ipsos, Holiday Shopping Study, Oct 2021 – Jan 2022, Online survey, US, n=7,253, Americans 18+ who conducted holiday shopping activities in past two days&lt;/sup&gt;&lt;/i&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Fri, 18 Nov 2022 17:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/retail/five-things-retailers-can-do-to-stay-ahead-of-inflation-in-2023/</guid><category>Consumer Packaged Goods</category><category>Supply Chain &amp; Logistics</category><category>Partners</category><category>Retail</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/image2_uKBZQku.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Beating inflation: 5 tips for retailers heading into the holidays</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/image2_uKBZQku.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/retail/five-things-retailers-can-do-to-stay-ahead-of-inflation-in-2023/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Vikas Jain</name><title>Director of Sales, Retail &amp; CPG Strategic ISV Portfolio, Google Cloud</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Mario Ciabarra</name><title>CEO, Quantum Metric</title><department></department><company></company></author></item><item><title>Unlocking the power of connected vehicle data and advanced analytics with BigQuery</title><link>https://cloud.google.com/blog/products/data-analytics/powering-connected-vehicles-on-google-cloud-with-sibros-ota-platform/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;As software-defined vehicles continue to advance and the &lt;a href="https://www.mckinsey.com/industries/automotive-and-assembly/our-insights/mapping-the-automotive-software-and-electronics-landscape-through-2030" target="_blank"&gt;quantity of digital services grows&lt;/a&gt; to meet consumer demand, the data required to provide these services continue to grow as well. This makes automotive manufacturers and suppliers look for capabilities to log and analyze data, update applications, and extend commands to in-vehicle software.&lt;/p&gt;&lt;p&gt;The challenges the automotive sector faces can be quantified. A modern vehicle contains upwards of 70 electronic control units (ECUs), most of which are connected to one or more sensors. Not only is it now possible to exactly measure many aspects of vehicle performance, but new options become available. Using LIDAR (light detection and ranging), for example, vehicles are achieving higher levels of autonomy; this leads to a data stream from such demanding applications that may reach 25 GB per hour. For the in-vehicle processing of data, &lt;a href="https://www.mdpi.com/1041928" target="_blank"&gt;100 million lines&lt;/a&gt; of software code may be present — more than a fighter jet. This in-vehicle code will have to be maintained with updates and new functionalities.&lt;/p&gt;&lt;p&gt;Access to the data will allow manufacturers to gain valuable insights into operational details of their vehicles. The use of this data can help to reduce costs and risks, increase ROI, support ESG initiatives, and provide valuable insights to develop innovative solutions and shorten the time to value for Electric Vehicle innovations.&lt;/p&gt;&lt;p&gt;Sibros’ &lt;a href="https://www.sibros.com/platform" target="_blank"&gt;Deep Connected Platform&lt;/a&gt; (DCP) makes it possible for these manufacturers to build and launch new connected vehicle use cases from production to post-sale at scale by connecting and managing all software and data throughout every life cycle stage. A key component of this platform is the Sibros&lt;a href="https://www.sibros.com/product/ota-deep-logger" target="_blank"&gt; Deep Logger&lt;/a&gt; that provides capabilities like the following:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Full configurability of what to record, when to record it, and how fast to record it.&lt;/li&gt;&lt;li&gt;High resolution timestamps of all Controller Area Network (CAN) messages.&lt;/li&gt;&lt;li&gt;Dynamic application of live log configurations to receive new data points without deploying new software.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;For example, properly analyzed engine data enables true predictive maintenance for the first time, which creates the option to repair or replace components before failure happens. Another example would be the evaluation of data regarding the use of certain in-car features with the goal to redesign its interior. &lt;/p&gt;&lt;p&gt;Two other components of the DCP are &lt;a href="https://www.sibros.com/product/ota-deep-updater" target="_blank"&gt;software updates&lt;/a&gt; and &lt;a href="https://www.sibros.com/product/ota-command-manager" target="_blank"&gt;remote commands&lt;/a&gt; to ECUs. The DCP on Google Cloud enables seamless integration with any vehicle architecture and provides OEMs and suppliers with the platform to manage connected vehicle data at rest and in transit using a proven and secure way on a global scale.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/Sibros_Blog_Diagram_-_Publication.max-1000x1000.jpg"
        
          alt="Sibros Blog Diagram - Publication.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;OEMs can pull data through APIs provided by Sibros into Google Data Cloud (including &lt;a href="https://cloud.google.com/bigquery"&gt;BigQuery&lt;/a&gt;) to gain access to the rich information data sets provided by the DCP within their environment and blend this data with their first party data sets to provide value insights for their business. Some of the Connected Vehicle insights that DCP information enables are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Damage prevention, improved operation, or development of the next generation of engines with insights from complex analyses that could consider parameters like model, engine type, mileage, overall speed, temperature, air pressure, load, services, and more.&lt;/li&gt;&lt;li&gt;The combination of electric vehicle battery usage data like charging cycles, engine performance, and battery age with contributing factors as the use of the air conditioning to determine if such factors contribute to hazardous battery conditions and for improved battery development.&lt;/li&gt;&lt;li&gt;Cross-organization collaboration in R&amp;amp;D by the provision of information on all these metrics and more from real-world driving, like engine knock data and even tire pressure.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Google Cloud’s unified data cloud offering provides a complete platform for building data-driven applications like those from Sibros — from simplified data ingestion, processing, and storage to powerful analytics, AI, ML, and data sharing capabilities — integrated with Google Cloud. With a diverse partner ecosystem and support for multi-cloud, open-source tools and APIs, Google Cloud provides Sibros the portability and the extensibility they need to avoid data lock-in.&lt;/p&gt;&lt;p&gt;&lt;i&gt;“Software has an ever increasing importance in the automotive world, even more so with electric vehicles and new mobility services. Google Cloud is partnering with Sibros to bring their award winning Deep Connected Platform to deliver high frequency, low latency over-the-air software updates, data logging &amp;amp; diagnostics capabilities to our automotive customers, leveraging the security and scale of Google Cloud. This is revolutionizing everything from development cycles to business models and customer relationships.” — &lt;b&gt;Matthias Breunig, Director, Global Automotive Solutions, Google Cloud&lt;/b&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;Through &lt;a href="https://cloud.google.com/solutions/data-cloud-isvs"&gt;Built with BigQuery&lt;/a&gt;, Google Cloud is helping tech companies like Sibros build innovative applications on Google’s Data Cloud with simplified access to technology, helpful and dedicated engineering support, and joint go-to-market programs.&lt;/p&gt;&lt;p&gt;&lt;i&gt;“Sibros is looking forward to partnering with Google Cloud, which will enable vehicle manufacturers and suppliers to reach the next level in their use of data. Sibros solutions for Deep Data Logging and Updating on the Google Data Cloud, combined with Google BigQuery, will help them to mitigate risks, reduce costs, add innovative products, and introduce value-added use cases.”&lt;/i&gt; &lt;i&gt;— &lt;b&gt;Xiaojian Huang, &lt;/b&gt;&lt;b&gt;Chief Digital Officer&lt;/b&gt;&lt;b&gt;, Software, Sibros&lt;/b&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;Sibros and Google Cloud are driving Connected Mobility transformation to help our customers accelerate R&amp;amp;D innovation, power efficient operations, and unlock software-defined vehicle use cases with a full stack connected vehicle platform. Click &lt;a href="https://www.sibros.com/partner/google-cloud" target="_blank"&gt;here&lt;/a&gt; to learn more about Sibros on Google Cloud.&lt;/p&gt;&lt;/div&gt;</description><pubDate>Fri, 28 Oct 2022 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/products/data-analytics/powering-connected-vehicles-on-google-cloud-with-sibros-ota-platform/</guid><category>Supply Chain &amp; Logistics</category><category>Manufacturing</category><category>Sustainability</category><category>Google Cloud</category><category>Data Analytics</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Unlocking the power of connected vehicle data and advanced analytics with BigQuery</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/products/data-analytics/powering-connected-vehicles-on-google-cloud-with-sibros-ota-platform/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Yemi Falokun</name><title>ISV Solutions Architect, Google Cloud</title><department></department><company></company></author><author xmlns:author="http://www.w3.org/2005/Atom"><name>Albert Lilly</name><title>Chief Marketing Office, Sibros</title><department></department><company></company></author></item><item><title>Lufthansa increases on-time flights by wind forecasting with Google Cloud ML</title><link>https://cloud.google.com/blog/products/ai-machine-learning/how-lufthansa-reduce-flight-delays-with-google-cloud-ml/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;The magnitude and direction of wind significantly impacts  airport operations, and Lufthansa Group Airlines are no exception. A particularly troublesome kind is called BISE: it is a cold, dry wind that blows from the northeast to southwest in Switzerland, through the Swiss Plateau. Its effects on flight schedules can be severe, such as forcing planes to change runways, which can create a chain reaction of flight delays and possible cancellations. In Zurich Airport, in particular, BISE can potentially reduce capacity by up to 30%, leading to further flight delays and cancellations, and to millions in lost revenue for Lufthansa (as well as dissatisfaction among their passengers).&lt;/p&gt;&lt;p&gt;Being able to predict this kind of wind well in advance lets the Network Operations Control team schedule flight operations optimally across runways and timeslots, to minimize disruptions to the schedule. However, predicting speed and magnitude can be incredibly difficult to model and thus to predict— which is why Lufthansa reached out to Google Cloud.&lt;/p&gt;&lt;p&gt;Machine learning (ML) can help airports and airlines to better anticipate and manage these types of disruptive weather events. In this blog post, we’ll explore an experiment Lufthansa did together with Google Cloud and its Vertex AI Forecast service, accurately predicting BISE hours in advance, with more than &lt;i&gt;40% relative improvement&lt;/i&gt; in accuracy over internal heuristics, all &lt;i&gt;within days&lt;/i&gt; instead of the months it often takes to do ML projects of this magnitude and performance.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/1_Lufthansa.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/1_Lufthansa.max-1000x1000.jpg"
        
          alt="1 Lufthansa.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;&lt;i&gt;“Being impressed with Google’s technology and prowess in the field of AI and machine learning, we were certain that my working together with their expert, to combine our technology with their domain expertise, we would achieve the best results possible,“&lt;/i&gt; said Christian Most, Senior Director, Digital Operations Optimization at Lufthansa Group. &lt;/p&gt;&lt;h3&gt;Collecting and preparing the dataset&lt;/h3&gt;&lt;p&gt;The goal of Lufthansa and Google Cloud’s project was to forecast the BISE wind for Zurich’s Kloten Airport using deep learning-based ML approaches, then to see if the prediction surpasses internal heuristics-driven solutions and  gauge the ease of use and practicality of the deep learning approach in production.&lt;/p&gt;&lt;p&gt;Since deep learning-based techniques require large datasets, the project relies on Meteoswiss simulation data, a dataset consisting of multiple meteorological sensor measurements collected from several weather stations across Switzerland over the past five years. By using this dataset, we obtained data on factors like wind direction, speed, pressure, temperature, humidity and more, at a 10 min resolution, along with some information about the location of the weather stations, such as altitude. These factors, which we hypothesized to be predictive of the BISE, ended up carrying valuable signals, as we would see later.&lt;/p&gt;&lt;p&gt;This collected data was next subjected to an extensive cleaning and feature engineering process using Vertex AI Workbench, in order to prepare the final dataset for training. The cleaning phase included steps to drop the features, or rows, that contained too many missing values, or failed statistical tests for entropy, etc. Since the direction of wind is a circular feature (between 0 and 360 degrees), this column/feature was replaced with two features: the corresponding sine and cosine embedding. The dataset was then flattened such that the columns contained all the relevant features and sensor measurements from all the weather stations at a particular 10-minute interval. &lt;/p&gt;&lt;p&gt;Since the target variable — i.e,. BISE — was not directly available, we engineered a proxy target variable for BISE called “tailwind speed around runway,” which above a certain threshold indicates the presence of BISE along the runway.&lt;/p&gt;&lt;h3&gt;Forecasting wind in the Cloud&lt;/h3&gt;&lt;p&gt;Once the dataset was ready, Lufthansa and Google Cloud evaluated several options before deciding to experiment and tune &lt;a href="https://cloud.google.com/vertex-ai/docs/tabular-data/forecasting/overview"&gt;Vertex AI Forecast,&lt;/a&gt; Google’s AutoML-powered forecasting service, in order to achieve optimum results. Vertex Forecast is capable of the required feature engineering, neural architecture search, and hyper parameter tuning, and it is managed by Google Cloud to score in the &lt;a href="https://ai.googleblog.com/2020/12/using-automl-for-time-series-forecasting.html" target="_blank"&gt;top 2.5% in the M5 Forecasting Competition&lt;/a&gt; on Kaggle, in a completely automated fashion. These qualities made it an excellent choice for Lufthansa, to reduce the manual overhead of creating, deploying, and maintaining top performing deep learning models.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/2_Lufthansa.1000065320000935.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/2_Lufthansa.max-1000x1000.jpg"
        
          alt="2 Lufthansa.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;The raw data files were loaded from cloud storage, preprocessed on &lt;a href="https://cloud.google.com/vertex-ai-workbench"&gt;Vertex AI Workbench&lt;/a&gt;. Then, a training pipeline was initiated on &lt;a href="https://cloud.google.com/vertex-ai/docs/pipelines/introduction"&gt;Vertex AI Pipelines&lt;/a&gt;, which performed the following steps in sequence:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;The .csv data file was loaded from Cloud Storage into a &lt;a href="https://cloud.google.com/vertex-ai/docs/training/using-managed-datasets"&gt;Vertex AI managed dataset.&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;A Vertex AI forecasting training job was initiated with the dataset, and it was also registered as a model in the &lt;a href="https://cloud.google.com/vertex-ai/docs/model-registry/introduction"&gt;Vertex AI Model Registry.&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Upon completion, the model was evaluated on the test set, and the model’s predictions and the input features and ground truth of the test set, were stored in a user-defined table in &lt;a href="https://cloud.google.com/bigquery/?utm_source=google&amp;amp;utm_medium=cpc&amp;amp;utm_campaign=emea-de-all-en-dr-bkws-all-all-trial-e-gcp-1011340&amp;amp;utm_content=text-ad-none-any-DEV_c-CRE_574683148973-ADGP_Hybrid%20%7C%20BKWS%20-%20EXA%20%7C%20Txt%20~%20Data%20Analytics%20~%20BigQuery%23v2-KWID_43700072728463014-aud-606988878174%3Akwd-47616965283-userloc_9042418&amp;amp;utm_term=KW_bigquery-NET_g-PLAC_&amp;amp;gclid=Cj0KCQjw1bqZBhDXARIsANTjCPLiVNs1ECLBqiLBkaIrEBQapSWLkX_KMwjLKjkcZeg0Gi3GYR6nztcaAiGCEALw_wcB&amp;amp;gclsrc=aw.ds"&gt;BigQuery&lt;/a&gt;. Several test metrics were also available on the service and model dashboards.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;One of the biggest challenges was the severe imbalance in the dataset, as measurements with BISE were very far and few in between. In order to account for this, instances where BISE occurred, as well the occurrences temporally close to them, were upweighted using weights calculated with methods including Inverse of Square Root of Number of Samples (ISNS), &lt;a href="https://openaccess.thecvf.com/content_CVPR_2019/papers/Cui_Class-Balanced_Loss_Based_on_Effective_Number_of_Samples_CVPR_2019_paper.pdf" target="_blank"&gt;Effective Number of Samples (ENS)&lt;/a&gt;, and Gaussian reweighting. The formulas for the methods are given below. These weights were supplied as separate columns in the dataset, and were iteratively used thereafter by the service as the “weight” column.&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;i&gt;ISNS&lt;/i&gt;&lt;/b&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--medium
      
      
        h-c-grid__col
        
        h-c-grid__col--4 h-c-grid__col--offset-4
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/3_Lufthansa.1000064920000308.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/3_Lufthansa.max-1000x1000.jpg"
        
          alt="3 Lufthansa.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;&lt;b&gt;&lt;i&gt;ENS &lt;/i&gt;&lt;/b&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--medium
      
      
        h-c-grid__col
        
        h-c-grid__col--4 h-c-grid__col--offset-4
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/4_Lufthansa.1000064920000368.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/4_Lufthansa.max-1000x1000.jpg"
        
          alt="4 Lufthansa.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;&lt;b&gt;&lt;i&gt;Weighted gaussian&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--medium
      
      
        h-c-grid__col
        
        h-c-grid__col--4 h-c-grid__col--offset-4
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/5_Lufthansa.1000065520000397.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/5_Lufthansa.max-1000x1000.jpg"
        
          alt="5 Lufthansa.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;h3&gt;Results and next steps&lt;/h3&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/6_Lufthansa.1000064320001041.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/6_Lufthansa.max-1000x1000.jpg"
        
          alt="6 Lufthansa.jpg"&gt;
        
        &lt;/a&gt;
      
        &lt;figcaption class="article-image__caption "&gt;&lt;i&gt; Fig 1. Recall for 2-hour horizon&lt;/i&gt;&lt;/figcaption&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/7_Lufthansa.1000064120001045.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/7_Lufthansa.max-1000x1000.jpg"
        
          alt="7 Lufthansa.jpg"&gt;
        
        &lt;/a&gt;
      
        &lt;figcaption class="article-image__caption "&gt;&lt;i&gt;Fig 2. F1 Score for a 2-hour Horizon&lt;/i&gt;&lt;/figcaption&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;In the above figures, the x-axis represents the forecast horizon and the Y-axis shows the respective metrics (Recall/F1-score). As shown after multiple experiments, we can see Vertex AI Forecast achieved higher recall and precision t (red bar), outperforming Lufthansa’s internal baseline heuristics, with the performance gap widening steadily as the forecast horizon extends further into the future. At the two-hour mark, our custom-configured Vertex AI Forecast model improved by 40% relative to the internal heuristics and 1700% compared to the random guess baseline. As we saw with other experiments, at a six-hour forecast horizon, the performance gap widens even more, with Vertex AI Forecast in the lead. Since forecasting BISE a few hours in advance is very beneficial to prevent flight delays for Lufthansa, this was a great solution for them.&lt;/p&gt;&lt;p&gt;&lt;i&gt;“We are very excited to be able to not only do accurate long term forecasts for the BISE, but also that Vertex AI Forecasting makes training and deploying such models much easier and faster, allowing us to innovate rapidly to serve our customers and stakeholders in the best possible manner,”&lt;/i&gt; said Swiss Oliver Rueegg, Product Owner, Swiss International Airlines.&lt;/p&gt;&lt;p&gt;Lufthansa plans to explore productionizing this solution by integrating it into their Operations Decision Support Suite, which is used by the network controllers in the Operations Control Center in Kloten, as well as to work closely with Google’s specialists to integrate both Vertex AI Forecast and other of Google’s AI/ML offerings for their use cases.&lt;/p&gt;&lt;/div&gt;</description><pubDate>Wed, 28 Sep 2022 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/products/ai-machine-learning/how-lufthansa-reduce-flight-delays-with-google-cloud-ml/</guid><category>Supply Chain &amp; Logistics</category><category>Google Cloud</category><category>Data Analytics</category><category>Google Cloud in Europe</category><category>AI &amp; Machine Learning</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/original_images/LUFTHANSA_06.gif" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Lufthansa increases on-time flights by wind forecasting with Google Cloud ML</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/original_images/LUFTHANSA_06.gif</image><site_name>Google</site_name><url>https://cloud.google.com/blog/products/ai-machine-learning/how-lufthansa-reduce-flight-delays-with-google-cloud-ml/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Anant Nawalgaria</name><title>Sr. Staff ML Engineer &amp; Founder of Gen AI Intensive, Google</title><department></department><company></company></author></item><item><title>Building a Mobility Dashboard with Cloud Run and Firestore</title><link>https://cloud.google.com/blog/topics/manufacturing/building-a-mobility-dashboard-with-cloud-run-and-firestore/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;Visualization is the key to understanding massive amounts of data. Today we have BigQuery and Looker to analyze petabytes scale data and to extract insights in a sophisticated way. But how about monitoring data that actively changes every second? In this post, we will walk through how to build a real-time dashboard with Cloud Run and Firestore.&lt;/p&gt;&lt;h3&gt;Mobility Dashboard&lt;/h3&gt;&lt;p&gt;There are many business use cases that require real-time updates. For example, inventory monitoring in retail stores, security cameras, and MaaS (Mobility as a Service) applications such as share ride. In the MaaS business area, locations of vehicles are very useful in making business decisions. In this post, we are going to build a mobility dashboard, monitoring vehicles on a map in real-time.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/original_images/1_Mobility_Dashboard.gif"
        
          alt="1 Mobility Dashboard.gif"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;h3&gt;The Architecture&lt;/h3&gt;&lt;p&gt;The dashboard should be accessible from the web browser without any setups on the client side. Cloud Run is a good fit because it can generate URLs, and of course, scalable that can handle millions of users. Now we need to implement an app that can plot geospatial data, and a database that can broadcast its update. Here are my choices and architecture.&lt;/p&gt;&lt;a href="https://cloud.google.com/run"&gt;&lt;/a&gt;&lt;ul&gt;&lt;a href="https://cloud.google.com/run"&gt;&lt;/a&gt;&lt;li&gt;&lt;a href="https://cloud.google.com/run"&gt;&lt;/a&gt;&lt;a href="https://cloud.google.com/run"&gt;Cloud Run&lt;/a&gt; — Hosting a web app (dashboard)&lt;/li&gt;&lt;li&gt;(&lt;a href="https://streamlit.io/" target="_blank"&gt;streamlit&lt;/a&gt; — a library to visualize data and to make web app)&lt;/li&gt;&lt;li&gt;(&lt;a href="https://deckgl.readthedocs.io/en/latest/" target="_blank"&gt;pydeck&lt;/a&gt; — a library to plot geospatial data)&lt;/li&gt;&lt;li&gt;&lt;a href="https://cloud.google.com/firestore"&gt;Firestore&lt;/a&gt; — a full managed database that keeps your data in sync&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;The diagram below illustrates a brief architecture of the system. In the production environment, you may also need to implement a data ingestion and transform pipeline.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/2_Mobility_Dashboard.0480031409600298.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/2_Mobility_Dashboard.max-1000x1000.jpg"
        
          alt="2 Mobility Dashboard.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;Before going to the final form, let’s take some steps to understand each component.&lt;/p&gt;&lt;h3&gt;Step 1: Build a data visualization web app with Cloud Run + streamlit&lt;/h3&gt;&lt;p&gt;streamlit is an OSS web app framework that can create beautiful data visualization apps without knowledge of the front-end (e.g. HTML, JS). If you are familiar with pandas DataFrame for your data analytics, it won’t take time to implement. For example, you can easily visualize your DataFrame in a few lines of code.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-code"&gt;&lt;dl&gt;
    &lt;dt&gt;code_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;code&amp;#x27;, &amp;quot;import streamlit as st\r\nchart_data = pd.DataFrame(\r\n     np.random.randn(20, 3),\r\n     columns=[&amp;#x27;a&amp;#x27;, &amp;#x27;b&amp;#x27;, &amp;#x27;c&amp;#x27;])\r\nst.line_chart(chart_data)&amp;quot;), (&amp;#x27;language&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;caption&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7f22ed33ee80&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/3_Mobility_Dashboard.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/3_Mobility_Dashboard.max-1000x1000.jpg"
        
          alt="3 Mobility Dashboard.jpg"&gt;
        
        &lt;/a&gt;
      
        &lt;figcaption class="article-image__caption "&gt;&lt;i&gt;The chart on the webapp (&lt;a href="https://docs.streamlit.io/library/api-reference/charts/st.line_chart"&gt;Source&lt;/a&gt;)&lt;/i&gt;&lt;/figcaption&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;Making this app runnable on Cloud Run is easy. Just add &lt;code&gt;streamlit&lt;/code&gt; in &lt;code&gt;requirements.txt&lt;/code&gt;, and make &lt;code&gt;Dockerfile&lt;/code&gt; from a typical python webapp image. If you are not familiar with Docker, &lt;a href="https://cloud.google.com/blog/products/containers-kubernetes/google-cloud-now-supports-buildpacks"&gt;buildpacks&lt;/a&gt; can do the job. Instead of making Dockerfile, make &lt;code&gt;Procfile&lt;/code&gt; with just 1 line as below.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-code"&gt;&lt;dl&gt;
    &lt;dt&gt;code_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;code&amp;#x27;, &amp;#x27;web: streamlit run app.py --server.port $PORT --server.enableCORS=false&amp;#x27;), (&amp;#x27;language&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;caption&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7f22ed33ee20&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;To summarize, the minimum required files are only as below.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-code"&gt;&lt;dl&gt;
    &lt;dt&gt;code_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;code&amp;#x27;, &amp;#x27;.\r\n|-- app.py\r\n|-- Procfile\r\n|-- requirements.txt&amp;#x27;), (&amp;#x27;language&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;caption&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7f22ed33ee50&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;Deployment is also easy. You can deploy this app to Cloud Run with just a command.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-code"&gt;&lt;dl&gt;
    &lt;dt&gt;code_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;code&amp;#x27;, &amp;#x27;$ gcloud run deploy mydashboard --source .&amp;#x27;), (&amp;#x27;language&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;caption&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7f22ed2c5c40&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;This command will build and make your image with buildpacks and Cloud Build, thus you don’t need to set up a build environment in your local system. Once deployment is completed, you can access your web app with the generated URL like &lt;i&gt;https://xxx-[…].run.app&lt;/i&gt;. Copy and paste the URL into your web browser, and you will see your first dashboard webapp.&lt;/p&gt;&lt;h3&gt;Step 2: Add a callback function that receive changes in Firestore database&lt;/h3&gt;&lt;p&gt;In the STEP 1, you can visualize your data with fixed conditions or interactively with UI functions on streamlit. Now we want it to update by itself.&lt;/p&gt;&lt;p&gt;Firestore is a scalable NoSQL database, and it keeps your data in sync across client apps through real-time listeners. Firestore is available on Android and iOS, and also provides SDKs in major programming languages. Since we use streamlit in Python, let us use a Python &lt;a href="https://pypi.org/project/google-cloud-firestore/" target="_blank"&gt;client&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;In this post we don’t cover detailed usage of Firestore though, it is easy to implement a callback function that is called when a specific “Collection” has been changed. [&lt;a href="https://googleapis.dev/python/firestore/latest/collection.html#google.cloud.firestore_v1.collection.CollectionReference.on_snapshot" target="_blank"&gt;reference&lt;/a&gt;]&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-code"&gt;&lt;dl&gt;
    &lt;dt&gt;code_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;code&amp;#x27;, &amp;quot;from google.cloud import firestore_v1\r\n\r\ndb = firestore_v1.Client()\r\ncollection_ref = db.collection(u&amp;#x27;users&amp;#x27;)\r\n\r\ndef on_snapshot(collection_snapshot, changes, read_time):\r\n  for doc in collection_snapshot.documents:\r\n    print(u&amp;#x27;{} =&amp;gt; {}&amp;#x27;.format(doc.id, doc.to_dict()))\r\n\r\n# Watch this collection\r\ncollection_watch = collection_ref.on_snapshot(on_snapshot)&amp;quot;), (&amp;#x27;language&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;caption&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7f22ed2ddaf0&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;In this code, &lt;code&gt;on_snapshot&lt;/code&gt; callback function is called when &lt;code&gt;users&lt;/code&gt; Collection has been changed. You can also watch changes of &lt;a href="https://googleapis.dev/python/firestore/latest/document.html#google.cloud.firestore_v1.document.DocumentReference.on_snapshot" target="_blank"&gt;Document&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;i&gt;Since Firestore is a fully managed database, you would not need to provision the service ahead. You only need to &lt;a href="https://cloud.google.com/firestore/docs/create-database-server-client-library#create_a_in_native_mode_database"&gt;choose “mode” and location&lt;/a&gt;. To use real-time sync functionality, select “Native mode”. Also select nearest or desired location.&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Using Firestore with streamlit&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Now let’s implement Firestore with streamlit. We add on_snapshot callback and update a chart with the latest data sent from Firestore. Here is one quick note when you use the callback function with streamlit. on_snapshot function is executed in a sub thread, instead UI manipulation in streamlit must be executed in a main thread. Therefore, we use Queue to sync the data between threads. The code will be something like below.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-code"&gt;&lt;dl&gt;
    &lt;dt&gt;code_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;code&amp;#x27;, &amp;#x27;from queue import Queue\r\n\r\nq = Queue()\r\ndef on_snapshot(collection_snapshot, changes, read_time):\r\n  for doc in collection_snapshot.documents:\r\n    q.put(doc.to_dict())  # Put data into the Queue\r\n\r\n# below will run in main thread\r\nsnap = st.empty()  # placeholder\r\n\r\nwhile True:\r\n  # q.get() is a blocking function. thus recommend to add timeout\r\n  doc = q.get()  # Read from the Queue\r\n  snap.write(doc)  # Change the UI&amp;#x27;), (&amp;#x27;language&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;caption&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7f22ed2ddc10&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;Deploy this app and write something in the collection you refer to. You will see the updated data on your webapp.&lt;/p&gt;&lt;h3&gt;Step 3: Plot a geospatial data with streamlit&lt;/h3&gt;&lt;p&gt;We learned how to host web apps on Cloud Run, then how to update data with Firestore. Now we want to know how to plot geospatial data with streamlit. streamlit has multiple ways to plot geospatial data which includes latitude and longitude, we here used &lt;code&gt;pydeck_plot()&lt;/code&gt;. This function is a wrapper of &lt;a href="https://deck.gl/" target="_blank"&gt;deck.gl&lt;/a&gt;, a geospatial visualization library.&lt;/p&gt;&lt;p&gt;For example, provide data in latitude and longitude as to plot, add layers to visualize them.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-code"&gt;&lt;dl&gt;
    &lt;dt&gt;code_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;code&amp;#x27;, &amp;#x27;import streamlit as st\r\nimport pydeck as pdk\r\nimport pandas as pd\r\nimport numpy as np\r\n\r\ndf = pd.DataFrame(\r\n    np.random.randn(1000, 2) / [50, 50] + [37.76, -122.4],\r\n    columns=[\&amp;#x27;lat\&amp;#x27;, \&amp;#x27;lon\&amp;#x27;])\r\nst.pydeck_chart(pdk.Deck(\r\n     map_provider=&amp;quot;carto&amp;quot;,\r\n     map_style=\&amp;#x27;road\&amp;#x27;,\r\n     initial_view_state=pdk.ViewState(\r\n         latitude=37.76,\r\n         longitude=-122.4,\r\n         zoom=11,\r\n         pitch=50,\r\n     ),\r\n     layers=[\r\n         pdk.Layer(\r\n            \&amp;#x27;HexagonLayer\&amp;#x27;,\r\n            data=df,\r\n            get_position=\&amp;#x27;[lon, lat]\&amp;#x27;,\r\n            radius=200,\r\n            elevation_scale=4,\r\n            elevation_range=[0, 1000],\r\n            pickable=True,\r\n            extruded=True,\r\n         ),\r\n         pdk.Layer(\r\n             \&amp;#x27;ScatterplotLayer\&amp;#x27;,\r\n             data=df,\r\n             get_position=\&amp;#x27;[lon, lat]\&amp;#x27;,\r\n             get_color=\&amp;#x27;[200, 30, 0, 160]\&amp;#x27;,\r\n             get_radius=200,\r\n         ),\r\n     ],\r\n ))&amp;#x27;), (&amp;#x27;language&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;caption&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7f22ed2dddf0&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/4_Mobility_Dashboard.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/4_Mobility_Dashboard.max-1000x1000.jpg"
        
          alt="4 Mobility Dashboard.jpg"&gt;
        
        &lt;/a&gt;
      
        &lt;figcaption class="article-image__caption "&gt;&lt;i&gt;Plotting with pydeck_plot (&lt;a href="https://docs.streamlit.io/library/api-reference/charts/st.pydeck_chart"&gt;Source&lt;/a&gt;)&lt;/i&gt;&lt;/figcaption&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;pydeck supports multiple map platforms. We here chose &lt;a href="https://carto.com/bigquery/spatial-extension/" target="_blank"&gt;CARTO&lt;/a&gt;. If you would like to know more about great examples using CARTO and deck.gl, please refer to &lt;a href="https://cloud.google.com/blog/products/maps-platform/how-carto-platform-enables-creation-advanced-data-visualizations-google-maps-platform-and-deckgl"&gt;this blog&lt;/a&gt;.&lt;/p&gt;&lt;h3&gt;Step 4: Plot mobility data&lt;/h3&gt;&lt;p&gt;We are very close to the goal. Now we want to plot locations of vehicles. pydeck supports some ways to plot data, and &lt;a href="https://pydeck.gl/gallery/trips_layer.html" target="_blank"&gt;TripsLayer&lt;/a&gt; would be a good fit to plot mobility data.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/original_images/5_Mobility_Dashboard.gif"
        
          alt="5 Mobility Dashboard.gif"&gt;
        
        &lt;/a&gt;
      
        &lt;figcaption class="article-image__caption "&gt;&lt;i&gt;Demo using Google Maps JavaScript API (&lt;a href="https://developers.google.com/maps/documentation/javascript/examples/deckgl-tripslayer"&gt;Source&lt;/a&gt;)&lt;/i&gt;&lt;/figcaption&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;TripsLayer can visualize location data in time sequential. That means, when selecting a specific timestamp, it plots lines from location data in the time including last n periods. It also draws like an animation when you change the time in sequential order.&lt;/p&gt;&lt;p&gt;In the final form, we also add &lt;a href="https://pydeck.gl/gallery/icon_layer.html" target="_blank"&gt;IconLayer&lt;/a&gt; to identify the latest location. This layer is also useful when you want to plot a static location, and it just works like a “pin” on Google Maps.&lt;/p&gt;&lt;p&gt;Now we need to think about how to use this plot with Firestore. Let’s make Document per vehicle, and only save the latest latitude, longitude, and timestamp of every vehicle. Why not save the history of locations? In that case, we should rather use BigQuery. We just want to see the latest locations that update in realtime.&lt;/p&gt;&lt;p&gt;Firestore is useful and scalable, yet NoSQL. Note that there are some good fits and bad fits in NoSQL.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/6_Mobility_Dashboard.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/6_Mobility_Dashboard.max-1000x1000.jpg"
        
          alt="6 Mobility Dashboard.jpg"&gt;
        
        &lt;/a&gt;
      
        &lt;figcaption class="article-image__caption "&gt;&lt;i&gt;Location data in Firestore Console&lt;/i&gt;&lt;/figcaption&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;h3&gt;Step 5: Run&lt;/h3&gt;&lt;p&gt;Finally, we are here. Now let’s ride in a car and record data… if possible.&lt;/p&gt;&lt;p&gt;For demo purposes, now we ingest dummy data into Firestore. It is easy to write data by using a client library.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-code"&gt;&lt;dl&gt;
    &lt;dt&gt;code_block&lt;/dt&gt;
    &lt;dd&gt;&amp;lt;ListValue: [StructValue([(&amp;#x27;code&amp;#x27;, &amp;quot;db = firestore.Client()\r\ncol_ref = db.collection(&amp;#x27;connected&amp;#x27;)\r\ncol_ref.document(str(vehicle_ind)).set({\r\n  &amp;#x27;lonlat&amp;#x27;: [-74, 40.72],\r\n  &amp;#x27;timestamp&amp;#x27;: 0\r\n})&amp;quot;), (&amp;#x27;language&amp;#x27;, &amp;#x27;&amp;#x27;), (&amp;#x27;caption&amp;#x27;, &amp;lt;wagtail.rich_text.RichText object at 0x7f22ed2dddc0&amp;gt;)])]&amp;gt;&lt;/dd&gt;
&lt;/dl&gt;&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;With writing dummy data, open the web page hosted on Cloud Run. you will see the map is updated upon new data coming.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/original_images/7_Mobility_Dashboard.gif"
        
          alt="7 Mobility Dashboard.gif"&gt;
        
        &lt;/a&gt;
      
        &lt;figcaption class="article-image__caption "&gt;&lt;i&gt;Firestore syncs data on streamlit&lt;/i&gt;&lt;/figcaption&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;Note that we used dummy data and manipulated the timestamps. Consequently, the location data updates much faster than actual time. This can be fixed once you use proper data and update cycle.&lt;/p&gt;&lt;h3&gt;Try it with your data&lt;/h3&gt;&lt;p&gt;In this post, we learned how to build a dashboard updated in real-time with Cloud Run and Firestore. Let us know when you find other use-cases with those nice Google Cloud products.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Find out more automotive solutions &lt;a href="https://cloud.google.com/solutions/automotive"&gt;here&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Haven’t used Google Cloud yet? Try it from &lt;a href="https://cloud.google.com/free"&gt;here&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Check out the source code on &lt;a href="https://github.com/hayatoy/cloudrun-mobility-dashboard" target="_blank"&gt;GitHub&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-related_article_tout"&gt;





&lt;div class="uni-related-article-tout h-c-page"&gt;
  &lt;section class="h-c-grid"&gt;
    &lt;a href="https://cloud.google.com/blog/topics/manufacturing/edge-computing-smart-manufacturing-concept-intel-google-cloud-hannover-messe-2022/"
       data-analytics='{
                       "event": "page interaction",
                       "category": "article lead",
                       "action": "related article - inline",
                       "label": "article: {slug}"
                     }'
       class="uni-related-article-tout__wrapper h-c-grid__col h-c-grid__col--8 h-c-grid__col-m--6 h-c-grid__col-l--6
        h-c-grid__col--offset-2 h-c-grid__col-m--offset-3 h-c-grid__col-l--offset-3 uni-click-tracker"&gt;
      &lt;div class="uni-related-article-tout__inner-wrapper"&gt;
        &lt;p class="uni-related-article-tout__eyebrow h-c-eyebrow"&gt;Related Article&lt;/p&gt;

        &lt;div class="uni-related-article-tout__content-wrapper"&gt;
          &lt;div class="uni-related-article-tout__image-wrapper"&gt;
            &lt;div class="uni-related-article-tout__image" style="background-image: url('https://storage.googleapis.com/gweb-cloudblog-publish/images/Hannover_Messe.max-500x500.jpg')"&gt;&lt;/div&gt;
          &lt;/div&gt;
          &lt;div class="uni-related-article-tout__content"&gt;
            &lt;h4 class="uni-related-article-tout__header h-has-bottom-margin"&gt;Discover our new edge concepts at Hannover Messe that bring smart factories to life&lt;/h4&gt;
            &lt;p class="uni-related-article-tout__body"&gt;Intel and Google Cloud demonstrate edge-to-cloud technology at Hannover Messe.&lt;/p&gt;
            &lt;div class="cta module-cta h-c-copy  uni-related-article-tout__cta muted"&gt;
              &lt;span class="nowrap"&gt;Read Article
                &lt;svg class="icon h-c-icon" role="presentation"&gt;
                  &lt;use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#mi-arrow-forward"&gt;&lt;/use&gt;
                &lt;/svg&gt;
              &lt;/span&gt;
            &lt;/div&gt;
          &lt;/div&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/a&gt;
  &lt;/section&gt;
&lt;/div&gt;

&lt;/div&gt;</description><pubDate>Tue, 21 Jun 2022 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/manufacturing/building-a-mobility-dashboard-with-cloud-run-and-firestore/</guid><category>Google Cloud</category><category>Serverless</category><category>Supply Chain &amp; Logistics</category><category>Manufacturing</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Building a Mobility Dashboard with Cloud Run and Firestore</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/manufacturing/building-a-mobility-dashboard-with-cloud-run-and-firestore/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Hayato Yoshikawa</name><title>Customer Engineer, Automotive</title><department></department><company></company></author></item><item><title>Learn how to tackle supply chain disruptions with SAP IBP and Google Cloud</title><link>https://cloud.google.com/blog/products/sap-google-cloud/mitigate-supply-chain-disruptions-with-sap-ibp-on-google-cloud/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;Responding to multiple, simultaneous disruptive forces has become a daily routine for most demand planners. To effectively forecast demand, they need to be able to predict the unpredictable while accounting for diverse and sometimes competing factors, including:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Labor and materials shortages&lt;/li&gt;&lt;li&gt;Global health crises&lt;/li&gt;&lt;li&gt;Shifting cross-border restrictions&lt;/li&gt;&lt;li&gt;Unprecedented weather impacts&lt;/li&gt;&lt;li&gt;A deepening focus on sustainability &lt;/li&gt;&lt;li&gt;Rising inflation&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Innovators are looking to improve demand forecast accuracy by incorporating advanced capabilities for AI and data analytics, which also speed up demand planning. According to a &lt;a href="https://www.mckinsey.com/business-functions/operations/our-insights/to-improve-your-supply-chain-modernize-your-supply-chain-it" target="_blank"&gt;McKinsey survey&lt;/a&gt; of dozens of supply chain executives, 90% expect to overhaul planning IT within the next five years, and 80% expect to or already use AI and machine learning in planning.&lt;/p&gt;&lt;p&gt;Google Cloud and SAP have partnered to help customers navigate these challenges and supply chain disruptions starting with the upstream demand planning process, focusing on improving forecast accuracy and speed through integrated, engineered solutions. The partnership is enabling demand planners who use SAP IBP for Supply Chain in conjunction with Google Cloud services to access a growing repository of third-party contextual data for their forecasting, as well use an AI-driven methodology that streamlines workflows and improves forecast accuracy. Let’s take a closer look at these capabilities.&lt;/p&gt;&lt;h3&gt;Unify data from SAP software with unique Google data signals&lt;/h3&gt;&lt;p&gt;When it comes to demand forecasting and planning, the more high-quality and relevant contextual data you use, the better, because it helps you understand the influencing factors of your product sales to sense trends and react to disruptions or capitalize on market opportunities more timely and accurately.&lt;/p&gt;&lt;p&gt;The expanded Google Cloud and SAP partnership helps customers who use SAP® Integrated Business Planning for Supply Chain (SAP IBP for Supply Chain) bring public and commercial data sets that Google Cloud offers into their own instances of SAP IBP  and include them in their demand planning models in SAP IBP. So, in addition to sales history, promotions, stakeholder inputs and customer data that are typically in SAP IBP, a demand planner can incorporate their advertising performance, online search, consumer trends, community health data, and many more data signals from Google Cloud when working through demand scenarios.&lt;/p&gt;&lt;p&gt;More data enables more robust and accurate planning, so Google continues to build an ecosystem of data providers and grow the number of available data sets on Google Cloud. Some current providers include the U.S. Census Bureau, the National Oceanic and Atmospheric Administration, and Google Earth, and partnerships are underway with &lt;a href="https://www.cruxinformatics.com/" target="_blank"&gt;Crux&lt;/a&gt;, &lt;a href="https://climateengine.com/" target="_blank"&gt;Climate Engine&lt;/a&gt;, &lt;a href="https://enterprise.craft.co/" target="_blank"&gt;Craft&lt;/a&gt;, and &lt;a href="https://investor.dnb.com/news/news-details/2022/Dun--Bradstreet-Signs-Strategic-Agreement-With-Google-Cloud-to-Drive-Cloud-based-Innovation/default.aspx" target="_blank"&gt;Dun &amp;amp; Bradstreet&lt;/a&gt; to help companies identify and mitigate risk and build resilient supply chains.&lt;/p&gt;&lt;p&gt;Augmenting demand planning with additional external causal factor data is a starting point to drive more accurate forecasting. For example, knowing what regional events may be happening, or the weather patterns that may impact sales of your products, allows you to react faster to these changes by making sure adequate supply is being provided. The result is a more accurate overall plan that reduces resource waste and out-of-stock events. Planners can respond with more accurate and granular daily predictions about sales, pricing, sourcing, production, inventory, logistics, marketing, advertising, and more based on the expanded data.&lt;/p&gt;&lt;h3&gt;Get more accurate forecasts with Google AI inside &lt;/h3&gt;&lt;p&gt;Extending the already expansive algorithm selection available in SAP IBP, &lt;a href="https://blogs.sap.com/2022/05/04/sap-integrated-business-planning-for-supply-chain-sap-ibp-2205-available-now/#:~:text=Today%2C%20May%204th%2C%202022%2C,been%20generally%20released%20as%20planned." target="_blank"&gt;the release of version 2205&lt;/a&gt; allows SAP IBP customers to access Google Cloud’s supply chain forecasting engine, which is built on &lt;a href="https://cloud.google.com/vertex-ai"&gt;Vertex AI&lt;/a&gt; — Google Cloud's AI-as-a-platform offering — from within SAP IBP as part of their forecasting process. &lt;/p&gt;&lt;p&gt;The benefit of using an AI-driven engine for demand forecasting is that it meaningfully improves forecast accuracy. Most demand forecasting today is done through a manually set, rules-based model versus an AI-driven model that is smarter and gets better at predicting demand as it works. &lt;/p&gt;&lt;p&gt;Take the fastest path from data to value with streamlined workflows&lt;/p&gt;&lt;p&gt;Vertex AI can include relevant contextual data sets for demand planning, and the results can be shown in SAP IBP for planners to incorporate when building their workflows.&lt;/p&gt;&lt;p&gt;In addition to more accurate forecasts, planners can work faster and more efficiently as they build potential scenarios, meaning they can do more simulations than they do now so that a wider range of disruptions can be modeled. Customers of SAP IBP don’t have to do any of the heavy lifting. They just have to share their data from SAP IBP with Google, then access the process workflow capabilities to set up automated workflows that use the combined data. Google makes the data available so that planners can use it as they’re setting up their workflows in Vertex AI. &lt;/p&gt;&lt;p&gt;Users of the Google &lt;a href="https://cloud.google.com/solutions/supply-chain-twin"&gt;Supply Chain twin &lt;/a&gt;and SAP IBP can combine the rich planning data from IBP with additional SAP data and other Google data sources to provide better supply chain visibility. The  Google Supply Chain twin is a real-time digital representation of your supply chain based on sales history, open customer orders, past and future promotions, pricing and competitor insights, consumer history signals, external data signals and Google data.&lt;/p&gt;&lt;h3&gt;Leverage Google data signals with SAP IBP for more accurate forecasts&lt;/h3&gt;&lt;p&gt;It’s not difficult to access these new capabilities, and the benefits are more accurate near-term forecasts and more return on your investments in SAP IBP and Google Cloud. If you happen to be at the &lt;a href="https://www.gartner.com/en/conferences/na/supply-chain-us" target="_blank"&gt;Gartner Supply Chain Symposium&lt;/a&gt; from June 6-8th in Orlando, Florida, stop by our booth to say hello. Or, &lt;a href="https://www.sap.com/products/integrated-business-planning.html" target="_blank"&gt;get started now&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-related_article_tout"&gt;





&lt;div class="uni-related-article-tout h-c-page"&gt;
  &lt;section class="h-c-grid"&gt;
    &lt;a href="https://cloud.google.com/blog/products/sap-google-cloud/how-google-cloud-and-sap-solve-big-problems-for-big-companies/"
       data-analytics='{
                       "event": "page interaction",
                       "category": "article lead",
                       "action": "related article - inline",
                       "label": "article: {slug}"
                     }'
       class="uni-related-article-tout__wrapper h-c-grid__col h-c-grid__col--8 h-c-grid__col-m--6 h-c-grid__col-l--6
        h-c-grid__col--offset-2 h-c-grid__col-m--offset-3 h-c-grid__col-l--offset-3 uni-click-tracker"&gt;
      &lt;div class="uni-related-article-tout__inner-wrapper"&gt;
        &lt;p class="uni-related-article-tout__eyebrow h-c-eyebrow"&gt;Related Article&lt;/p&gt;

        &lt;div class="uni-related-article-tout__content-wrapper"&gt;
          &lt;div class="uni-related-article-tout__image-wrapper"&gt;
            &lt;div class="uni-related-article-tout__image" style="background-image: url('https://storage.googleapis.com/gweb-cloudblog-publish/images/SAP_tk.max-500x500.jpg')"&gt;&lt;/div&gt;
          &lt;/div&gt;
          &lt;div class="uni-related-article-tout__content"&gt;
            &lt;h4 class="uni-related-article-tout__header h-has-bottom-margin"&gt;How Google Cloud and SAP solve big problems for big companies&lt;/h4&gt;
            &lt;p class="uni-related-article-tout__body"&gt;On the occasion of SAP Sapphire, here’s a rundown of the key Google Cloud and SAP initiatives we’ll be talking to customers about at the ...&lt;/p&gt;
            &lt;div class="cta module-cta h-c-copy  uni-related-article-tout__cta muted"&gt;
              &lt;span class="nowrap"&gt;Read Article
                &lt;svg class="icon h-c-icon" role="presentation"&gt;
                  &lt;use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#mi-arrow-forward"&gt;&lt;/use&gt;
                &lt;/svg&gt;
              &lt;/span&gt;
            &lt;/div&gt;
          &lt;/div&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/a&gt;
  &lt;/section&gt;
&lt;/div&gt;

&lt;/div&gt;</description><pubDate>Mon, 06 Jun 2022 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/products/sap-google-cloud/mitigate-supply-chain-disruptions-with-sap-ibp-on-google-cloud/</guid><category>AI &amp; Machine Learning</category><category>Supply Chain &amp; Logistics</category><category>Transform with Google Cloud</category><category>Google Cloud</category><category>SAP on Google Cloud</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/sap_ibp.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Learn how to tackle supply chain disruptions with SAP IBP and Google Cloud</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/sap_ibp.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/products/sap-google-cloud/mitigate-supply-chain-disruptions-with-sap-ibp-on-google-cloud/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Dinesh Vandayar</name><title>Partner Manager, SAP Strategy and Architecture</title><department></department><company></company></author></item><item><title>No more normal? No problem when you build supply chains with data and AI</title><link>https://cloud.google.com/blog/topics/supply-chain-logistics/supply-chain-logisitics-spotlight-data-ai-overcome-disruptions-predictive-analytics/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;What if, after all the upheavals and innovations of the past two years, we’re not headed for some new normal but instead an era of no more normal?&lt;/p&gt;&lt;p&gt;“There are big, big challenges that need to be solved every single day by supply chain professionals,” Hans Thalbauer, Google Cloud’s managing director for supply chain and logistics, pointed out during our recent &lt;a href="https://cloudonair.withgoogle.com/events/supply-chain-logistics-spotlight/watch?talk=keynote" target="_blank"&gt;Supply Chain &amp;amp; Logistics Spotlight&lt;/a&gt; event. Among the issues Thalbauer ticked off were changes from the pandemic, consumer demand, labor shortages, the climate crisis, geopolitical instability, and energy shortages.&lt;/p&gt;&lt;p&gt;“And the thing is, it’s not just a short term issue, we think it’s a long-term and systemic issue,” Thalbauer said. “There’s a big question out there, which is: How will global trade change? Is it really transforming and translating into something new? Will global trade continue to work as is? I would even argue, we are living in a post-outsourcing world."&lt;/p&gt;&lt;p&gt;He's not alone in asking such questions. Executives and analysts are likewise &lt;a href="https://hbr.org/2022/03/are-the-risks-of-global-supply-chains-starting-to-outweigh-the-rewards" target="_blank"&gt;wondering about&lt;/a&gt; the &lt;a href="https://www.gartner.com/en/supply-chain/research/future-of-supply-chain?utm_source=google&amp;amp;utm_medium=cpc&amp;amp;utm_campaign=RM_NA_2021_ESCL_CPC_LG1_SCALWAYSON&amp;amp;utm_adgroup=124877876842&amp;amp;utm_term=future%20supply%20chain&amp;amp;ad=526256848292&amp;amp;matchtype=p&amp;amp;gclid=Cj0KCQjwmPSSBhCNARIsAH3cYgaGSERy_ZN_35LWC1B2jMRsFDzm5kizAfRz7XI_Un02WnTijP_BVS4aAsOeEALw_wcB" target="_blank"&gt;future of logistics&lt;/a&gt;, as are experts at the White House. The same day as the Supply Chain &amp;amp; Logistics Spotlight, the president’s Council of Economic Advisors released &lt;a href="https://www.whitehouse.gov/wp-content/uploads/2022/04/2022-ERP-Book-wCover-final.pdf" target="_blank"&gt;their annual report&lt;/a&gt; with an entire chapter dedicated to supply chain. In it, they noted that once-obscure, and ideally invisible, supply chains had “entered dinner table conversations.” And for good reason. “Because of outsourcing, offshoring, and insufficient investment in resilience, many supply chains have become complex and fragile,” the economists wrote.&lt;/p&gt;&lt;p&gt;Wherever, and whenever, we finally settle—more global or local, more automated or disintermediated, more agile or fragile—one of the likeliest results is a greater reliance on technology, and especially data, to help handle all the disruptions and interruptions on the horizon. &lt;/p&gt;&lt;p&gt;Leaders in the field, including at The Home Depot, Paack, and Seara Foods, are discovering opportunities in a few key areas: &lt;b&gt;connecting data&lt;/b&gt; from end to end; the &lt;b&gt;power of platforms&lt;/b&gt; to access and share information; and the importance of &lt;b&gt;predictive analytics&lt;/b&gt; to mitigate issues as, or even before, they arise.&lt;/p&gt;&lt;p&gt;“We need to create visibility, flexibility, and innovation,” Thalbauer said. “Too often companies just focus on their orders, forecasts, and inventory, but typically they ignore the rest of the world. We need to bring in the public information, the traffic, weather, climate, and financial risks, connect that with the enterprise data, and we need to actually enable community data to create collaboration between business partners at every tier.”&lt;/p&gt;&lt;h3&gt;End-to-end data&lt;/h3&gt;&lt;p&gt;Companies have always sought visibility from the factory to the warehouse to the store and now the front door, and all the points in between. Both the challenge and necessity of seeing into all these is that as the data has grown, and our capabilities along with it, so has the complexity. It’s at a scale no humans can manage, which makes the importance not only of data but analytics and AI all the more essential.&lt;/p&gt;&lt;p&gt;&lt;a href="https://corporate.homedepot.com/" target="_blank"&gt;Home Depot&lt;/a&gt; has had a front row seat to these growing interdependencies—especially when it comes to serving competing yet complimentary clienteles. &lt;/p&gt;&lt;p&gt;The pandemic presented its share of unexpected opportunities, as the combination of soaring home values, disposable income, and DIYers looking for (stay at) home projects led to runs on everything from lumber to sheds-turned-offices to &lt;a href="https://www.nytimes.com/2022/02/15/upshot/homes-garage-door-shortage.html" target="_blank"&gt;garage doors&lt;/a&gt;. Empty shelves can lead to angry customers. And in this case, it wasn’t just homeowners and renters Home Depot was contending with, explained Chris Smith, vice president of IT Supply Chain at Home Depot, but also an increasingly important base of contractors and even large-scale developers. Each have their own specific, and sometimes competing, needs.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-pull_quote"&gt;&lt;div class="uni-pull-quote h-c-page"&gt;
  &lt;section class="h-c-grid"&gt;
    &lt;div class="uni-pull-quote__wrapper h-c-grid__col h-c-grid__col--8 h-c-grid__col-m--6 h-c-grid__col-l--6
      h-c-grid__col--offset-2 h-c-grid__col-m--offset-3 h-c-grid__col-l--offset-3"&gt;
      &lt;div class="uni-pull-quote__inner-wrapper h-c-copy h-c-copy"&gt;
        &lt;q class="uni-pull-quote__text"&gt;Whatever the future of logistics look like—more global or local, more automated or disintermediated, more agile or fragile—one of the likeliest results is a greater reliance on technology.&lt;/q&gt;

        
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/section&gt;
&lt;/div&gt;

&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;“We really have what we call &lt;a href="https://cloud.google.com/customers/the-home-depot"&gt;an omnichannel algorithm&lt;/a&gt;.” Chris Smith, VP of IT Supply Chain at &lt;a href="https://corporate.homedepot.com/" target="_blank"&gt;The Home Depot&lt;/a&gt;. “It’s really marrying up the customer’s preferences with our understanding of capacity, assortment, inventory availability, taking all that together, and saying: How do we best meet the customer promise and do it with the most efficient use of our supply chain? So where do we fulfill it from, where is the inventory available, and how do we do that in a way that’s most economical for us while still meeting the promise of the customer,” Smith said. &lt;/p&gt;&lt;p&gt;&lt;a href="https://paack.co/" target="_blank"&gt;Paack&lt;/a&gt;, a last-mile delivery start-up serving the UK, Spain, France, Portugal, and Italy, is similarly pushing the envelope on fulfillment. The company focuses on combining a wealth of data—from drivers, customers, sensors, weather, and more—to ensure guaranteed delivery. So far, their success rate is approaching 98% of on-time delivery, with special scheduling tools to ensure customers are available to receive their packages.&lt;/p&gt;&lt;p&gt;Using solutions like the &lt;a href="https://cloud.google.com/blog/products/maps-platform/introducing-last-mile-fleet-solution-maximize-what-your-fleet-can-do-start-finish"&gt;Last Mile Fleet Solution&lt;/a&gt; from Google Maps Platform, Paack can manage drivers and customers in real-time.&lt;/p&gt;&lt;p&gt;“The granularity of information we can collect in terms of which routes are being effectively followed by the driver’s route versus planned routes, the ability for them to change directions, because we might know locally of better ways to go, notifications from the customer as to their availability—these really allows us to build a better experience for everyone,” Olivier Colinet, chief product and technology officer for Paack, said. “We want first-time drivers to be the most productive drivers, and this first step allows us to do so.”&lt;/p&gt;&lt;h3&gt;Power of platforms&lt;/h3&gt;&lt;p&gt;Paack’s success exemplifies the power of building a strong platform for customers and workers, as well as tapping existing platforms, like Google Maps, to bolster your own.&lt;/p&gt;&lt;p&gt;On the other side of the globe, the world’s largest meat supplier is seeking to empower thousands of ranchers and farmers with a platform of their own. &lt;a href="https://www.searainternational.com/" target="_blank"&gt;Seara&lt;/a&gt;, a Brazil-based supplier of pork, chicken and eggs that is part of the globe-spanning &lt;a href="https://jbs.com.br/en/" target="_blank"&gt;JBS conglomerate&lt;/a&gt;, launched its SuperAgroTech platform in July 2021. &lt;br/&gt;&lt;/p&gt;&lt;p&gt;Though in development for years, the program could hardly have come at a more critical time for the global food supply. The food industry was already coping with pandemic-related shortages and shutdowns, and then came the spillover effects from the war in Ukraine.&lt;/p&gt;&lt;p&gt;“In general, the entire supply chain was affected and the operation had to adapt to new working conditions,” Thiago Acconcia, the director of innovation and strategy at Seara, said. “So in the farms, in the field, the same situations are repeated, and the creation of this digital online platform enters as a facilitator when it gives autonomy to the farmer, providing them with the data input and digital communication.” It’s a level of connectivity the farmers never had with Seara before—and vice versa.&lt;/p&gt;&lt;p&gt;The technology has been deployed to more than 9,000 farms &lt;a href="https://www.poultryworld.net/poultry/seara-launches-digital-platform-for-9000-integrated-growers/" target="_blank"&gt;at launch&lt;/a&gt;. Through a range of IoT sensors, monitoring devices, and data inputs from farmers, operators and Seara data, teams can track a host of results. These include yields, animal health, profits, and even environmental and social impacts, which are becoming increasingly important features for consumers.&lt;/p&gt;&lt;p&gt;The eventual goal is to reach 100% digital management of the farm.&lt;/p&gt;&lt;p&gt;“So today, we are able to activate any producer in a few seconds, regardless of the location,” Acconcia said. With SuperAgroTech, the platform “doesn't mind if it's in the very south of the country, if it's in the central part. It's strengthening the relationships with our producers and also promoting a level of personalized attention they’ve never had.”&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/supply_chain_1.max-1000x1000.jpg"
        
          alt="supply chain 1.jpg"&gt;
        
        &lt;/a&gt;
      
        &lt;figcaption class="article-image__caption "&gt;&lt;i&gt;Stacks of containers &lt;/i&gt;&lt;/figcaption&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;h3&gt;Predictive Analytics&lt;/h3&gt;&lt;p&gt;As a company’s digital strategies evolve through integrated data and robust platforms, one of the most exciting opportunities arises around predictive analytics.&lt;/p&gt;&lt;p&gt;Home Depot has looked at ways to quickly adapt its digital stores using consumer data and AI to create better experiences, as well as smoothing out supply chain issues. Home Depot’s Chris Smith pointed to a listing for an out-of-stock appliance or tool, for example, that will quickly offer other locations or items for sale as a convenient alternative.&lt;/p&gt;&lt;p&gt;“We can apply machine learning in many different ways to make better, faster decisions, both in how we support moving inventory through our supply chain or how we understand available capacity to support our customers,” Smith said. “And with automation, from our distribution centers to our forecasting and replenishment systems, we’re going to continue to look at places where we can optimize and automate to make better decisions.”&lt;/p&gt;&lt;p&gt;For Paack, predictions could come in the form of traffic or storms or even the likelihood that a repeat customer will be available or not, without having to prompt them.&lt;/p&gt;&lt;p&gt;And at Seara, the role of data and analytics is not just vital to the business but the very vitality of the world. As climate, supply chains, global conflicts, migration, and other issues continue to constrain the food supply, anticipating issues could be the difference between salvaging a crop or not. &lt;/p&gt;&lt;p&gt;“We started creating advanced analytics by means of AI tools to not only notify real-time problems but also to predict what's going to happen in the near and long future,” Acconcia said. “We are talking about the world's food, and SuperAgroTech has the role to feed the world, and to overcome these biggest challenges.”&lt;/p&gt;&lt;/div&gt;</description><pubDate>Tue, 31 May 2022 17:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/supply-chain-logistics/supply-chain-logisitics-spotlight-data-ai-overcome-disruptions-predictive-analytics/</guid><category>Data Analytics</category><category>Infrastructure Modernization</category><category>Google Cloud</category><category>Transform with Google Cloud</category><category>Supply Chain &amp; Logistics</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/supply_chain.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>No more normal? No problem when you build supply chains with data and AI</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/supply_chain.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/supply-chain-logistics/supply-chain-logisitics-spotlight-data-ai-overcome-disruptions-predictive-analytics/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Matt A.V. Chaban</name><title>Senior Editor, Transform</title><department></department><company></company></author></item><item><title>Fresh updates: Google Cloud 2021 Summits</title><link>https://cloud.google.com/blog/topics/events/news-updates-on-the-google-cloud-summit-digital-event-series-2021/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;There are a lot of great things happening at Google Cloud, and we’re delighted to share new product announcements, customer perspectives, interactive demos, and more through our &lt;a href="https://cloudonair.withgoogle.com/summit_series_21?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=-&amp;amp;utm_content=collections-page&amp;amp;utm_term=-" target="_blank"&gt;Google Cloud Summit series&lt;/a&gt;, a collection of digital events taking place over the coming months.&lt;/p&gt;&lt;p&gt;Join us to learn more about how Google Cloud is transforming businesses in various industries, including Manufacturing &amp;amp; Supply Chain, Retail &amp;amp; Consumer Goods, and Financial Services. We’ll also be highlighting the latest innovations in data, artificial intelligence (AI) and machine learning (ML), security and more. &lt;/p&gt;&lt;p&gt;Content will be available for on-demand viewing immediately following the live broadcast of each event. Bookmark this page to easily find updates as news develops, and don’t forget to register today or watch summits on demand by visiting the &lt;a href="https://cloudonair.withgoogle.com/summit_series_21?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=-&amp;amp;utm_content=collections-page&amp;amp;utm_term=-" target="_blank"&gt;Summit series website&lt;/a&gt;.&lt;br/&gt;&lt;/p&gt;&lt;hr/&gt;&lt;h2&gt;Upcoming events&lt;/h2&gt;&lt;h3&gt;Government &amp;amp; Education Summit | Nov 3-4, 2021&lt;/h3&gt;&lt;p&gt;Mark your calendars – &lt;a href="https://cloudonair.withgoogle.com/events/cloud-govt-edu-summit?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=FY21-Q4-global-G&amp;amp;E1306-onlineevent-er-gov-and-edu-summit-main&amp;amp;utm_content=google-owned-blog-promotion-gov-and-edu-summit&amp;amp;utm_term=-" target="_blank"&gt;registration is open&lt;/a&gt; for Google Cloud’s Government and Education Summit, November 3–4, 2021.&lt;/p&gt;&lt;p&gt;Government and education leaders have seen their vision become reality faster than they ever thought possible. Public sector leaders embraced a spirit of openness and created avenues to digital transformation, accepting bold ideas and uncovering new methods to provide public services, deliver education and achieve groundbreaking research. At Google Cloud, we partnered with public sector leaders to deliver an agile and open architecture, smart analytics to make data more accessible, and productivity tools to support remote work and the hybrid workforce. &lt;/p&gt;&lt;p&gt;The pandemic has served as a catalyst for new ideas and creative solutions to long-standing global issues, including climate change, public health, and resource assistance. We’ve seen all levels of government and education leverage cloud technology to meet these challenges with a fervor and determination not seen since the industrial revolution. We can’t wait to bring those stories to you at the 2021 Google Cloud Government and Education Summit.&lt;/p&gt;&lt;p&gt;The event will open doors to digital transformation with live Q&amp;amp;As, problem-solving workshops and leadership sessions, designed to bring forward the strongest talent, the most inclusive teams, and the boldest ideas. Interactive, digital experiences and sessions that align with your schedule and interests will be available, including dedicated sessions and programming for our global audiences.&lt;/p&gt;&lt;p&gt;&lt;a href="https://cloudonair.withgoogle.com/events/cloud-govt-edu-summit?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=FY21-Q4-global-G&amp;amp;E1306-onlineevent-er-gov-and-edu-summit-main&amp;amp;utm_content=google-owned-blog-promotion-gov-and-edu-summit&amp;amp;utm_term=-" target="_blank"&gt;Register today&lt;/a&gt; for the 2021 Google Cloud Government and Education Summit. Moving into the next period of modernization, we feel equipped with not just the technology, but also the confidence to innovate and the experience to deliver the next wave of critical digital transformation solutions.&lt;br/&gt;&lt;/p&gt;&lt;hr/&gt;&lt;h3&gt;Digital Manufacturer Summit | June 22, 2021&lt;/h3&gt;&lt;p&gt;Together we can transform the future of our industry. At Google Cloud’s Digital Manufacturer Summit customers will hear from Porsche, Renault Group, Doosan Heavy Industries &amp;amp; Construction, GE Appliances and Landis+Gyr who are boosting productivity across their enterprise with digital solutions powered by AI and analytics. &lt;/p&gt;&lt;p&gt;Google Cloud recently launched a report and &lt;a href="https://cloud.google.com/blog/products/ai-machine-learning/research-on-ai-trends-in-manufacturing"&gt;blog&lt;/a&gt; on AI Acceleration, which reveals that the COVID-19 pandemic may have spurred a significant increase in the use of AI and other digital enablers among manufacturers. We will continue this thought leadership in the summit.&lt;/p&gt;&lt;p&gt;Hear from forward-thinking business executives as they discuss the latest trends and the future of the industry. Participate in focused sessions and gain game-changing insights that dive deep into customer experience, product development, manufacturing operations, and supply chain operations. &lt;/p&gt;&lt;p&gt;Register now: &lt;a href="https://cloudonair.withgoogle.com/events/summit-manufacturing?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=FY21-Q2-northam-GEM908-onlineevent-er-gc-manufacturing-n-supply-chain-summit&amp;amp;utm_content=google-cloud-blog-manufacturer&amp;amp;utm_term=-" target="_blank"&gt;Global&lt;/a&gt; &amp;amp; &lt;a href="https://cloudonair.withgoogle.com/events/summit-emea-manufacturing?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=FY21-Q2-emea-E1063-onlineevent-er-gc-manufacturing-n-supply-chain-summit&amp;amp;utm_content=digital_manufacturer_emea_lp&amp;amp;utm_term=-" target="_blank"&gt;EMEA&lt;/a&gt;&lt;/p&gt;&lt;hr/&gt;&lt;h3&gt;APAC Technical Series | June 22 - 24, 2021&lt;/h3&gt;&lt;p&gt;IT and business professionals located in the Asia Pacific region can continue their cloud technology learnings by taking part in a three-day deep-dive into the latest data and machine learning technologies. This event will help you harness data and unlock innovation to build, iterate, and scale faster and with confidence. &lt;/p&gt;&lt;p&gt;Register now: &lt;a href="https://cloudonair.withgoogle.com/events/apac-cts-data-ml-summit?utm_source=cloud_sfdc&amp;amp;utm_medium=email&amp;amp;utm_campaign=-&amp;amp;utm_content=sales&amp;amp;utm_term=-" target="_blank"&gt;APAC&lt;/a&gt;&lt;/p&gt;&lt;hr/&gt;&lt;h3&gt;Security Summit | July 20, 2021&lt;/h3&gt;&lt;p&gt;At Google Cloud Security Summit, security professionals can learn why many of the world’s leading companies trust Google Cloud infrastructure, and how organizations can leverage Google’s cloud-native technology to keep their organization secure in the cloud, on-premises, or in hybrid environments. &lt;/p&gt;&lt;p&gt;During the opening keynote, engaging sessions, and live Q&amp;amp;A, customers will learn about how our Trusted Cloud can help them build a zero-trust architecture, implement shared-fate risk management, and achieve digital sovereignty. Join us to hear from some of the most passionate voices exploring how to make every day safer with Google. Together, we’ll reimagine how security should work in the cloud.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Register now: &lt;a href="https://cloudonair.withgoogle.com/events/summit-security" target="_blank"&gt;NORTHAM&lt;/a&gt; &amp;amp; &lt;a href="https://cloudonair.withgoogle.com/events/summit-emea-security" target="_blank"&gt;EMEA&lt;/a&gt;&lt;/p&gt;&lt;hr/&gt;&lt;h3&gt;Retail &amp;amp; Consumer Goods Summit | July 27, 2021&lt;/h3&gt;&lt;p&gt;Are you ready for the continued growth in digital shopping? Do you understand how leveraging AI and ML can improve your business? Join your peers and thought leaders for engaging keynotes and breakout sessions designed for the Retail and CPG industries at our upcoming Retail and Consumer Goods Summit on July 27th.&lt;/p&gt;&lt;p&gt;You’ll learn how some of the world’s leading retail and consumer goods companies like Ulta, Crate &amp;amp; Barrel, Albertsons, IKEA, and L’Oreal are using Google Cloud AI, machine learning, and data analytics technology to accelerate their digital transformation. In addition, we’ll share announcements on new products and solutions to help retailers and brands succeed in today’s landscape. &lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Register now: &lt;a href="https://cloudonair.withgoogle.com/events/summit-retail#" target="_blank"&gt;Global&lt;/a&gt;&lt;/p&gt;&lt;hr/&gt;&lt;h2&gt;Now available on demand&lt;/h2&gt;&lt;h3&gt;Data Cloud Summit | May 26, 2021&lt;/h3&gt;&lt;p&gt;In case you missed it, check out content from the Google Data Cloud Summit, which featured the launch of &lt;a href="https://cloud.google.com/press-releases/2021/0526/data-cloud-summit"&gt;three new solutions&lt;/a&gt; - Dataplex, Analytics Hub and Datastream - to provide organizations with a unified data platform. The summit also featured a number of engaging discussions with customers including Zebra Technologies, Deutsche Bank, Paypal, Wayfair and more.&lt;/p&gt;&lt;p&gt;Watch on-demand now: &lt;a href="https://cloudonair.withgoogle.com/events/summit-data-cloud?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=FY21-Q2-NORTHAM-summit-onlineevent-er-gc-data-cloud-summit&amp;amp;utm_content=data_cloud_lp&amp;amp;utm_term=-" target="_blank"&gt;Global&lt;/a&gt;&lt;/p&gt;&lt;hr/&gt;&lt;h3&gt;Financial Services Summit | May 27, 2021&lt;/h3&gt;&lt;p&gt;We launched &lt;a href="https://cloud.google.com/press-releases/2021/0527/google-cloud-launches-datashare-for-financial-services"&gt;Datashare&lt;/a&gt; at the Financial Services Summit; this solution is designed to help capital markets firms share market data more securely and efficiently. Attendees can also view sessions on a range of topics including sustainability, the future of home buying, embedded finance, dynamic pricing for insurance, managing transaction surges in payments, the market data revolution, and more. Customers such as Deutsche Bank, BNY Mellon, HSBC, Credit Suisse, PayPal, Global Payments, Roostify, AXA, Santander, and Mr Cooper shared their insights as well. &lt;/p&gt;&lt;p&gt;Watch on-demand now: &lt;a href="https://cloudonair.withgoogle.com/events/summit-finserv?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=FY21-Q2-NORTHAM-summit-onlineevent-er-gc-finserve&amp;amp;utm_content=finserv_lp&amp;amp;utm_term=-" target="_blank"&gt;NORTHAM&lt;/a&gt; &amp;amp; &lt;a href="https://cloudonair.withgoogle.com/events/summit-emea-finserv?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=FY21-Q2-emea-summit-onlineevent-er-gc-finserve-emea&amp;amp;utm_content=finserv_emea_lp&amp;amp;utm_term=-" target="_blank"&gt;EMEA&lt;/a&gt;&lt;/p&gt;&lt;p&gt;We have also recently launched several new blog posts tied to the Financial Services Summit: &lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;a href="https://cloud.google.com/blog/topics/financial-services/announcing-the-general-availability-of-datashare"&gt;Introducing Datashare solution for financial services for licensed market data discovery, access and analytics on Google Cloud&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="https://cloud.google.com/blog/topics/financial-services/helping-the-financial-services-industry-transform"&gt;Google Cloud for financial services: driving your transformation cloud journey&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="https://cloud.google.com/blog/topics/financial-services/insurers-use-noaa-datasets-for-predictive-analytics"&gt;How insurers can use severe storm data for dynamic pricing&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="https://cloud.google.com/blog/topics/financial-services/embedded-finance-and-apis-can-help-modernize-banks"&gt;Why embedding financial services into digital experiences can generate new revenue&lt;/a&gt; &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;&lt;hr/&gt;&lt;p&gt;&lt;/p&gt;&lt;h3&gt;Applied ML Summit | June 10, 2021&lt;br/&gt;&lt;/h3&gt;&lt;p&gt;The Google Applied ML Summit featured a range of sessions to help data scientists and ML engineers explore the power of Google’s Vertex AI platform, and learn how to accelerate experimentation and production of ML models.  Besides prominent Google AI/ML experts and speakers, the event also featured over 16 ML leaders from customers and partners like Spotify, Uber, Mr. Cooper, Sabre, PyTorch, L’Oreal, Vodafone and WPP/Essence.&lt;/p&gt;&lt;p&gt;Watch on-demand now: &lt;a href="https://cloudonair.withgoogle.com/events/summit-ml-practitioners?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=FY21-Q2-northam-GEM912-onlineevent-er-gc-ml-practitioners-summit&amp;amp;utm_content=google-cloud-blog-appliedml&amp;amp;utm_term=-" target="_blank"&gt;Global&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-related_article_tout"&gt;





&lt;div class="uni-related-article-tout h-c-page"&gt;
  &lt;section class="h-c-grid"&gt;
    &lt;a href="https://cloud.google.com/blog/topics/google-cloud-next/announcing-google-cloud-next21/"
       data-analytics='{
                       "event": "page interaction",
                       "category": "article lead",
                       "action": "related article - inline",
                       "label": "article: {slug}"
                     }'
       class="uni-related-article-tout__wrapper h-c-grid__col h-c-grid__col--8 h-c-grid__col-m--6 h-c-grid__col-l--6
        h-c-grid__col--offset-2 h-c-grid__col-m--offset-3 h-c-grid__col-l--offset-3 uni-click-tracker"&gt;
      &lt;div class="uni-related-article-tout__inner-wrapper"&gt;
        &lt;p class="uni-related-article-tout__eyebrow h-c-eyebrow"&gt;Related Article&lt;/p&gt;

        &lt;div class="uni-related-article-tout__content-wrapper"&gt;
          &lt;div class="uni-related-article-tout__image-wrapper"&gt;
            &lt;div class="uni-related-article-tout__image" style="background-image: url('https://storage.googleapis.com/gweb-cloudblog-publish/images/Blog_Banner-_2880x1200-a-100_NhXRy9Y.max-500x500.jpg')"&gt;&lt;/div&gt;
          &lt;/div&gt;
          &lt;div class="uni-related-article-tout__content"&gt;
            &lt;h4 class="uni-related-article-tout__header h-has-bottom-margin"&gt;Save the date for Google Cloud Next ‘21: October 12-14, 2021&lt;/h4&gt;
            &lt;p class="uni-related-article-tout__body"&gt;Join us and learn how the most successful companies have transformed their businesses with Google Cloud. Sign-up at g.co/cloudnext for up...&lt;/p&gt;
            &lt;div class="cta module-cta h-c-copy  uni-related-article-tout__cta muted"&gt;
              &lt;span class="nowrap"&gt;Read Article
                &lt;svg class="icon h-c-icon" role="presentation"&gt;
                  &lt;use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#mi-arrow-forward"&gt;&lt;/use&gt;
                &lt;/svg&gt;
              &lt;/span&gt;
            &lt;/div&gt;
          &lt;/div&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/a&gt;
  &lt;/section&gt;
&lt;/div&gt;

&lt;/div&gt;</description><pubDate>Fri, 29 Oct 2021 18:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/events/news-updates-on-the-google-cloud-summit-digital-event-series-2021/</guid><category>Google Cloud</category><category>Inside Google Cloud</category><category>Data Analytics</category><category>Financial Services</category><category>Manufacturing</category><category>Supply Chain &amp; Logistics</category><category>AI &amp; Machine Learning</category><category>Retail</category><category>Consumer Packaged Goods</category><category>Events</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/google_cloud_summit_series.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Fresh updates: Google Cloud 2021 Summits</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/google_cloud_summit_series.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/events/news-updates-on-the-google-cloud-summit-digital-event-series-2021/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>The Google Cloud Events team </name><title></title><department></department><company></company></author></item><item><title>Solving for more sustainable and resilient value chains</title><link>https://cloud.google.com/blog/topics/sustainability/how-google-cloud-is-helping-build-more-sustainable-supply-chains/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;The past year highlighted the fragility of global supply chains and logistics networks and the need to adapt to rapidly changing business models and customer preferences. The importance of flexible, resilient and sustainable customer value chains is critical as organizations recalibrate to a post-pandemic world. &lt;/p&gt;&lt;p&gt;Global supply chains are also subject to environmental risks. In 2020, over 8,000 suppliers disclosing through &lt;a href="https://www.cdp.net/en" target="_blank"&gt;CDP&lt;/a&gt;, a global disclosure system for environmental impacts, reported that US$1.26 trillion of revenue is likely to be at risk over the next five years due to climate change, deforestation, and water insecurity&lt;sup&gt;1&lt;/sup&gt;. Organizations are also likely to be challenged with reputational and regulatory risks across their value chain. For instance, emissions from supply chains are on average 11.4x higher than emissions from a company’s direct operations&lt;sup&gt;2&lt;/sup&gt;. In many sectors, supply chains are responsible for over 80% of total greenhouse gas emissions. &lt;/p&gt;&lt;p&gt;There is a strong argument for accelerating efforts to tackle these emissions, as suppliers reported combined savings of US$33.7 billion in 2020 by actively cutting emissions.&lt;sup&gt;3&lt;/sup&gt; &lt;/p&gt;&lt;h3&gt;Challenges in creating a sustainable customer value chain &lt;/h3&gt;&lt;p&gt;Organizations struggle with achieving sustainable value chain goals largely due to three factors: &lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Limited visibility across the end-to-end value chain to drive transparency and accelerate adoption of sustainable best practices&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Lack of flexibility to adapt to new business models as highlighted during the pandemic and the rapid shift to e-commerce &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Limited insight into an organization’s operational decisions and their impact in reducing carbon emissions, preventing data-driven decision making.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;How Google Cloud can help&lt;/h3&gt;&lt;p&gt;Our mission at Google Cloud is to accelerate your organization’s ability to digitally transform your business. That includes supply chains. With better insights from data you can automate processes more intelligently. With smarter ML models you can optimize systems and routing. With an open platform you can integrate partner solutions. And you can connect your workforce in real time to collaborate up and down the value chain. &lt;/p&gt;&lt;p&gt;Leveraging these technologies, we’re partnering with our customers to tackle the unique sustainability challenges they face to help transform their supply chains.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/the_challenges.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/the_challenges.max-1000x1000.jpg"
        
          alt="the challenges.jpg"&gt;
        
        &lt;/a&gt;
      
        &lt;figcaption class="article-image__caption "&gt;&lt;i&gt;Click to enlarge&lt;/i&gt;&lt;/figcaption&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;&lt;b&gt;Greater visibility into supply chain impacts with &lt;/b&gt;&lt;a href="https://www.eni.com/en-IT/home.html" target="_blank"&gt;&lt;b&gt;ENI&lt;/b&gt;&lt;/a&gt;: By creating an &lt;a href="https://openes.io/portal/homepage" target="_blank"&gt;open digital platform&lt;/a&gt; for companies to measure their own sustainability performance, Google Cloud and ENI, together with Boston Consulting Group, are helping companies gain an awareness of their strengths and areas for improvement across industrial supply chains. &lt;b&gt;&lt;br/&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Enabling sustainable sourcing at &lt;/b&gt;&lt;a href="https://cloud.google.com/press-releases/2020/0922/unilever-to-reimagine-future-of-sustainable-sourcing"&gt;&lt;b&gt;Unilever&lt;/b&gt;&lt;/a&gt;: By combining the power of cloud computing with satellite imagery and AI, Google Cloud and Unilever are building a more holistic view of the forests, water cycles, and biodiversity that intersect Unilever’s supply chain—raising sustainable sourcing standards for suppliers and bringing Unilever closer to its goal of ending deforestation and regenerating nature.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reducing emissions from last-mile logistics and fleet operations at &lt;/b&gt;&lt;a href="https://www.youtube.com/watch?v=PZ1Lqxfs1yw&amp;amp;t=2458s" target="_blank"&gt;&lt;b&gt;UPS&lt;/b&gt;&lt;/a&gt;: UPS leverages Google Cloud smart analytics platform to reduce fuel consumption by 10 million gallons a year, reducing carbon emissions and saving up to $400 million a year.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reducing manufacturing waste and improving production quality at LG and GlobalFoundries:&lt;/b&gt; &lt;a href="https://cloud.google.com/blog/products/ai-machine-learning/ai-and-machine-learning-improve-manufacturing-visual-inspection-process"&gt;LG&lt;/a&gt; improved defect detection accuracy by 6% and reduced the time to design and train ML models from days to hours using Google Cloud Vision AI. The Vision AI solution was able to reduce waste and increase customer satisfaction and quality at GlobalFoundries.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Reducing packaging at Lush&lt;/b&gt;: &lt;a href="https://www.youtube.com/watch?v=pn4_ilZkk-s&amp;amp;feature=youtu.be" target="_blank"&gt;Lush&lt;/a&gt; was able to nearly eliminate plastic packaging by using Google AI to develop an app that leverages AI and augmented reality to recognize products and overlay product information.&lt;/p&gt;&lt;p&gt;In solutions engineering our goal is to take these unique experiences and scale them to help organizations reduce emissions and meet their sustainability goals. To facilitate collaboration along this journey we are creating a program to work with our customers and assess where cloud technology can impact their value chains in an environmentally positive way.  &lt;/p&gt;&lt;h3&gt;Steps for creating more sustainable value chains &lt;/h3&gt;&lt;p&gt;We’ve developed innovative models to tackle challenges from reducing IT costs to data center transformations to IT infrastructure emissions. We’re excited to apply it to our customers’ sustainability priorities and pain points across the supply chain. We will partner closely to build proof of concepts (PoCs) to tackle new opportunities that help customers achieve their sustainability goals.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;We’ll start with benchmarks. We measure where customers are relative to industry benchmarks, to better help them achieve their target goals.&lt;p&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;Next, we’ll assess sustainability and supply chain processes against a maturity curve. This creates a gap analysis to identify areas for improvement.&lt;br/&gt;&lt;/li&gt;&lt;li&gt;We’ll prioritize the areas of focus using factors such as cost reduction, productivity improvement, revenue impact, and environmental and financial risks.&lt;br/&gt;&lt;/li&gt;&lt;li&gt;We’ll map the &lt;a href="https://cloud.google.com/solutions/supply-chain-logistics"&gt;Google Cloud solutions&lt;/a&gt; against your areas of focus identifying where cloud technology can potentially reduce environmental impact and operational costs, and where it can enhance security, compliance, and flexibility. &lt;br/&gt;&lt;/li&gt;&lt;li&gt;With a short list of opportunities, we’ll partner closely with your teams to build PoCs and test the impact of our solutions and ability to scale across your end-to-end value chain.&lt;br/&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/Steps_for_creating_more_s.0771025314920491.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/Steps_for_creating_more_sustainable_value_.max-1000x1000.jpg"
        
          alt="Steps for creating more sustainable value chains.jpg"&gt;
        
        &lt;/a&gt;
      
        &lt;figcaption class="article-image__caption "&gt;&lt;i&gt;Click to enlarge&lt;/i&gt;&lt;/figcaption&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;This is just the beginning of our journey to help address the most challenging problems across the supply chain and partner with our customers to help them achieve sustainability goals. You can learn more about our &lt;a href="https://cloud.google.com/sustainability"&gt;sustainability efforts&lt;/a&gt; and how we’re integrating circular economy principles into our own supply chain to make it more sustainable. &lt;a href="https://cloud.google.com/contact"&gt;Contact us&lt;/a&gt; to tell us what you’re solving for and get started. A Google Cloud expert will help you find the best engagement for you. We look forward to helping you achieve your sustainable value chain goals.&lt;/p&gt;&lt;hr/&gt;&lt;p&gt;&lt;sup&gt;&lt;i&gt;1. &lt;a href="https://6fefcbb86e61af1b2fc4-c70d8ead6ced550b4d987d7c03fcdd1d.ssl.cf3.rackcdn.com/cms/reports/documents/000/005/554/original/CDP_SC_Report_2020.pdf?1614160765" target="_blank"&gt;CDP Global Supply Chain Report 2020&lt;/a&gt;&lt;br/&gt;2. &lt;a href="https://6fefcbb86e61af1b2fc4-c70d8ead6ced550b4d987d7c03fcdd1d.ssl.cf3.rackcdn.com/cms/reports/documents/000/005/554/original/CDP_SC_Report_2020.pdf?1614160765" target="_blank"&gt;CDP Global Supply Chain Report 2020&lt;/a&gt;&lt;br/&gt;3. &lt;a href="https://6fefcbb86e61af1b2fc4-c70d8ead6ced550b4d987d7c03fcdd1d.ssl.cf3.rackcdn.com/cms/reports/documents/000/005/554/original/CDP_SC_Report_2020.pdf?1614160765" target="_blank"&gt;CDP Global Supply Chain Report 2020&lt;/a&gt;&lt;/i&gt;&lt;/sup&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-related_article_tout"&gt;





&lt;div class="uni-related-article-tout h-c-page"&gt;
  &lt;section class="h-c-grid"&gt;
    &lt;a href="https://cloud.google.com/blog/topics/manufacturing/cloud-can-transform-supply-chain-and-logistics-tools-and-processes/"
       data-analytics='{
                       "event": "page interaction",
                       "category": "article lead",
                       "action": "related article - inline",
                       "label": "article: {slug}"
                     }'
       class="uni-related-article-tout__wrapper h-c-grid__col h-c-grid__col--8 h-c-grid__col-m--6 h-c-grid__col-l--6
        h-c-grid__col--offset-2 h-c-grid__col-m--offset-3 h-c-grid__col-l--offset-3 uni-click-tracker"&gt;
      &lt;div class="uni-related-article-tout__inner-wrapper"&gt;
        &lt;p class="uni-related-article-tout__eyebrow h-c-eyebrow"&gt;Related Article&lt;/p&gt;

        &lt;div class="uni-related-article-tout__content-wrapper"&gt;
          &lt;div class="uni-related-article-tout__image-wrapper"&gt;
            &lt;div class="uni-related-article-tout__image" style="background-image: url('')"&gt;&lt;/div&gt;
          &lt;/div&gt;
          &lt;div class="uni-related-article-tout__content"&gt;
            &lt;h4 class="uni-related-article-tout__header h-has-bottom-margin"&gt;Run a transformed supply chain—see how at Google’s Digital Supply Chain summit&lt;/h4&gt;
            &lt;p class="uni-related-article-tout__body"&gt;Check out how to build modern digital supply chain and logistics platforms and check out Google’s Supply Chain Summit.&lt;/p&gt;
            &lt;div class="cta module-cta h-c-copy  uni-related-article-tout__cta muted"&gt;
              &lt;span class="nowrap"&gt;Read Article
                &lt;svg class="icon h-c-icon" role="presentation"&gt;
                  &lt;use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#mi-arrow-forward"&gt;&lt;/use&gt;
                &lt;/svg&gt;
              &lt;/span&gt;
            &lt;/div&gt;
          &lt;/div&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/a&gt;
  &lt;/section&gt;
&lt;/div&gt;

&lt;/div&gt;</description><pubDate>Wed, 21 Apr 2021 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/sustainability/how-google-cloud-is-helping-build-more-sustainable-supply-chains/</guid><category>Infrastructure</category><category>Supply Chain &amp; Logistics</category><category>Google Cloud</category><category>Sustainability</category><media:content height="540" url="https://storage.googleapis.com/gweb-cloudblog-publish/images/gcp_sustainable_supply_chain_1.max-600x600.jpg" width="540"></media:content><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Solving for more sustainable and resilient value chains</title><description></description><image>https://storage.googleapis.com/gweb-cloudblog-publish/images/gcp_sustainable_supply_chain_1.max-600x600.jpg</image><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/sustainability/how-google-cloud-is-helping-build-more-sustainable-supply-chains/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Hamidou Dia</name><title>Vice President, Applied AI Engineering</title><department></department><company></company></author></item><item><title>Run a transformed supply chain—see how at Google’s Digital Supply Chain summit</title><link>https://cloud.google.com/blog/topics/manufacturing/cloud-can-transform-supply-chain-and-logistics-tools-and-processes/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;At the start of 2020, who knew that our supply chains would be so disrupted that we'd have to worry about having enough toilet paper or paper towels?  Yet, the early days of the COVID-19 pandemic resulted in many disruptions and unanticipated events. On a practical level, the sudden changes in consumer behavior placed supply chains in the spotlight, and revealed to many—including consumers everywhere—the fragility of our logistics networks. &lt;/p&gt;&lt;p&gt;Of course, this disruption wasn’t just isolated to household items. Entire modes of purchasing shifted dramatically (and perhaps permanently). At the end of 2019, 16% of global sales was e-commerce. Within four months, that number grew to 33%. Supply chain companies were forced to adapt almost overnight to massive shifts to e-commerce and rapidly changing delivery models.&lt;/p&gt;&lt;p&gt;The follow-on effects of this shift have been equally dramatic, including leading to a shortage of shipping containers. As COVID-19 lockdowns resulted in fewer people in the ports, this caused shipping traffic jams, which in turn led to a sharp rise in container shipping costs. And let’s not forget perhaps the most visible manifestation of why supply chains are the backbone of the global economy: The massive worldwide effort to deliver and distribute COVID-19 vaccines. &lt;/p&gt;&lt;h3&gt;The limitation of today’s supply chains&lt;/h3&gt;&lt;p&gt;It is not that supply chain professionals haven’t made investments to better predict demand, deliver or fulfill orders, and manage inventory. In fact, according to IDC Research, investments in supply chain management and service delivery are projected to grow by 34% in just the next 3 years—from $48 billion today to $64 billion by the end of 2023. However, there are still significant limitations to overcome, particularly in three key areas:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;b&gt;Visibility&lt;/b&gt;: Companies don’t have enough information about their inventories to react to the uncertainties of profound change.  &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;b&gt;Flexibility&lt;/b&gt;: Companies running standard processes are slow to adapt to the changes. &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;b&gt;Intelligence&lt;/b&gt;: Without streamlined, cleaned, and actionable data, companies can’t accurately predict and meet demand.  &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Supply chains, then, are due for innovation. Unlike the manufacturing sector overall, which has adopted everything from AI and robotics to smart factories, supply chains have made only relatively small adjustments to their standard processes. &lt;/p&gt;&lt;h3&gt;Join the supply chain transformation at our summit&lt;/h3&gt;&lt;p&gt;To help companies discuss and address these pressing issues, we’re hosting a &lt;a href="https://cloudonair.withgoogle.com/events/digital-supply-chain-event?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=industries-content-from-blogs-2h-2021&amp;amp;utm_content=supply_chain_summit" target="_blank"&gt;Digital Supply Chain Summit&lt;/a&gt; on March 30, 2021, to bring together more than 300 senior supply chain and logistics leaders from across the world. At this event, attendees will learn how they can create a digital supply chain platform that enables them to deliver exceptional customer experience; how to build resilient and sustainable supply chains; and how to run supply chains autonomously through the use of AI, ML, and other advanced technologies. &lt;/p&gt;&lt;p&gt;Among the featured industry speakers are Kuehne+Nagel and J.B. Hunt, both among the  world's leading transportation and logistics companies, who are digitizing their supply chains to enable every process, person, and team. They will discuss their digital transformation journeys, particularly how they’re leveraging the cloud, artificial intelligence, and data analytics to unlock new levels of efficiency and business performance. &lt;/p&gt;&lt;p&gt;Also at the event, you’ll hear from the leaders of Google's own supply chain and data center operations, who will discuss how the cloud-based solutions they’ve deployed have driven real impact and business results. Finally, industry practice leaders from Accenture and Deloitte will also share how you can architect a customer-centric digital supply chain and a connected digital thread across your extended value chain.&lt;/p&gt;&lt;h3&gt;Why be average when you can be unique?&lt;/h3&gt;&lt;p&gt;As a company running a supply chain, you don’t need to stick with the status quo. Your transformation can be achieved by leveraging data to power individualized processes, which will set your company apart from the pack. We’re helping companies build a cloud-based &lt;a href="https://cloud.google.com/solutions/supply-chain-logistics"&gt;digital supply chain platform&lt;/a&gt; based on four capabilities: &lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;First, using a digital supply chain twin, which is a digital representation of the physical supply chain as its core. &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Second, using intelligence to anticipate and predict potential outcomes. &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Third, allowing end users to access information from whatever device they are using, anywhere. &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;And fourth, embracing partnering when it comes to applications. Supply chain companies succeed when they complementing their existing systems with new technologies, making it easier to innovate, adapt, and overcome limitations. &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Take the first step to transformation&lt;/h3&gt;&lt;p&gt;We welcome you to register for the Google Cloud &lt;a href="https://cloudonair.withgoogle.com/events/digital-supply-chain-event?utm_source=google&amp;amp;utm_medium=blog&amp;amp;utm_campaign=industries-content-from-blogs-2h-2021&amp;amp;utm_content=supply_chain_summit" target="_blank"&gt;Digital Supply Chain Summit&lt;/a&gt; to get a comprehensive look at how companies are digitally transforming their supply chain and logistics operations. This online event is taking place on March 30. We hope it will help you identify steps you can take today to advance your own digital strategies with cloud-based solutions, data analytics, and AI.&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-related_article_tout"&gt;





&lt;div class="uni-related-article-tout h-c-page"&gt;
  &lt;section class="h-c-grid"&gt;
    &lt;a href="https://cloud.google.com/blog/topics/google-cloud-next/announcing-google-cloud-next21/"
       data-analytics='{
                       "event": "page interaction",
                       "category": "article lead",
                       "action": "related article - inline",
                       "label": "article: {slug}"
                     }'
       class="uni-related-article-tout__wrapper h-c-grid__col h-c-grid__col--8 h-c-grid__col-m--6 h-c-grid__col-l--6
        h-c-grid__col--offset-2 h-c-grid__col-m--offset-3 h-c-grid__col-l--offset-3 uni-click-tracker"&gt;
      &lt;div class="uni-related-article-tout__inner-wrapper"&gt;
        &lt;p class="uni-related-article-tout__eyebrow h-c-eyebrow"&gt;Related Article&lt;/p&gt;

        &lt;div class="uni-related-article-tout__content-wrapper"&gt;
          &lt;div class="uni-related-article-tout__image-wrapper"&gt;
            &lt;div class="uni-related-article-tout__image" style="background-image: url('https://storage.googleapis.com/gweb-cloudblog-publish/images/google_cloud_next21.max-500x500.jpg')"&gt;&lt;/div&gt;
          &lt;/div&gt;
          &lt;div class="uni-related-article-tout__content"&gt;
            &lt;h4 class="uni-related-article-tout__header h-has-bottom-margin"&gt;Save the date for Google Cloud Next ‘21: October 12-14, 2021&lt;/h4&gt;
            &lt;p class="uni-related-article-tout__body"&gt;Join us and learn how the most successful companies have transformed their businesses with Google Cloud. Sign-up at g.co/cloudnext for up...&lt;/p&gt;
            &lt;div class="cta module-cta h-c-copy  uni-related-article-tout__cta muted"&gt;
              &lt;span class="nowrap"&gt;Read Article
                &lt;svg class="icon h-c-icon" role="presentation"&gt;
                  &lt;use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#mi-arrow-forward"&gt;&lt;/use&gt;
                &lt;/svg&gt;
              &lt;/span&gt;
            &lt;/div&gt;
          &lt;/div&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/a&gt;
  &lt;/section&gt;
&lt;/div&gt;

&lt;/div&gt;</description><pubDate>Thu, 25 Mar 2021 18:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/manufacturing/cloud-can-transform-supply-chain-and-logistics-tools-and-processes/</guid><category>Events</category><category>Google Cloud</category><category>Manufacturing</category><category>Supply Chain &amp; Logistics</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Run a transformed supply chain—see how at Google’s Digital Supply Chain summit</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/manufacturing/cloud-can-transform-supply-chain-and-logistics-tools-and-processes/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Hans Thalbauer</name><title>Managing Director, Supply Chain, Logistics &amp; Manufacturing, Google Cloud</title><department></department><company></company></author></item><item><title>COVID-19 reshapes manufacturing landscape, new Google Cloud findings show</title><link>https://cloud.google.com/blog/topics/inside-google-cloud/covid-19-reshapes-manufacturing-landscape/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;After facing severe headwinds from COVID-19, ranging from &lt;a href="https://www.industryweek.com/the-economy/article/21132636/new-transportation-equipment-orders-fell-472-in-april" target="_blank"&gt;decreased orders&lt;/a&gt; to &lt;a href="https://www.pwc.com/us/en/library/covid-19/coronavirus-impacts-industrial-manufacturing.html" target="_blank"&gt;negative impacts on operations&lt;/a&gt;, manufacturers around the world have started to revamp their operating models and supply chain strategies—and now feel more prepared to successfully navigate future pandemics, according to our new research released today. &lt;/p&gt;&lt;p&gt;The key for manufacturers' ability to transform—despite the ongoing pandemic—is their embrace of digital enablers and disruptive technologies. In fact, more than two in five manufacturers have increased their use of data and analytics, digital productivity tools, and public cloud platforms, irrespective of their location in the world. &lt;/p&gt;&lt;p&gt;“Manufacturers have always prepared for unpredictable events that could adversely impact operations,” said Bob Parker, Senior Vice President, Enterprise Applications, Data Intelligence, Services, and Industry Research for IDC. “But what makes COVID-19 so unique is its sustained nature that touches the supply chain, irrespective of geographical location, in a way we haven’t seen in our lifetime. As a result, we’re seeing an urgency from manufacturers to quickly put the right technological levers in place, sooner rather than later. While there may have only been initial conversations about digital transformation in the past, we’re now seeing a rapid acceleration of critical tools and technologies being adopted within the industry.”&lt;/p&gt;&lt;p&gt;Below are five noteworthy takeaways we’ve identified within our findings: &lt;/p&gt;&lt;p&gt;&lt;b&gt;1. Not surprisingly, as with other industries, the pandemic has had a devastating effect on manufacturers overall&lt;/b&gt;. Nearly all of manufacturers (95%) believe their manufacturing or supply chain operations have been negatively impacted by the pandemic. The top three adverse impacts include lost productivity (46%), lower sales (44%), and increased lead times, possibly due to supply chain disruptions (39%). About a third of manufacturers have also experienced downward pressure on overall customer demand (35%), labor shortages (34%), and/or the inability to maintain a safe working environment (33%).&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/google_mfg_findings_1.max-1000x1000.jpg"
        
          alt="google mfg findings 1.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;&lt;b&gt;2. To overcome COVID-19-related challenges, manufacturers were forced to pivot their operating models and supply chain strategies.&lt;/b&gt; More than three-fourths of surveyed manufacturers (77%) said COVID-19 caused their companies to re-evaluate their operating model strategies. The most common reasons include an inability to collaborate effectively with value chain partners (41%), the inability to collaborate effectively with employees (40%), and a lack of the right technology to operate without a large number of on-site workers (39%). &lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/google_mfg_findings_2.max-1000x1000.jpg"
        
          alt="google mfg findings 2.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/google_mfg_findings_3.max-1000x1000.jpg"
        
          alt="google mfg findings 3.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;b&gt;3. Technology played the most critical role in maneuvering through the pandemic, particularly “disruptive” AI, robotics, and more.&lt;/b&gt; More than three-fourths of surveyed manufacturers (76%) revealed that the pandemic has caused their companies to increase the use of digital enablers and disruptive technologies such as: cloud, artificial intelligence (AI), data analytics, robotics, 3D printing/additive manufacturing, Internet of Things, and augmented or virtual reality. More specifically, the top three digital enablers/disruptive technologies that respondents are further utilizing are data and analytics (46%), digital productivity tools (43%), and public cloud platforms (42%). &lt;br/&gt;&lt;br/&gt;&lt;p&gt;Caroline Gorski, Group Director, R² Data Labs, Rolls-Royce/Co-Founder and Former Chair, Emergent Alliance shared: “Digital technology has played a huge role in enabling the continuity of substantial parts of our business and as we pursue our ambitions of pioneering sustainable power, we need people in factories making products, alongside technologies that improve efficiency, accuracy and productivity.”&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/google_mfg_findings_4.max-1000x1000.jpg"
        
          alt="google mfg findings 4.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/google_mfg_findings_5.max-1000x1000.jpg"
        
          alt="google mfg findings 5.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;&lt;b&gt;4. Interestingly, despite many manufacturers not being prepared for COVID-19, most now feel prepared to successfully navigate future pandemics.&lt;/b&gt; As mentioned earlier, nearly (95%) believe their manufacturing or supply chain operations have been negatively impacted by the pandemic. That said, 82% of those surveyed now feel prepared to deal with another COVID-19-like event in the future. This sentiment could be related to how manufacturers successfully ventured into new verticals, such as providing ventilators and PPE &lt;a href="https://www.businesschief.eu/technology/google-cloud-uk-manufacturing-operating-new-normal" target="_blank"&gt;during shortages&lt;/a&gt; and resuming investments in new &lt;a href="https://www.themanufacturer.com/articles/despite-pandemic-manufacturers-continue-invest-digital-factory-plans/" target="_blank"&gt;digital factory plans&lt;/a&gt;. &lt;/p&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/google_mfg_findings_6.max-1000x1000.jpg"
        
          alt="google mfg findings 6.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;b&gt;5. Finally, the pandemic—and its aftermath on the manufacturing industry—has differed greatly by country.&lt;br/&gt;&lt;/b&gt;&lt;ol&gt;&lt;li&gt;&lt;b&gt;In Japan&lt;/b&gt;, approximately half of manufacturers who cited a negative impact (51%) say that the pandemic has led to lower sales, compared to 44% globally. &lt;/li&gt;&lt;li&gt;&lt;b&gt;In Korea&lt;/b&gt;, more than two in five manufacturers who cited a negative impact (43%) said that the pandemic hindered their ability to maintain a safe working environment, compared to 33% globally. &lt;/li&gt;&lt;li&gt;&lt;b&gt;In France&lt;/b&gt;, nearly half of manufacturers (48%) felt equipped with the right technological tools to maintain business continuity in the first 1-3 months of the pandemic, compared to 37% globally.&lt;/li&gt;&lt;li&gt;&lt;b&gt;In the UK&lt;/b&gt;, more than two in five manufacturers (43%) said that dependency on legacy technology has created more risk for their respective business operations over the next year, compared to 30% globally. &lt;/li&gt;&lt;li&gt;&lt;b&gt;In Italy&lt;/b&gt;, more than a third of manufacturers (35%) felt that their IT systems lacked necessary redundancies, which undermined their overall operational resiliency, compared to slightly less than a quarter of overall surveyed manufacturers (23%). &lt;/li&gt;&lt;li&gt;&lt;b&gt;In Germany&lt;/b&gt;, for 86% of manufacturers, COVID-19 has caused an increased use of digital enablers and disruptive technologies, compared to 76% globally. &lt;/li&gt;&lt;li&gt;&lt;b&gt;In the United States&lt;/b&gt;, 64%of manufacturers have increased their use of data and analytics, compared to 46% globally.&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;div class="block-image_full_width"&gt;






  
    &lt;div class="article-module h-c-page"&gt;
      &lt;div class="h-c-grid"&gt;
  

    &lt;figure class="article-image--large
      
      
        h-c-grid__col
        h-c-grid__col--6 h-c-grid__col--offset-3
        
        
      "
      &gt;

      
      
        &lt;a href="https://storage.googleapis.com/gweb-cloudblog-publish/images/google_mfg_findings_7.max-2800x2800.jpg" rel="external" target="_blank"&gt;
      
        
        &lt;img
            src="https://storage.googleapis.com/gweb-cloudblog-publish/images/google_mfg_findings_7.max-1000x1000.jpg"
        
          alt="google mfg findings 7.jpg"&gt;
        
        &lt;/a&gt;
      
    &lt;/figure&gt;

  
      &lt;/div&gt;
    &lt;/div&gt;
  




&lt;/div&gt;
&lt;div class="block-paragraph"&gt;&lt;p&gt;To learn more about these findings and more, download our full report &lt;a href="https://services.google.com/fh/files/misc/the_impact_of_covid_on_manufacturers_2020_report_google_cloud.pdf" target="_blank"&gt;here&lt;/a&gt; and our infographic &lt;a href="https://services.google.com/fh/files/misc/the_impact_of_covid_on_manufacturers_2020_infographic_google_cloud.png" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;hr/&gt;&lt;p&gt;&lt;sup&gt;&lt;i&gt;Research Methodology&lt;br/&gt;The survey was conducted online by The Harris Poll on behalf of Google Cloud, from October 15 – November 4, 2020, among 1,154 senior manufacturing executives in France (n=150), Germany (n=200), Italy (n=154), Japan (n=150), South Korea (n=150), the UK (n=150), and the U.S. (n=200) who are employed full-time at a company with more than 500 employees, and who work in the manufacturing industry with a title of director level or higher. The data in each country were weighted by number of employees to bring them into line with actual company size proportions in the population. A global post-weight was applied to ensure equal weight of each country in the global total.&lt;/i&gt;&lt;/sup&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="block-related_article_tout"&gt;





&lt;div class="uni-related-article-tout h-c-page"&gt;
  &lt;section class="h-c-grid"&gt;
    &lt;a href="https://cloud.google.com/blog/products/ai-machine-learning/ai-and-machine-learning-improve-manufacturing-visual-inspection-process/"
       data-analytics='{
                       "event": "page interaction",
                       "category": "article lead",
                       "action": "related article - inline",
                       "label": "article: {slug}"
                     }'
       class="uni-related-article-tout__wrapper h-c-grid__col h-c-grid__col--8 h-c-grid__col-m--6 h-c-grid__col-l--6
        h-c-grid__col--offset-2 h-c-grid__col-m--offset-3 h-c-grid__col-l--offset-3 uni-click-tracker"&gt;
      &lt;div class="uni-related-article-tout__inner-wrapper"&gt;
        &lt;p class="uni-related-article-tout__eyebrow h-c-eyebrow"&gt;Related Article&lt;/p&gt;

        &lt;div class="uni-related-article-tout__content-wrapper"&gt;
          &lt;div class="uni-related-article-tout__image-wrapper"&gt;
            &lt;div class="uni-related-article-tout__image" style="background-image: url('')"&gt;&lt;/div&gt;
          &lt;/div&gt;
          &lt;div class="uni-related-article-tout__content"&gt;
            &lt;h4 class="uni-related-article-tout__header h-has-bottom-margin"&gt;How AutoML Vision is helping companies create visual inspection solutions for manufacturing&lt;/h4&gt;
            &lt;p class="uni-related-article-tout__body"&gt;How manufacturing customers are using AutoML Vision to create visual inspection solutions&lt;/p&gt;
            &lt;div class="cta module-cta h-c-copy  uni-related-article-tout__cta muted"&gt;
              &lt;span class="nowrap"&gt;Read Article
                &lt;svg class="icon h-c-icon" role="presentation"&gt;
                  &lt;use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#mi-arrow-forward"&gt;&lt;/use&gt;
                &lt;/svg&gt;
              &lt;/span&gt;
            &lt;/div&gt;
          &lt;/div&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/a&gt;
  &lt;/section&gt;
&lt;/div&gt;

&lt;/div&gt;</description><pubDate>Thu, 10 Dec 2020 14:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/inside-google-cloud/covid-19-reshapes-manufacturing-landscape/</guid><category>Google Cloud</category><category>Manufacturing</category><category>Supply Chain &amp; Logistics</category><category>Inside Google Cloud</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>COVID-19 reshapes manufacturing landscape, new Google Cloud findings show</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/inside-google-cloud/covid-19-reshapes-manufacturing-landscape/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Dominik Wee</name><title>Managing Director Manufacturing and Industrial</title><department></department><company></company></author></item><item><title>Helping manufacturers during and after COVID-19</title><link>https://cloud.google.com/blog/topics/inside-google-cloud/helping-manufacturers-during-and-after-covid-19/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;The impact of COVID-19 has touched every industry—including manufacturing, which relies heavily on skilled, hands-on workers and complex supply chains. According to a &lt;a href="https://www.nam.org/coronasurvey/" target="_blank"&gt;March 2020 survey&lt;/a&gt; by the U.S. National Association of Manufacturers, four out of five U.S. manufacturing companies expect to be financially impacted by COVID-19, more than half think they’ll need to change how they operate, and over a third anticipate supply chain disruptions. &lt;/p&gt;&lt;p&gt;COVID-19 has also compelled manufacturers to address important issues facing their employees, including remote work and social distancing. It’s a critical time for manufacturers to increase the agility and digitization of their supply chains and operations; here’s how cloud can help businesses resume under new norms.&lt;/p&gt;&lt;h3&gt;Enabling automation&lt;/h3&gt;&lt;p&gt;While the full impact of COVID-19 is still unknown, many factories are already experiencing decreases in workforce capacity and resources. Manufacturers face tough questions around how to quickly understand this new landscape and develop new operating procedures and automation initiatives that enable them to adapt quickly and enable their employees to safely work on site.&lt;/p&gt;&lt;p&gt;We want to help manufacturers address these challenges by offering tools that automate processes, remotely monitor systems, and extend their capabilities beyond the factory floor. Using &lt;a href="https://cloud.google.com/vision"&gt;Vision AI&lt;/a&gt;, for example, manufacturers can train machine-learning models to visually inspect goods and processes for quality and compliance, without putting human inspectors at risk. By connecting operational technology (OT) and information technology (IT) via the cloud, operators can monitor and control specific machines or plants remotely, using dashboards and performance views. &lt;/p&gt;&lt;p&gt;&lt;a href="https://cloud.google.com/blog/products/ai-machine-learning/ai-and-machine-learning-improve-manufacturing-visual-inspection-process"&gt;GlobalFoundries&lt;/a&gt;, a leader in the semiconductor manufacturing industry, is already using AutoML Vision to build a visual inspection solution that can detect random defects in wafer map and scanning electron microscope (SEM) images, which are essential elements in the semiconductor manufacturing process. AutoML Vision reads in the images of wafers and sample defects, and trains customized models to detect these defects. AutoML Vision could successfully classify 80% of the images based on a limited amount of training data in the initial pass itself. This fast path to high accuracy let GlobalFoundries quickly move to production, start realizing benefits, and scale up. The foundry subsequently improved quality and customer satisfaction, and 40% of the manual inspection workload has already been successfully shifted to the visual inspection solution built based on AutoML Vision.&lt;/p&gt;&lt;h3&gt;Supporting remote work&lt;/h3&gt;&lt;p&gt;Google Meet, our premium, secure video meetings solution, can help manufacturers hold daily meetings, training, and onboarding without the need to be on site, while G Suite tools like Google Docs, Sheets, and Slides let teams collaborate on document authoring remotely. Google Meet can also assist with virtual training and the safe and secure on-boarding of new hires.&lt;/p&gt;&lt;p&gt;&lt;b&gt;KAESER Compressors&lt;/b&gt;, one of the world leaders in compressed air products, accelerated their deployment of G Suite when they needed to rapidly convert their teams to remote work as a result of COVID-19. “We were deeply impressed by how quickly our employees adopted G Suite and we really believe in cloud’s benefits,” says Falko Lameter, CIO at KAESER Compressors. “We have access to more memory, better machines, and more advanced technology, such as machine learning. Google Cloud has shown its commitment to innovation in these areas, and we are looking forward to scaling our collaboration in the future.”&lt;/p&gt;&lt;p&gt;Energy solutions provider &lt;b&gt;Viessmann&lt;/b&gt; was able to keep up its production, and G Suite has helped them to convert their employees to remote work within a 48-hour span. Since then they have conducted roughly 60,000 Google Meet conferences per month. Additionally, Google Sheets was established as the primary IT dashboard for monitoring KPIs for Viessmann’s IT infrastructure. Being one of the first manufacturing companies that chose Chromebooks granted employees who work from home peace of mind, as their accounts are secure and protected through Google’s modern authentication technologies. Viessmann even developed a ventilator in significantly less time than usual. G Suite helped the involved engineers to collaborate and exchange on the project with ease and thus was essential to speed up the launch process. “The G Suite communications and collaboration infrastructure is self-maintaining, and it has made each of us more independent,” says Alexander Pöllmann, Head of Intranet and Collaboration Services at Viessmann. “We can work together from everywhere across borders and time zones, on any device. This kind of flexibility makes our workforce more agile, and ultimately, happier and more productive.” &lt;/p&gt;&lt;p&gt;&lt;b&gt;Koenig &amp;amp; Bauer&lt;/b&gt;, the world's oldest printing press manufacturer, migrated to G Suite in early 2020 to increase productivity and collaboration amongst teams. In light of COVID-19, the timely switch to G Suite helped Koenig &amp;amp; Bauer significantly to keep workplaces connected. Teams in different locations—even at home—have access to tools like video conferencing, calendar functions, word processing, and spreadsheet calculations, and can now share files, all with a single click and on one single platform.&lt;sup&gt;1&lt;/sup&gt; “Before we moved to G Suite, we had a very heterogeneous, non-collaborative IT environment and the resource consumption was pretty heavy,” says Jürgen Tuffentsammer, CIO of Koenig &amp;amp; Bauer. “Since the migration, our team collaboration has improved and we can share and execute against innovative ideas so much faster than before.”&lt;/p&gt;&lt;h3&gt;Managing volatility in supply and demand&lt;/h3&gt;&lt;p&gt;The COVID-19 pandemic has disrupted global supply chains and distribution channels. Now more than ever, accurately forecasting demand and optimizing supply in this continuously evolving environment requires integrating data from multiple sources and analyzing it in real time. It's a job analytical tools like &lt;a href="https://cloud.google.com/bigquery"&gt;BigQuery&lt;/a&gt; were designed for. By applying smart analytics and AI, manufacturers can better predict demand and adapt their operations to meet it.&lt;/p&gt;&lt;p&gt;AI can also help mitigate problems with last-mile delivery, which account for more than half of all shipping costs. The ability to optimize routes using real-time weather and traffic data, as well as to deploy ML models to predict where new pickups are likely to come from, will enable companies to minimize operating expenses while maximizing services.&lt;/p&gt;&lt;p&gt;Last month, Missouri Governor Mike Parson &lt;a href="https://governor.mo.gov/press-releases/archive/state-missouri-utilizes-google-technology-launch-missouri-ppe-marketplace" target="_blank"&gt;announced&lt;/a&gt; the launch of a new tool developed by Google Cloud to help health care providers connect with Missouri manufacturers and suppliers of personal protective equipment (PPE). The Missouri PPE Marketplace tool is a joint effort between the state and the Missouri Hospital Association, built to help those manufacturers that have shifted production to PPE enter the healthcare market and connect with buyers.&lt;/p&gt;&lt;p&gt;Additionally, over the past month, the state’s Department of Economic Development (DED) has gathered interest from more than 200 PPE manufacturers and suppliers, inviting them to register in the system. State healthcare agencies and the Missouri Hospital Association are reaching out to healthcare providers across the state to ensure they have access and can connect directly with suppliers through the new tool.&lt;/p&gt;&lt;h3&gt;Optimizing IT spend&lt;/h3&gt;&lt;p&gt;Moving to the cloud is an important way businesses can optimize their technology spend and find new efficiencies.  For manufacturers, this can translate into more customers served, more issues resolved, and more adaptability for the overall business. The cloud offers the potential for drastically reduced data costs and infrastructure savings, plus increased performance, simplicity, and scalability across IT environments.  &lt;/p&gt;&lt;p&gt;The cloud can support manufacturers in many ways, from improving safety, to weathering market uncertainties, to preparing for the future. For example, we recently joined the Rolls-Royce EMER²GENT alliance, which aims to help foster global economic recovery by identifying early signs of rebounding economies (we’re providing access to our public data sets and BigQuery as part of the effort). Whether it’s modernizing infrastructure, increasing agility, or digitizing supply chains and operations, we’re focused on providing the solutions that will help enable manufacturers to operate during the pandemic and beyond.&lt;/p&gt;&lt;p&gt;Visit our website to learn more about &lt;a href="https://cloud.google.com/solutions/manufacturing"&gt;manufacturing on Google Cloud&lt;/a&gt;.&lt;/p&gt;&lt;hr/&gt;&lt;p&gt;&lt;i&gt;&lt;sup&gt;1. Source: &lt;a href="https://www.koenig-bauer.com/fileadmin/user_upload/04_Unternehmen/Investor_Relations/Berichte/Berichte_2019/Koenig-Bauer-GB2019_en.pdf" target="_blank"&gt;Koenig &amp;amp; Bauer Annual Report 2019&lt;/a&gt;&lt;/sup&gt;&lt;/i&gt;&lt;/p&gt;&lt;/div&gt;</description><pubDate>Thu, 14 May 2020 13:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/topics/inside-google-cloud/helping-manufacturers-during-and-after-covid-19/</guid><category>Google Cloud</category><category>Google Workspace</category><category>Supply Chain &amp; Logistics</category><category>COVID-19</category><category>Inside Google Cloud</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Helping manufacturers during and after COVID-19</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/topics/inside-google-cloud/helping-manufacturers-during-and-after-covid-19/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Dominik Wee</name><title>Managing Director Manufacturing and Industrial</title><department></department><company></company></author></item><item><title>Mitigating risk in the hardware supply chain</title><link>https://cloud.google.com/blog/products/identity-security/mitigating-risk-in-the-hardware-supply-chain/</link><description>&lt;div class="block-paragraph"&gt;&lt;p&gt;At Google, security is among our primary design criteria as we build hardware, software, and services. We think comprehensively about potential risks, no matter how small, and the best ways to mitigate them and stay ahead of attackers.&lt;/p&gt;&lt;p&gt;We take a “&lt;a href="https://cloud.google.com/security/infrastructure/"&gt;defense in depth&lt;/a&gt;” approach to security, which means that we don’t rely on any one thing to keep us secure, but instead build layers of checks and controls. Even if an attacker were to circumvent one of our safeguards, they would be met with many more carefully designed protections to keep them out.&lt;/p&gt;&lt;p&gt;One area where we've put a lot of thought, and which we continue to focus on, is the security of our hardware supply chain. Today, I’d like to go into a few of the things we do specifically in this area.&lt;/p&gt;&lt;h3&gt;&lt;b&gt;Hardware design and provenance&lt;/b&gt;&lt;/h3&gt;&lt;p&gt;A Google data center consists of thousands of servers connected to a local network. In most cases, both the server boards and the networking equipment are custom-designed by Google. We vet component vendors and choose components with care, working with vendors to audit and validate the security properties provided by the components. We also design custom chips, such as the &lt;a href="https://cloud.google.com/blog/products/gcp/titan-in-depth-security-in-plaintext"&gt;Titan hardware security chip&lt;/a&gt; that we’re rolling out on both servers and peripherals, which help us securely identify and authenticate legitimate Google devices at the hardware level.&lt;/p&gt;&lt;h3&gt;&lt;b&gt;Hardware tracking and disposal&lt;/b&gt;&lt;/h3&gt;&lt;p&gt;Google meticulously tracks the location and status of all equipment within our data centers—from acquisition to installation to retirement to destruction—via barcodes and asset tags. Metal detectors and video surveillance are implemented to help make sure no equipment leaves the data center floor without authorization. If a component fails to pass a performance test at any point during its lifecycle, it is removed from inventory and retired.&lt;/p&gt;&lt;p&gt;When a &lt;a href="https://cloud.google.com/blog/products/storage-data-transfer/deleting-your-data-in-google-cloud-platform"&gt;hard drive is retired&lt;/a&gt;, authorized individuals verify that the disk is erased by writing zeros to the drive and performing a multiple-step verification process to ensure the drive contains no data. If the drive cannot be erased for any reason, it is stored securely until it can be physically destroyed. Depending on available equipment, we either crush and deform the drive or shred the drive into small pieces. Each data center adheres to a strict disposal policy and any variances are promptly addressed.&lt;/p&gt;&lt;h3&gt;&lt;b&gt;Secure boot stack and machine identity&lt;/b&gt;&lt;/h3&gt;&lt;p&gt;Google servers use a variety of technologies to ensure that they are booting the correct software stack. We use cryptographic signatures over low-level components like the BIOS, bootloader, kernel, and base operating system image. These signatures can be validated during each boot or update. The components are Google-controlled, built, and hardened. With each new generation of hardware we strive to continually improve security: for example, depending on the generation and type of server, we root the trust of the boot chain in either a lockable firmware chip, a microcontroller running Google-written security code, or the above mentioned Google-designed security chip.&lt;/p&gt;&lt;p&gt;Each server in the data center has its own specific identity that can be tied to the hardware root of trust and the software with which the machine booted. This identity is used to authenticate API calls to and from low-level management services on the machine.&lt;/p&gt;&lt;p&gt;Google has developed automated systems which ensure servers run up-to-date versions of their software stacks (including security patches), detect and diagnose hardware and software problems, and remove machines from service if necessary.&lt;/p&gt;&lt;h3&gt;&lt;b&gt;Defense-in-depth&lt;/b&gt;&lt;/h3&gt;&lt;p&gt;As mentioned, while these are examples of protections designed to address specific attack vectors in a potential supply chain attack, they are by no means the only defense. Google’s infrastructure and Google Cloud have been designed with a defense-in-depth approach so that we have opportunities to mitigate potential vulnerabilities at other layers of our stack. For example, even if a piece of server hardware were compromised, our network infrastructure is designed to be able to detect and automatically prevent the command-and-control communications that are often necessary to take advantage of compromised hardware. Similarly, by &lt;a href="https://cloud.google.com/security/infrastructure/design/"&gt;encrypting and authenticating network traffic&lt;/a&gt; we are able to prevent a compromised network device from accessing sensitive data.&lt;/p&gt;Google will continue to invest in our platform to allow you to benefit from our services in a secure and transparent manner. To learn more about our approach to infrastructure security, visit our &lt;a href="https://cloud.google.com/security/infrastructure/"&gt;Infrastructure Security page&lt;/a&gt;, and download our &lt;a href="https://cloud.google.com/security/security-design/resources/google_infrastructure_whitepaper_fa.pdf?utm_medium=et&amp;amp;utm_source=google.com%2Fcloud&amp;amp;utm_campaign=multilayered_security&amp;amp;utm_content=download_the_whitepaper"&gt;Infrastructure Security whitepaper&lt;/a&gt;.&lt;/div&gt;</description><pubDate>Fri, 22 Mar 2019 16:00:00 +0000</pubDate><guid>https://cloud.google.com/blog/products/identity-security/mitigating-risk-in-the-hardware-supply-chain/</guid><category>Infrastructure</category><category>Google Cloud</category><category>Supply Chain &amp; Logistics</category><category>Security &amp; Identity</category><og xmlns:og="http://ogp.me/ns#"><type>article</type><title>Mitigating risk in the hardware supply chain</title><description></description><site_name>Google</site_name><url>https://cloud.google.com/blog/products/identity-security/mitigating-risk-in-the-hardware-supply-chain/</url></og><author xmlns:author="http://www.w3.org/2005/Atom"><name>Adam Stubblefield</name><title>Distinguished Engineer, Technical Infrastructure Security &amp; Privacy</title><department></department><company></company></author></item></channel></rss>