| Cost in USD (from "asia-southeast1") | Cloud SQL (PostgreSQL) | AlloyDB |
|---|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| promptGCPEntry(){ | |
| while true; do | |
| read -p "Please input your Google Cloud Platform Project ID: " gcpProjectId | |
| case $gcpProjectId in | |
| "") echo "Please input a valid value.";; | |
| * ) break;; | |
| esac | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package googletranslatewrapper | |
| import ( | |
| "context" | |
| "fmt" | |
| "cloud.google.com/go/translate" | |
| "github.com/weiyuan-lane/google-translate-api/internal/utils/errorhandlers" | |
| ) |
| Defined instance type | Custom instance type | |||
| Extensions | Cloud SQL (PostgreSQL) | AlloyDB | |
|---|---|---|---|
| 1 | address_standardizer | ✔️ | ✔️ |
| 2 | address_standardizer_data_us | ✔️ | ✔️ |
| 3 | amcheck | ✔️ | ✔️ |
| 4 | auto_explain | ✔️ | ✔️ |
| 5 | bloom | ✔️ | |
| 6 | btree_gin | ✔️ | ✔️ |
| 7 | btree_gist | ✔️ | ✔️ |
| 8 | citext | ✔️ | ✔️ |
| area of interest | Cloud SQL (PostgreSQL) | AlloyDB | |
|---|---|---|---|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| GET /_search | |
| { | |
| "query": { | |
| "bool": { | |
| "must": [ | |
| { | |
| "query_string": { | |
| "query": "message: \"This is a genre log entry!\"", | |
| "analyze_wildcard": true | |
| } |
| # | Figuring It Out — Kubernetes, EKS, AWS | GitHub Project Link |
|---|---|---|
| 3.0.1 | Scalability issue and fixes | 3.0.1 |
| 3 | Role-Based Access Control (RBAC) | 3.0.0 |
| 2 | [Interacting with your cluster? Web dashboards? Terminal?](https://weiyuan-liu.medium.com/figuring-it-out-kubernetes-eks-aws-2-interacting-with-your |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node_security_group_additional_rules = { | |
| ingress_self_all = { | |
| description = "Cluster API to node groups (Kubernetes Dashboard port only)" | |
| protocol = "tcp" | |
| from_port = 8443 | |
| to_port = 8443 | |
| type = "ingress" | |
| source_cluster_security_group = true | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| async setAttributes(attrs: Object): Promise<void> { | |
| return this.growthbookSingleton.then((growthbook: GrowthBook) => { | |
| growthbook.setAttributes(attrs); | |
| this.triggerUpdate(); | |
| }) | |
| } | |
| async evalFeature<T extends FeatureValType>(featureKey: string): Promise<T | null> { | |
| return this.growthbookSingleton.then((growthbook: GrowthBook) => { | |
| const val = growthbook.evalFeature<T>(featureKey); |