google-cloud-platform
GCP27 :: Compute Engine, 이론
GCP27 :: Compute Engine, 이론
2020.08.31ㅡ. Compute Engine VM 들을 생성해서 Google Clouud Service를 제공합니다. laas 이며, Server Autoscaling 수행합니다. ㅡ. 구성 vCPUs (cores), Memory (RAM) -> 선택가능 Persistent disks:HDD, SSD and Local SSD Networking ->(networking interfaces 환경설정) Linux or Windows -> (Linux 나 Windows 머신과 결합하여 동작시킬 수도있습니다.) 을 지원합니다. ㅡ. 특징 1. Machine rightsizing 최적의 사이즈, stackdriver 통계 2. 글로벌 로드 밸런싱 멀티플 리전 고가용성 3. 선점형 Up to 80% discount No SLA..
ISSUE09 :: Cannot access field name on a value with type ARRAY<STRUCT<name STRING, bytes INT64>> at [1:17]
ISSUE09 :: Cannot access field name on a value with type ARRAY<STRUCT<name STRING, bytes INT64>> at [1:17]
2020.08.11google public-data-set 에서 github의 languages 에 접근하려고 했을때 Cannot access field name on a value with type ARRAY at [1:17] 와 같은 이슈가 발생했습니다. table에서 해당 컬럼이 array 형태이기 때문에 이를 Flatten 하기 위해서 UNNEST 함수를 사용해야 합니다. select count(distinct language.name) from table -> select count(distinct n.name) from table, UNNEST(language) as n