Zhuang's Diary

言之有物,持之以恒

Terraform - https://www.terraform.io/

Terraform is a provisioning focus tool.

provisioning - 置备是创建和设置 IT 基础架构的过程,包括为管理用户和系统对各种资源访问权限所需执行的步骤。置备是部署服务器、应用、网络组件、存储、边缘设备等的早期阶段。

置备与配置管理 - configuration-management 不同,但它们都属于部署过程中的步骤。一旦置备了系统,下一步就是配置系统,并在一段时间内使其保持一致。

如何组合使用

  • Provisioning + Config management = Terraform + Ansible

  • Provisioning + Server Templating = Terraform + packer

  • Provisioning + Orchestration Tool = Terraform + kubernetes,通常在AWS中会使用EKS服务。

Terraform Architecture

如何编写Terraform的代码?

根据上图架构中,我们需要参考如下,AWS Provider 的文档,通过其中的代码,provisioning地构建AWS的IT基础设施。

https://registry.terraform.io/providers/hashicorp/aws/latest/docs

如何执行Terraform?

all terraform cli docs are here ==> https://developer.hashicorp.com/terraform/tutorials/cli

1.terraform init

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
➜  02-overview git:(main) pwd
/Users/xxx/Documents/source_code/devops-directive-terraform-course/02-overview
➜ 02-overview git:(main) ls
README.md main.tf
➜ 02-overview git:(main) terraform -help
Usage: terraform [global options] <subcommand> [args]

The available commands for execution are listed below.
The primary workflow commands are given first, followed by
less common or more advanced commands.

Main commands:
init Prepare your working directory for other commands
validate Check whether the configuration is valid
plan Show changes required by the current configuration
apply Create or update infrastructure
destroy Destroy previously-created infrastructure

All other commands:
console Try Terraform expressions at an interactive command prompt
fmt Reformat your configuration in the standard style
force-unlock Release a stuck lock on the current workspace
get Install or upgrade remote Terraform modules
graph Generate a Graphviz graph of the steps in an operation
import Associate existing infrastructure with a Terraform resource
login Obtain and save credentials for a remote host
logout Remove locally-stored credentials for a remote host
metadata Metadata related commands
output Show output values from your root module
providers Show the providers required for this configuration
refresh Update the state to match remote systems
show Show the current state or a saved plan
state Advanced state management
taint Mark a resource instance as not fully functional
test Experimental support for module integration testing
untaint Remove the 'tainted' state from a resource instance
version Show the current Terraform version
workspace Workspace management

Global options (use these before the subcommand, if any):
-chdir=DIR Switch to a different working directory before executing the
given subcommand.
-help Show this help output, or the help for a specified subcommand.
-version An alias for the "version" subcommand.
➜ 02-overview git:(main) terraform init

Initializing the backend...

Initializing provider plugins...
- Finding hashicorp/aws versions matching "~> 3.0"...
- Installing hashicorp/aws v3.76.1...
- Installed hashicorp/aws v3.76.1 (signed by HashiCorp)

Terraform has created a lock file .terraform.lock.hcl to record the provider
selections it made above. Include this file in your version control repository
so that Terraform can guarantee to make the same selections by default when
you run "terraform init" in the future.

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.

➜ 02-overview git:(main) tree
.
|____main.tf
|____.terraform
| |____providers
| | |____registry.terraform.io
| | | |____hashicorp
| | | | |____aws
| | | | | |____3.76.1
| | | | | | |____darwin_arm64
| | | | | | | |____terraform-provider-aws_v3.76.1_x5
|____README.md
|____.terraform.lock.hcl

2.terraform plan

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# terraform plan
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
+ create

Terraform will perform the following actions:

# aws_instance.example will be created
+ resource "aws_instance" "example" {
+ ami = "ami-0829e595217a759b9"
+ arn = (known after apply)
+ tags = {
+ "Name" = "int32bit-test-ft"
+ "Owner" = "int32bit"
}
+ vpc_security_group_ids = (known after apply)
+ ...

Plan: 1 to add, 0 to change, 0 to destroy.

3.terraform apply

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# terraform apply
Plan: 1 to add, 0 to change, 0 to destroy.

Do you want to perform these actions?
Terraform will perform the actions described above.
Only 'yes' will be accepted to approve.

Enter a value: yes

aws_instance.example: Creating...
aws_instance.example: Still creating... [10s elapsed]
aws_instance.example: Still creating... [20s elapsed]
aws_instance.example: Creation complete after 20s [id=i-0bb96d24b6e6d37eb]

Apply complete! Resources: 1 added, 0 changed, 0 destroyed.

4.terraform destroy

5.adfs

在实际企业环境中,aws 的使用通常是需要多重身份验证的,所以多数使用 ADFS (multi factor authentication with active directory)。

其中最常用的工具是 https://github.com/venth/aws-adfs,通过 证书 / 身份(如SSO)/ 密码 登陆aws,terraform也是如此。

实际项目结构

而且,在复杂的系统部署中,可以针对每一个module的tf中,添加 shell 脚本,如针对compute.tf单独运行的shell脚本,让每一个脚本(手动)执行,即每一terraform部署完成后,确认执行结果。分步骤地,解耦地完成复杂系统的部署工作,切能够按照企业要求,完成安全,网络,EKS等规则要求。

Reference

all terraform providers ==> https://registry.terraform.io/browse/providers

terraform Course ==> https://www.youtube.com/watch?v=7xngnjfIlK4&t=8s

Feature Golang database/sql GORM SQLC SQLX
Type Standard library ORM library Code generation tool Library extension
Ease of use Low - manual mapping SQL fields to variables High Medium Medium
SQL Abstraction None High Medium (Type-safe SQL) Low
Query Building No Yes No Yes
Automatic Struct Mapping No Yes Yes Yes
Type Safety No Yes Yes No
Supported Databases Any (with driver) MySQL, PostgreSQL, SQLite, SQL Server PostgreSQL, MySQL, SQLite Any (with driver)
Learning Curve Low Medium Medium Low
External Dependency No Yes Yes Yes
Performance on high load High Low High High
Code generation No No Yes - Catch SQL query errors before generating codes Yes - Failure won’t occur until runtime

SQLC + migrate is the prefect choice if the database is PostgreSQL.

This is the detail guide movie here ==> https://www.youtube.com/watch?v=0CYkrGIJkpw (Generate CRUD Golang code from SQL | Compare db/sql, gorm, sqlx & sqlc)

问题描述

早期空头 NFT/ERC20 Token 的话,更多需要用户来做 withdraw。本文章的设计模式是由发行方来发送 NFT/ERC20 Token 给到用户。同样适用于多个资产同时转账的场景。

解决方案

合约接口:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pragma solidity ^0.8.0;

interface IMulticall {
/// @notice Takes an array of abi-encoded call data, delegatecalls itself with each calldata, and returns the abi-encoded result
/// @dev Reverts if any delegatecall reverts
/// @param data The abi-encoded data
/// @returns results The abi-encoded return values
function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results);

/// @notice OPTIONAL. Takes an array of abi-encoded call data, delegatecalls itself with each calldata, and returns the abi-encoded result
/// @dev Reverts if any delegatecall reverts
/// @param data The abi-encoded data
/// @param values The effective msg.values. These must add up to at most msg.value
/// @returns results The abi-encoded return values
function multicallPayable(bytes[] calldata data, uint256[] values) external payable virtual returns (bytes[] memory results);
}

