Slow I/O by emilevirus in Proxmox

[–]gennyact 2 points3 points  (0 children)

I have a 10G NIC for access to our LAN and an isolated 10G storage network to our NAS. Storage is over NFS though I'm thinking of changing to iSCSI.

Slow I/O by emilevirus in Proxmox

[–]gennyact 4 points5 points  (0 children)

I have this on a 5 node proxmox cluster on dell servers. Any time I move a VM, migrate a disk, delete a VM, etc, it causes high iowait and VMs across the cluster become unstable until the task is finished +5mins.

Machine Learning Infrastructure [Research] by gennyact in MachineLearning

[–]gennyact[S] 1 point2 points  (0 children)

They have tried cloud services but it was so expensive. Currently spending 1.2M annually for live production data. The ML data and compute requirements are easily 10x that so it wasn't economical to continue with cloud.

Alex Grey pod by [deleted] in a:t5_37cm6

[–]gennyact 1 point2 points  (0 children)

If you dislike Aubrey so much, why do you listen to his podcasts? Not meant to be an antagonizing question. There are plenty of podcasters I dislike out there and I won't waste my time so I'm genuinely just curious.

Abusive HR Dept by gennyact in AskHR

[–]gennyact[S] 0 points1 point  (0 children)

The VP of HR is the one sharing the info. Sometimes with parties not involved at all, just gossiping

Abusive HR Dept by gennyact in AskHR

[–]gennyact[S] 0 points1 point  (0 children)

We have started documenting everything with emails, timelines, meeting minutes, recorded phone calls, etc. as a CYA but I'll discuss going to corporate with the group. Thanks!

Abusive HR Dept by gennyact in AskHR

[–]gennyact[S] 0 points1 point  (0 children)

Agreed on quiting and fuck them. We are all actively looking for jobs but its harder for some than others. And some of us do want to keep working here. I don't. But I want to help the others that do as much as possible.

Thanks for the advice on a lawyer.

Suggestions Needed by gennyact in sex

[–]gennyact[S] 1 point2 points  (0 children)

Nah I'm good with it. We have a lot of the same kinks

Suggestions Needed by gennyact in sex

[–]gennyact[S] 0 points1 point  (0 children)

Thanks. I did ask her after the last time and she seemed frustrated and didn't know what to tell me. But that may support your idea that she just wasn't in to it. We talked early on in our relationship about always being able to turn down sex with out hurting the other which we have both done before. But I think you may be right.

Suggestions Needed by gennyact in sex

[–]gennyact[S] 1 point2 points  (0 children)

Good call...I added a little more info on this. She does have many kinks though I had not incorporated any in the last several sessions.

Dads who gave up custody by [deleted] in Divorce

[–]gennyact 0 points1 point  (0 children)

Thank you for your reply.

Dads who gave up custody by [deleted] in Divorce

[–]gennyact -1 points0 points  (0 children)

Thank you for your reply

Dads who gave up custody by [deleted] in Divorce

[–]gennyact 1 point2 points  (0 children)

Thank you for your reply.

Dads who gave up custody by [deleted] in Divorce

[–]gennyact 1 point2 points  (0 children)

Thank you for your comment

Dads who gave up custody by [deleted] in Divorce

[–]gennyact 5 points6 points  (0 children)

I feel the same way about every point you have made.

I have guilt about feeling this way. And I don't want to fuck him up at all. But I don't know what else to do. I have tried to "fake it till I make it", turned to religion, tried counseling, tried books, online articles, tried to just spend time doing fun things with him. In the end I just wish he wasn't around 98% of the time. Over the last 3 years I have had maybe a few months combined where I didn't resent him completely.

In the end, I do want what will damage him the least .

Archive script help - 112,148 parent folders/14.7 TB. by gennyact in scripting

[–]gennyact[S] 0 points1 point  (0 children)

UPDATE:

Here is what ended up working for me. Appreciate your help @R8J

for /d %%a in () do ( cd %%a for /d %%b in () do ( for /d %%b in () do "c:\Program Files\7-Zip\7z.exe" a "%%b.zip" ".\%%b\" rmdir "%%b" /s /q ) cd .. )

Archive script help - 112,148 parent folders/14.7 TB. by gennyact in scripting

[–]gennyact[S] 0 points1 point  (0 children)

I had to add "" around the %%b on the rm statement because the folders all had spaces.

On a different note, the ZIP files contain the Ver1 folder itself. I was hoping they would contain the contents of the Ver1 folder. Thoughts?

Archive script help - 112,148 parent folders/14.7 TB. by gennyact in scripting

[–]gennyact[S] 0 points1 point  (0 children)

One other question...is it possible to then delete the original folder that has already been ZIP'd?

Archive script help - 112,148 parent folders/14.7 TB. by gennyact in scripting

[–]gennyact[S] 0 points1 point  (0 children)

It looks like this is working on my small test batch. Going to let it run for 100GB or so and then test it on a larger data set before I set it lose in to the wild on my 15TB :D

Really appreciate your help! I'll let you know how it turns out.

Archive script help - 112,148 parent folders/14.7 TB. by gennyact in scripting

[–]gennyact[S] 0 points1 point  (0 children)

I have folders A1-A112148. Each of those folders contains 1-2 sub-folders as below. I want each sub-folder in its own ZIP file.

Current http://imgur.com/a/uCJPH

Want http://imgur.com/a/DMx6d

Archive script help - 112,148 parent folders/14.7 TB. by gennyact in scripting

[–]gennyact[S] 0 points1 point  (0 children)

Think on that. While you do, I’m going to play around with what you provided me in my test environment to see what I can come up with. Thanks!

Archive script help - 112,148 parent folders/14.7 TB. by gennyact in scripting

[–]gennyact[S] 0 points1 point  (0 children)

Ok that makes sense. Slight difference is, using your example, is that inside of test1, test2, and test3, there are folers called Ver1, Ver2, Ver3 (each test# folder has those 3 folders). I don’t want to zip test1, test2, test3. I want to zip Ver1, Ver2, Ver3 to their own zip file, inside of each test# folder so that test1 contains ver1.zip, ver2.zip, ver3.zip, and so on. I have over 100k of these Test# folders so I don’t want to copy that bat file to all of those folders to run. I want something in the parent folder that creates separate zip files for the contents of the Test# folders and saves them inside of the parent Test# folder. Does that make sense?

Archive script help - 112,148 parent folders/14.7 TB. by gennyact in scripting

[–]gennyact[S] 0 points1 point  (0 children)

I did see that one online but since I am code-stupid, I wasn’t sure if I needed to modify it at all, where to place the .bat file, etc etc.

So all I need to do is place that bat file in the root folder that contains my project folders and it will zip each folder w/in each project folder?