Which statement accurately describes Snowflake's architecture?
Which statement accurately describes Snowflake's architecture?
Snowflake's architecture is a hybrid of traditional shared-disk and shared-nothing database architectures. It combines the centralized data repository concept of shared-disk architectures, where persisted data is accessible by all compute nodes, with the performance and scalability benefits of shared-nothing architectures, which use massively parallel processing (MPP) compute clusters for query processing. Each node in these clusters stores only a portion of the entire data set locally.
Snowflake architecture base question
Correct
Snowflake Architecture Snowflake’s architecture is a hybrid of traditional shared-disk and shared-nothing database architectures. Similar to shared-disk architectures, Snowflake uses a central data repository for persisted data that is accessible from all compute nodes in the platform. But similar to shared-nothing architectures, Snowflake processes queries using MPP (massively parallel processing) compute clusters where each node in the cluster stores a portion of the entire data set locally. This approach offers the data management simplicity of a shared-disk architecture, but with the performance and scale-out benefits of a shared-nothing architecture. https://docs.snowflake.com/en/user-guide/intro-key-concepts
C correct