multicallPayable 是可选的,因为由于 msg.value,它并不总是可行的。

以下是最为简陋的实现方式。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
pragma solidity ^0.8.0;

/// Derived from OpenZeppelin's implementation
abstract contract Multicall is IMulticall {
function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {
results = new bytes[](data.length);
for (uint256 i = 0; i < data.length; i++) {
(bool success, bytes memory returndata) = address(this).delegatecall(data);
require(success);
results[i] = returndata;
}
return results;
}
}

multicallPayable 只应在合约能够支持时使用。以上实现可能允许攻击者使用相同的以太币多次调用支付函数。

调用方法/测试方法

以下 JavaScript 代码使用 Ethers 库,应自动将 ERC-20 Token 的 amt 单位传输到地址 A 和地址 B。

1
2
3
4
await token.multicall(await Promise.all([
token.interface.encodeFunctionData('transfer', [ addressA, amt ]),
token.interface.encodeFunctionData('transfer', [ addressB, amt ]),
]));

完整工程

如下:

https://github.com/willzhuang/multicall

https://github.com/ethereum/EIPs/blob/master/EIPS/eip-6357.md

2017年6月,大神 Andrej Karpathy 刚从现在如日中天的 OpenAI 离职加入了 Tesla,跟着Elon Musk干自动驾驶。半年后的2017年11月13日,Andrej 写了一篇文章「Software 2.0」,提出了一个新的软件范式,一个以神经网络为主体、其他代码为辅助的 Software 2.0。具体文章见 https://karpathy.medium.com/software-2-0-a64152b37c35

2017: Software 1.0 vs Software 2.0

  1. Software 1.0 中的规则(也就是我们常说的业务逻辑)是设计好的,由程序员把设计好的业务规则,通过一种编程语言写给机器执行。可以是Python或者Java、C++等;Software 2.0 的核心是一个神经网络、是无法被人理解的一种代码。
  2. Software 1.0 是程序员写代码;Software 2.0 是程序员搞训练、调整训练数据集等。开发范式发生了非常大的变化。

2021: 进一步

『The Rise of Software 2.0』https://pub.towardsai.net/the-rise-of-software-2-0-you-dont-want-to-be-left-behind-cbaa75f6d19 ,加上更多的AI 产品已经可以看到了,Software 2.0 的轮廓逐渐清晰了,尤其作者提到的中间态 Data Products,就是我们目前看到的大多数产品的形态。

2023: ChatGPT

2023年,chatGPT 持续火爆,尤其是 GPT 4.0 的 plugin 机制,让 GPT 插上了翅膀,无所不能的画面呈现在我们眼前。6年后,Software 2.0 是这样子,但跟之前Andrej 说的还是有一些不同:

  1. 软件的核心是神经网络,但 LLM 这个怪兽让我们大多数开发者没有机会去训练模型,而是通过 Prompt 自然语言,充其量做一些 Embedings,fine-tuning 都是奢侈的
  2. 还是因为LLM大模型的存在,『The Rise of Software 2.0』中提到的Software 2.0 的高研发投入不存在了,大家都是围绕着LLM 基础大模型做。但反过来想,大家的护城河在哪里呢?

还有吗?也许有。Microsoft 最近开放出一个 Semantic Kernel 的开发框架,把基于大语言模型开发抽象成了几个模块:Kernel、Planner、Skills、Memory和Connectors,这简直就是当年写Web 程序的时候提出了一个 MVC 框架一样,方便大家快速基于LLM 大语言模型构建自己的应用,简直就是LLM时代的 Spring。

https://github.com/microsoft/semantic-kernel

https://devblogs.microsoft.com/semantic-kernel/

https://learn.microsoft.com/en-us/semantic-kernel/