Category: DataEngineer
-
Openlens
1. Install scoop open powershell 2. Install Openlens open command prompt 3. Open Openlens and install plugins Step 1: open Openlens Step 2: open “Extensions” Step 3: fill up “@alebcay/openlens-node-pod-menu“ Before After UI button for– Attach to pod kubectl attach -i -t -n <<namespace>> <<pod name>>– pod shell kubectl exec -it <<pod name>> -n <<namespace>>…
-
Row store vs Column store
Row Column “select *” run faster “select *” run slower as need to combine data Seek slower if not index. Traverse to block row 3, read all column until R3C5 (5 steps) Seek faster. Traverse to block column 5, read until R3C5 (3 steps) Aggregation slow, whole row of data is read out to memory…




