What type of data centre?
WOH! I lost my breath reading all of that.That's the new vwmare 3-way system for an exchange cluster for our mail services. 1000 users, 1million message processed inbound (spam/ham) per week. You want to see the matrix's green data stream? yeah we got live logs that look like that. Sucker is gonna be fast with SAS 2TB Raid-10 and SATA Archive Storage. (Nobody deletes email on these systems they are litigatition locked; you send it; it lives forever). Flipping uptime drives all this stuff; every single component from the internet cable to the power cord is redundant full Active HA. Just wiring it up in Headache inducing. 33 network wires for 3 servers. HA is complicated but it doesn't have to be hard.
UPS's go in Music studio 4 pole min racks with for max ventilation. Batteries are in parallel with independent chargers per battery for rapid recycle (or daisy chain 5 batteries to 1 battery based charger). full inverters to pure sine wave with boost and trim.
Not really digging building this in spring should have done it in the dead of winter.
*no perl though. awk, python, sed and find are more my style. And I don't do discovery or any requests for legal.
Pretty much anytime someone says "that'll take too long to fix that data"Although if you're still using sed and awk,
That's the new vwmare 3-way system for an exchange cluster for our mail services. 1000 users, 1million message processed inbound (spam/ham) per week. You want to see the matrix's green data stream? yeah we got live logs that look like that. Sucker is gonna be fast with SAS 2TB Raid-10 and SATA Archive Storage. (Nobody deletes email on these systems they are litigatition locked; you send it; it lives forever). Flipping uptime drives all this stuff; every single component from the internet cable to the power cord is redundant full Active HA. Just wiring it up in Headache inducing. 33 network wires for 3 servers. HA is complicated but it doesn't have to be hard.
UPS's go in Music studio 4 pole min racks with for max ventilation. Batteries are in parallel with independent chargers per battery for rapid recycle (or daisy chain 5 batteries to 1 battery based charger). full inverters to pure sine wave with boost and trim.
Not really digging building this in spring should have done it in the dead of winter.
I do a lot of ad hoc analysis during integrations. That means I am writing things like "find . -type f -name asset\*xml | xargs grep posterBoardPath | awk -F = '{print $2}' | sort | uniq -c" or similar. It varies. I like python a lot. In 1999 I swore off perl since I couldn't maintain it. awk, sed etc are just for command line quick work.I still write one line Perl scripts (mostly for regex), but otherwise it's almost all Python. Although if you're still using sed and awk, Perl might actually be an upgrade...
+1 for the one liner."find . -type f -name asset\*xml | xargs grep posterBoardPath | awk -F = '{print $2}' | sort | uniq -c"