/srv/irclogs.ubuntu.com/2018/06/07/#ubuntu-server.txt

GoopI have two drives--one that is slow and costs my money to use/pull from, then I have a fast drive, is free to use, but is much smaller. Is there software that I could use to automatically allocate data and predict where to put it?00:18
sarnoldnone that I know of, but zfs may come close, if the fast drive is fast enough to use for l2arc00:21
GoopThe thing is, I will be hosting a website with more data than what is on a VPS, the extra data will be pulled/pushed off-site (hence, there's a data transfer cost).00:24
sarnoldGoop: hrm, if your data usage matches many other sites, maybe something like squid, nginx, or varnish would fit well00:28
rbasakGoop: bcache?00:30
=== boshhead_ is now known as boshhead
lordievaderGood morning06:04
=== win0err_ is now known as win0err
=== win0err_ is now known as win0err
AtuMHi!08:13
AtuMI have a question regarding networkmanager.. can nmcli also return a PSK for a wifi connection, or should I parse the /etc/NetworkManager/system-connections/ files instead?08:14
cpaelzeranyone around for a little netplan question - I assume I hit something trvial atm - I have a config that works well when "netplan apply" - but after boot it is not applied08:29
AtuMnmcli c s WIFI -s  still hides the psk key..08:29
cpaelzerI wonder if I missed an enable/disable somewhere08:29
cpaelzerTL;DR - after boot no device is up; then "sudo netplan apply" and all is good08:31
cpaelzerwhat am I missing08:31
AtuMfound it! "nmcli -s c s WIFI"08:31
AtuMshows secrets :D08:31
cpaelzerFYI: none of these solutions is matching my case https://askubuntu.com/questions/1019146/netplan-does-not-apply-at-startup08:38
blackflowso... the inevitable hard to debug problems of complex, unneded, additional layers..... how unexpected. :)08:50
cpaelzer:-)08:52
cpaelzerthe networkd files even look normal, so it seems to be more a networkd than netplan issue in this case08:53
blackflowcpaelzer: of course, you checked the journal/syslog?08:53
blackflownetworkd files look normal before or aftre netplan apply?  as far as I gather, netplan has a systemd generator that's fired up on book and produces transient networkd config.08:54
cpaelzerit considers the link not managed08:55
cpaelzerthat is what networkctl and journal are telling me08:55
cpaelzerthey are the same before and after netplan apply08:55
cpaelzerhanging around in /run/systemd/network08:55
cpaelzerI seem to miss the piece of the puzzle that makes networkd consider those configs08:56
cpaelzeron boot it seems not to happen and "netplan apply" lets it happen, yet I don't know yet what it is08:56
blackflowcpaelzer: what I'd try next is take the network config produced by netplan and make it permanent in /etc, and temporarily disable netplan. If the net still fails on boot, that will clearly show the problem being networkd.08:59
blackflowyou know like a race condition or something with interface (re)naming or whatev.09:00
cpaelzeryeah09:00
cpaelzerI thought the config is on permanent in the file in /run/systemd/network09:01
* cpaelzer wonders if those are generated as well09:01
cpaelzerlet me check modification date after a reboot09:01
blackflowcpaelzer: no, /run is tmpfs09:01
cpaelzertrue09:01
cpaelzerso it might create those after networkd started09:01
cpaelzerand apply might simply restart networking which picks them up09:01
cpaelzerlet me just restart networkd after a boot09:01
cpaelzercopied the files to /etc/systemd/network - devices are still down and unmanaged after reboot09:18
blackflowcpaelzer: I dived into the whole thing a bit and from what I read, it appears netplan is doing it all wrong. systemd generators should NOT, according to documentation and devs, be used for network config.09:18
cpaelzerI was about to prep a bug anyway09:18
blackflowcpaelzer: so in your case it means networkd has a problem with that link and/or config?09:20
cpaelzerseems that way, btu then why is it working after netplan apply09:21
cpaelzersince the .link/-network files do not change09:21
cpaelzersame md5sums in /run/systemd/network/* before and after09:21
blackflowcpaelzer: looking at the netplan source, the apply command pretty much only re-runs the generator and restarts networkd.    When you tested networkd config only, did you disable netplan?09:25
cpaelzerblackflow: actually what would you disable to do so, the generator?09:34
cpaelzernetplan-wpa@service should not matter I thouht but I can disable that09:34
cpaelzerand I restarted systemd-networkd.service on my own09:35
cpaelzerbefore09:35
cpaelzeras I assumed this is what the apply would do09:35
blackflowcpaelzer: mv /etc/netplan/01-netcfg.yaml /root/09:36
blackflownetplan won't do anything if there's no config09:36
cpaelzerI can do that in addition09:36
blackflowI thought you did. That would test the networkd config without potential interference by netplan, and at least show where the problem is, networkd (if the problem persists) or netplan (if it doesn't.09:37
cpaelzerwill retry with that in addition09:37
cpaelzerblackflow: even with that extended disabling it is not coming up managing the interfaces09:44
cpaelzerbut I agree that from the code the apply shouldn't du much more than restarting after laying out the files09:46
cpaelzerreading that section again09:46
cpaelzerit does a set of replug/rebinds09:47
blackflowI think at this point the problem is no more in netplan, but in networkd, if plain networkd config won't fix this.09:48
cpaelzerCould be a race09:48
cpaelzerlike devices completely there before it can handle events09:49
cpaelzerand "netplan apply" will replug devices09:49
cpaelzerwhich makes it realize "hey there is something"09:49
cpaelzerI'll try to isolat this replkug done by netplan09:49
blackflowbut if you disabled the netplan config, and the plain networkd config didn't work, then it's not neplan.09:49
cpaelzerand do it manually09:49
cpaelzerblackflow: I agree, yet I still want/need to debug further09:49
cpaelzerand finding what magic "netplan apply" does to fix it mgiht help to find the root cause09:50
blackflowthere's no magic there, the apply command code is pretty clear. it restarts the network after re-applying the generator which only re-creates the networkd config file09:56
blackflowso, what I'd try is run that sequence with netplan disabled (no config in /etc/netplan/). create an explicit networkd config (eg. copy the one netplan creates), reboot. If the network is not configured, restart systemd-networkd. If the network is not configured, I'd then look into the source of netplan's systemd generator.09:57
cpaelzerI already look in the apply source and this tries to confuse me I think09:59
cpaelzerthis clearly has no networkManager09:59
cpaelzerls: cannot access '/run/NetworkManager': No such file or directory10:00
cpaelzerpython3 -c 'import glob; print(bool(glob.glob("/run/NetworkManager/system-connections/netplan-*")))'10:00
cpaelzer    False10:00
cpaelzerbut10:00
cpaelzeron debug without anything in /etc/netplan/10:00
cpaelzeroh no10:00
cpaelzerforget the last 5 lines10:00
cpaelzerit says "no" NM configuration10:00
cpaelzerI was wondering if it was misdetecting10:00
blackflowyeah. It tries one or the other.10:01
cpaelzerand without a config it says no to both10:01
cpaelzerDEBUG:no netplan generated networkd configuration exists10:01
cpaelzerDEBUG:no netplan generated NM configuration exists10:01
cpaelzerbut10:01
cpaelzerthen it still does something10:01
cpaelzerreplugging the device10:01
cpaelzerDEBUG:replug enp0s3: unbinding virtio0 from /sys/bus/virtio/drivers/virtio_net10:01
cpaelzerDEBUG:replug enp0s3: rebinding virtio0 to /sys/bus/virtio/drivers/virtio_net10:01
cpaelzerwhich is odd10:01
cpaelzerand might be the trigger for networkd to handle it10:01
cpaelzerwill go on after lunch10:01
cpaelzerthanks already for the discussion blackflow10:01
blackflowI ran a test with a test server here, disabled netplan and had an explicit networkd config, the network didn't come up post boot.10:02
blackflowso there's some kind of mess going on there for sure. now I'm intrigued...10:02
cpaelzerreally10:02
cpaelzerinteresting10:02
* cpaelzer taking lunch10:02
blackflowbon appetit.10:03
blackflowJun  7 11:28:49 dev networkd-dispatcher[1746]: WARNING: systemd-networkd is not running, output will be incomplete.10:03
blackflowoh that's right. systemd-networkd.service is NOT enabled by default on bionic.10:04
blackflowstatus says "enabled-runtime". now I enabled it explicitly, and lets see what reboot does...10:04
blackflowcpaelzer: yup. That was it. systemd-networkd.service is NOT enabled by default in Bionic. netplan's generator starts it at runtime. By having an explicit networkd config (one in /etc/systemd/network/foo.network), and explicitly enabling systemd-networkd.service, it works fine without netplan.10:08
blackflowSo, to control that variable, I'd do the same for your case. If network works fine wihtout netplan that way, then you know where the problem is: in netplan, and posssibly a race as you suggested.10:09
blackflowDunno why netplan is doing it that way. Clearly systemd does not expect or want generators to mess with network config.10:10
blackflowhttps://github.com/systemd/systemd/issues/406610:11
blackflowyup, the generator does this:  https://github.com/CanonicalLtd/netplan/blob/master/src/networkd.c#L54110:15
blackflowSo uh... can we agree that netplan is unnecessary reinvention of the wheel that at the same time goes against systemd specification and causes more trouble than it fixes? :)   I can't help it, I _have_ to complain about it.10:17
cpaelzerblackflow: in my case systemd-networkd.service was default enabled10:57
cpaelzerbut thanks for cross checking your csae10:57
cpaelzerand I'm not going to stop you from complaining, free speech and all that :-)10:58
cpaelzerI like what it solves, and I like that it is completely optional - so you can ignore/avoid it if you want10:58
cpaelzerThat replug event is it11:05
cpaelzerI was able to confirm that this is what makes it work11:05
cpaelzerso it is both11:05
cpaelzernetworkd issue to ignore it and either networkd/netplans issue to somehow ensure this is working11:05
blackflowcpaelzer: minor detail, just to be 100% sure we're talking about the same thing, when you say systemd-networkd.service was enabled, was it "enabled-runtime" or just "enabled"?11:09
cpaelzerblackflow: it was just enabled11:10
cpaelzerlike11:10
cpaelzerloaded (/lib/systemd/system/systemd-networkd.service; enabled; vendor preset: enabled)11:10
cpaelzerand active (running)11:10
blackflowand with that, and no netplan config in /etc/netplan/, the network doesn't come up on boot, if you have explicit networkd confg in /etc/systemd/network/foo.network ?11:11
cpaelzerblackflow: exactly11:12
cpaelzerit seems it misses the event of the device appearing11:12
cpaelzerunbind/bind on the driver makes it work11:12
blackflowand it does if you restart systemd-networkd.service post boot?11:12
blackflowah I se11:12
blackflow*see11:12
cpaelzerIf I restart systemd-networkd.service nothing changes (It might reload the config, but has still no event)11:12
blackflowthen it probably isn't a netplan issue at all in this case.11:13
cpaelzeryeah, that is what I think11:13
cpaelzerfor me it seems to depend on the bus, I can trigger it with PCIe KVM guests but not with PCI11:14
cpaelzerI have reported bug 1775566 about it11:15
ubottubug 1775566 in systemd (Ubuntu) "networkd not applying config - missing events?" [Undecided,New] https://launchpad.net/bugs/177556611:15
cpaelzerxnox: is that what you would look into - or who would I most likely talk to? ^^11:15
blackflowcpaelzer: reading the bug report, which Ubuntu/systemd is this? I see the "renamed from eth0" message and afaik it's dropped from recent systemd (the one in bionic afaik)?11:22
blackflowah bionic.... weird...11:22
cpaelzeryep bionic11:22
blackflowmaybe I'm wrong about that message. I do recall reading about a systemd issue about it being spammy and thus removed or something.11:24
cpaelzermy networkd link files ahve rename rules11:25
cpaelzermaybe because of that11:26
cpaelzerbut then we just reaized my rules are ignored, so maybe not11:26
blackflowcpaelzer: hey, running these tests on my test server exposed a hardware fault (aftre several reboots), heh heh heh. Filing a hardware issue ticket with the hosting company.11:42
cpaelzeryay11:45
cpaelzerI think my case is a oversimplified virtual guest11:45
cpaelzerI'm adding proper busses now11:45
cpaelzernot sure how exactly that would cause it, but it could break some of the kernel events usually missing11:45
cpaelzerso I need to be sure11:45
blackflowcpaelzer: fwiw, I have a bionic installation in a qemu-kvm VM, with virtio, and this for network config only host-side: -net nic,model=virtio12:16
blackflowcpaelzer: and no problem in the guest.12:16
cpaelzerblackflow: so far I can only reproduce it with -M pc-q35-bionic but not with pc-i440fx-bionic12:22
cpaelzerI have asked apw to look from the kernel POV if there is anything different in terms of device events in that case12:22
apwoh machine type specific, and the differnece between those two is ...12:36
blackflow*drum roll*12:39
=== success is now known as Guest53657
blackflowAnyone knows how to figure out "predictable" NIC names? I'm installing Ubuntu via debootstrap on some servers, via Debian jessie, which is configured for eth* . I need to figure out what the NIC name will be.14:14
blackflowon one such instance I ran with net.ifnames=0 in order to boot into Bionic proper. But I still have no clue which one is it, looking at udevadm info /sys/class/net/eth0 .14:15
blackflow(and btw, yes, I've seen this    https://github.com/systemd/systemd/blob/master/src/udev/udev-builtin-net_id.c#L20    --   and I assumed it'd be enp3s0  (which is also ID_NET_NAME_PATH given by udevadm), but it apparently isn't...  )14:17
blackflowudevadm info as seen by Bionic  https://dpaste.de/Sbuo14:17
rbasakblackflow: one way to do that is to determine in advance what the MAC address will be, then arrange to either rename the NIC according to the MAC or use MAC-based naming14:18
blackflowID_NET_NAME_MAC=enx001e67ad6d8f   according to udevadm info, I suppose (and yes, that's the MAC of the NIC)14:19
blackflowbut uhh... no, no mac based names pls.   what I'd like to figure out is how to determine which of the several name schemes (see the dpaste above)  will be used?14:20
rbasakUse https://git.launchpad.net/ubuntu/+source/systemd/tree/src/udev/udev-builtin-net_id.c?h=applied/ubuntu/bionic-devel rather than upstream, since that will show you the actual code in use in Bionic, including patches.14:20
rbasak(the git importer is still experimental though that particular one should be current at least for now I think)14:20
blackflowrbasak: good idea, and I see it, but I still don't know which of all those rules will be chosen.14:21
blackflowI got eno1, enp3s0 and enx001e67ad6d8f as candidates.14:21
rbasakhttps://lists.ubuntu.com/archives/ubuntu-devel/2015-May/038761.html might have some information. I'm not sure if it's still current though.14:22
blackflowrbasak: oh one more thing, and I think that's where the problem is.... is systemd present in initramfs in Bionic?14:22
rbasakI'd expect initramfs to be pre-init, but I don't actually know.14:23
blackflowThe situation I have here is initramfs set up with Dropbear for remote unlocking of LUKS'ed ZFS root pool. with net.ifnames=0 in kernel cmdline, all is good, I rely on eth0. Without it, guessed enp3s0 is "unknown device".14:23
rbasakCan't dropbear listen on all interfaces? Or is it that you're trying to configure the interface first?14:24
blackflowrbasak: it's not just that. the default initramfs scripts require explicit config, NIC name included, even with DHCP.14:25
blackflowI _could_ whip up a custom initramfs, but eh...14:25
rbasakYour dropbear LUKS unlock isn't a custom initramfs? :)14:25
blackflowrbasak: it is on Gentoo (without systemd), not on Ubuntus.14:26
rbasakFWIW, I wrote https://github.com/basak/netkeyscript to solve this problem, but that relies on a trusted network14:26
blackflowincredibly, Ubuntu's initramfs supports encrypted root and dropbear just fine. :)  as long as ethX is used.14:26
rbasakLooks like it's hardcoded to eth014:26
rbasakI wanted to make it work on all interfaces but never got round to doing that14:27
blackflowrbasak: I got a solution that fetches the key over https using a self signed cert and its own (exclusive) CA but it's still in testing14:28
blackflowneway, I'm not sure where my current problem is actually... I am guessing there's systemd in initramfs and NIC renaming happens according to those rules, but expected enp3s0 is just not there.14:28
rbasakYou might have an issue with limited entropy there14:28
blackflowhow do you reckon, if eth0 works just fine?14:29
rbasakI wouldn't be surprised to learn that interface renaming only happens after pivot14:29
blackflowrbasak: ran some tests with a KVM VM here. ens3 (virtio net, it's very much predictable to be ens3). and it works.14:32
blackflowSo it appears to me that I simply expect the wrong name. enp3s0 ain't in (on the actual server).14:32
blackflowI am __really__ trying to give systemd a chance, but any attempt at doing so, I get spat in the face by it.......14:34
rbasakWhy not just use net.ifnames=0 if you know you'll only have one NIC?14:46
blackflowwell that's the thing, there will be more than one, and I wanted to "get with the program" and use systemd as it was designed... but I guess that's impossibru.14:48
rbasakWhat would you do without systemd?14:49
blackflowI'd enjoy my work much more :)14:49
blackflowrbasak: and if that was a serious question, I'd do some udev magick and bind eth devices with MACs so they don't randomly change.14:50
blackflowbut I know how to solve this, it's just that I'm really trying to do it the "systemd way" and not be a hater.14:50
rbasakYou can still do that I think.14:51
rbasakAdd a 70-persistent-net.rules with what you want14:52
blackflowif I'll be forced to go with ethX, then yeah.14:53
compdocIve been using the new nic naming for years now. no issues14:56
blackflowrbasak: it's eno1 .... wtf.14:58
blackflowcompdoc: yeah but how do you know in advance which name will it be? that's my problem.15:06
blackflowrbasak: the folks in #systemd have clarified what's going on. There's an order of names tried for the link NamePolicy, and onboard is before path, that's why eno1 (onboard) was chosen before enp3s0 (path), on this server.15:13
blackflowwhich also means it could be forced with a .link file.15:14
rbasakI see.15:15
rbasakUseful to know. Thank you for reporting back.15:15
blackflowyw15:15
naccrbasak: powersj: just to close the loop from #snappy; they recommend we switch git-ubuntu jenkins to use the snapcraft snap16:50
powersjI can do that16:53
powersjrbasak: objections?16:54
naccpowersj: he may want you to wait until we've figured out the issue we have now, just was an fyi for now16:57
powersjok16:57
rbasaknacc, powersj: yeah, let's wait until LP switches17:15
rbasakSince right now part of the issue is reproducibility, so I'd rather not get ahead of LP17:15
naccrbasak: ack17:16
cliluwDoes Canonical ever release backwards-incompatible versions into its official Ubuntu repos?18:43
cliluwacross the same Ubuntu version18:43
sarnoldI seem to recall a mysql update somewhere along the way that had some awkward changes18:45
sarnoldand when samba addressed some flaws in ancient SMB, we didn't do the usual backport just fixes but went with new versions, and that introduced new problems..18:46
rbasakcliluw: the policy is here: https://wiki.ubuntu.com/StableReleaseUpdates18:51
rbasakcliluw: with an exception for security issues.18:51
rbasakBasically we try not to do that, but sometimes we have no choice.18:51
=== beisner-sick is now known as beisner
smbsarnold, I am NOT old! :-P19:28
sarnoldsmb: my apologies :D19:29
nacccliluw: do you have a specific question in mind?19:30
sarnoldcliluw: oh! a debian advisory about memcached just reminded me that we released an update to disable listening to UDP by default https://people.canonical.com/~ubuntu-security/cve/2018/CVE-2018-1000115.html19:42
cliluwnacc: Just wondering if I should do `apt-get upgrade` or `unattended-upgrades`.19:51
sdezielcliluw: I'd recommend installing apt-listchanges if you have concerns or want to know more about what's about to be installed/upgraded19:52
sdezielcliluw: this will display you the update's changelog and allow you to abort/continue the upgrade after reading it19:53
nacccliluw: i mean,  you could do unattended-upgrades for just security updates, e.g., or some other setup19:57
DirtyCajunanyone with tgtd experience that can help me with tuning? my tgtd is using all 16 threads and causing serious iowait19:58
DirtyCajunmy tgtd instance is causing high io on a 16-core server. SSDs, 10Gbps nics and its seriously bottlenecking because of iowait... any thoughts?20:42
naccDirtyCajun: is it actively serving out targets/20:48
DirtyCajunYes20:49
DirtyCajuntargets are up and functioning20:49
DirtyCajuninitiators are connected and reading/writing20:50
DirtyCajun(connected to esxi host)20:50
naccDirtyCajun: i mean, is the load higher than you expect?20:50
DirtyCajuni mean... significantly... its a 16 core box and its pegged at 16 cores but no actual utilization20:50
DirtyCajunhttps://i.imgur.com/xJLnmjp.png20:51
DirtyCajunhttps://i.imgur.com/dIc4IfC.png20:52
naccDirtyCajun: have you read things like http://bencane.com/2012/08/troubleshooting-high-io-wait-in-linux/ ?20:54
DirtyCajunhaha yes20:55
DirtyCajunthis is explicitly with tgtadm/tgtd20:55
naccDirtyCajun: ... i mean you have 16 processes doing heavy IO20:55
naccDirtyCajun: not sure what you expect to see?20:56
DirtyCajunIt just doesnt make sense that the iscsi target default implementation would run >#cores threads20:56
DirtyCajunit SEEMS like its doing that much io because there are a crap ton > cores running simultaniously20:57
nacci mean, 16 is double20:59
naccnot exactly a 'crap ton' imo20:59
=== uplime is now known as nchambers
DirtyCajunthere were 47 threads running21:05
DirtyCajunand only 16 cores21:05
DirtyCajuni DID just find that each "Target" runs 16 threads21:05
DirtyCajunso im going to try changing it from 3 targets to 1 target and 3 backing stores21:05
DirtyCajunshould drop it down to 16+1 parent thread21:06
DirtyCajun(fingers crossed.)21:06
_KaszpiR_DirtyCajun what SSD?21:18
DirtyCajunMicron 2TB21:18
_KaszpiR_nvme?21:19
DirtyCajunno21:19
_KaszpiR_SATA3?21:19
DirtyCajunyes21:19
_KaszpiR_install dstat21:19
_KaszpiR_and then try dstat -tarsm21:19
_KaszpiR_also what's your sysctl -a|grep -i dirty21:21
DirtyCajunvm.dirty_background_bytes = 021:22
DirtyCajunvm.dirty_background_ratio = 1021:22
DirtyCajunvm.dirty_bytes = 021:22
DirtyCajunvm.dirty_expire_centisecs = 300021:22
DirtyCajunvm.dirty_ratio = 2021:22
DirtyCajunvm.dirty_writeback_centisecs = 50021:22
DirtyCajunvm.dirtytime_expire_seconds = 4320021:22
DirtyCajunbut i thought dirty_Bytes werent relevant if there is no filesystem on the host itself21:23
_KaszpiR_is that a single ssd deice?21:23
_KaszpiR_or some mdadm/raid lvm whatever?21:23
DirtyCajunI have 2 LUNS. One is a direct to single 1tb one is a Raid5 mdadm to 3x 2tb21:24
_KaszpiR_what about /sys/block/*/queue/nr_requests21:26
_KaszpiR_also you may try to increase max_sectors_kb  to match max_hw_sectors_kb21:26
DirtyCajunall at 12821:27
DirtyCajunthe most frustrating part of all this is its ONLY on read21:28
DirtyCajunerp21:28
DirtyCajunonly on write21:28
DirtyCajunread is blazing fast21:28
_KaszpiR_cause read is cached21:29
_KaszpiR_I'd rather read about those disks how they work21:29
DirtyCajuni mean... i moved 180GB in no time21:29
DirtyCajun(off not on obviously)21:29
DirtyCajunif moving to 1 tgt doesnt work i will21:30
DirtyCajungotta get everything off the tgt to local storage before i can tho21:30
_KaszpiR_also did you check how much iops you get there?21:30
DirtyCajunusing fio i hit 26.5K read ios21:30
DirtyCajuniops*21:30
DirtyCajunand 20k write21:30
_KaszpiR_that depends on the scenario21:31
_KaszpiR_random or req?21:31
DirtyCajunseq21:31
_KaszpiR_try random21:31
DirtyCajunrandom was like 450021:31
_KaszpiR_with file size 4G or more21:31
DirtyCajunyep. (i work at a datacenter with san storage)21:31
DirtyCajunso all that was my first tests haha21:31
_KaszpiR_ah21:31
DirtyCajunbut im using enterprise os's at work21:31
DirtyCajundell / hp / solidfire etc21:32
DirtyCajunso doesnt help at home haha21:32
_KaszpiR_what micron model is it?21:32
DirtyCajunMicron 1100 MTFDDAK2T0TBN-1AR1ZABYY21:32
DirtyCajunthe numbers are sexy on there.21:33
_KaszpiR_it's slower than 1T evo 85021:34
_KaszpiR_in raddom 4k r/w21:35
DirtyCajunwell yeah. but it was 14c/GB21:35
DirtyCajunso i cant complain for the price21:35
_KaszpiR_well, half o the price for 860 pro ;D21:35
_KaszpiR_exackly21:35
nicolas17my laptop had a 24GB SanDisk SSD >.>21:36
_KaszpiR_also make sure ssd device is not overheating over 75C21:40
_KaszpiR_or 70C, they start to crawl21:40
nicolas17I wonder at what temperature they start to lose data21:41
_KaszpiR_DirtyCajun another thought, lower number of threads for tgtd21:45
DirtyCajunSo it looks like it makes NUM threads == total host threads per target21:45
DirtyCajunThats why im moving everything off and going to 1 target. if that fixes it thats fine21:46
DirtyCajunok. so update22:23
DirtyCajunWith it on 1 target its still running 16xNUM LUNS +1 Parent (33)22:23
DirtyCajunbut it seems to be managing the connections better22:23
DirtyCajunonly issue is when i move a VM from lun1 to lun222:23
DirtyCajunit presents the initial symtoms22:23

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!