I hereby claim:
- I am johnsmclay on github.
- I am johnsmc (https://keybase.io/johnsmc) on keybase.
- I have a public key ASCr5gqsNS52_g5Je5qXT3s3gcR6v6i7-ANIZ2gNo2ydxQo
To claim this, I am signing this object:
| # REFERENCES: | |
| # how-to: https://blog.swwomm.com/2021/06/send-journald-to-cloudwatch-logs-with.html | |
| # Docs: https://vector.dev/docs | |
| # Change this to use a non-default directory for Vector data storage: | |
| # data_dir: "/var/lib/vector" | |
| sources: | |
| journald_all: | |
| type: "journald" |
I hereby claim:
To claim this, I am signing this object:
| # Need to run this as Administrator | |
| # To turn on Hyper-V if necessary, see: | |
| # https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/quick-start/enable-hyper-v | |
| Import-Module Hyper-V | |
| # A hashtable of NIC/vLAN names and vLAN IDs you want to create NICs for | |
| $vlans=@{ "Main" = 1; | |
| "Public" = 2; | |
| "Public 2" = 3; |
| DROP TABLE IF EXISTS `clay_sandbox`.`column_stats`; | |
| CREATE TABLE `clay_sandbox`.`column_stats` ( | |
| `database` varchar(64) NOT NULL, | |
| `table` varchar(64) NOT NULL, | |
| `column` varchar(64) NOT NULL, | |
| `position_in_table` bigint(20) SIGNED NOT NULL, | |
| `nonnull_vals` bigint(20) DEFAULT NULL, | |
| `nonmnull_pctg` decimal(7,5) DEFAULT NULL, | |
| `sum_val` decimal(32,16) DEFAULT NULL, | |
| `min_val` decimal(32,16) DEFAULT NULL, |
When backing up databases/table to files I needed to have them encrypted for security and compliance. But there were a few concerns:
So, Pub/Priv is great for #2. Unfortunately, Pub/Priv is not made for large files, therefor I decided follow this process: