Create a fresh Windows 10 Pro ISO file with Microsofts Media Creation Tool. (I created a Windows 10 Pro 64 bit German ISO image)
Save the created image on your SmartOS global zone.
cp ... /zones/Windows10_64de.iso
.ProseMirror .MathBlock pre { | |
background: var(--default-back); | |
color: rgb(var(--default-font)); | |
font-size: 0.8em; | |
display: flex; | |
padding: 1em; | |
} | |
.ProseMirror .MathBlock { | |
display: flex; |
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
RDBMS-based job queues have been criticized recently for being unable to handle heavy loads. And they deserve it, to some extent, because the queries used to safely lock a job have been pretty hairy. SELECT FOR UPDATE followed by an UPDATE works fine at first, but then you add more workers, and each is trying to SELECT FOR UPDATE the same row (and maybe throwing NOWAIT in there, then catching the errors and retrying), and things slow down.
On top of that, they have to actually update the row to mark it as locked, so the rest of your workers are sitting there waiting while one of them propagates its lock to disk (and the disks of however many servers you're replicating to). QueueClassic got some mileage out of the novel idea of randomly picking a row near the front of the queue to lock, but I can't still seem to get more than an an extra few hundred jobs per second out of it under heavy load.
So, many developers have started going straight t
#!/bin/bash | |
echo "arc_stats::print -a arcstat_p.value.ui64" | mdb -kw > value.ui64 | |
ui64=$(cat value.ui64) | |
echo "${ui64:0:16}/Z 0x10000000" | mdb -kw | |
echo "arc_stats::print -a arcstat_c.value.ui64" | mdb -kw > value.ui64 | |
ui64=$(cat value.ui64) | |
echo "${ui64:0:16}/Z 0x10000000" | mdb -kw | |
echo "arc_stats::print -a arcstat_c_max.value.ui64" | mdb -kw > value.ui64 | |
ui64=$(cat value.ui64) | |
echo "${ui64:0:16}/Z 0x10000000" | mdb -kw |
#!/bin/bash | |
echo "arc_stats::print -a arcstat_p.value.ui64" | mdb -kw > value.ui64 | |
ui64=$(cat value.ui64) | |
echo "${ui64:0:16}/Z 0x10000000" | mdb -kw | |
echo "arc_stats::print -a arcstat_c.value.ui64" | mdb -kw > value.ui64 | |
ui64=$(cat value.ui64) | |
echo "${ui64:0:16}/Z 0x10000000" | mdb -kw | |
echo "arc_stats::print -a arcstat_c_max.value.ui64" | mdb -kw > value.ui64 | |
ui64=$(cat value.ui64) | |
echo "${ui64:0:16}/Z 0x10000000" | mdb -kw |