I ran into this issue with CISCO VPN and VirtualBox where the VBox is unable to resolve DNS on the VPN of the host $ VBoxManage list vms ⁃ “Data Stage Server” {e94cc386-9ab9-476c-8dfa-fa877ffa0c8c} $ VBoxManage modifyvm “Data Stage Server” –natdnshostresolver1 on
Monthly Archives: June 2018
Advanced HBase Shell
Recently, I’ve had to do some advanced HBase Shell scripting to check data consistency. Tip # 1 – You can easily establish min/max times in nanoseconds from BASH and feed them into your script. $(date +%s%6N) gets you 6 digits of precision 3 for millis 3 for nanos. Tip # 2 – Use the ‘include […]