search for: 123,000

Displaying 8 results from an estimated 8 matches for "123,000".

Did you mean: 12,000
2017 Nov 27
4
ls performance on directories with small number of items
Hi, I have a situation where an apache web server is trying to locate the IndexDocument for a directory on a gluster volume. This URL is being hit roughly 20 times per second. There is only 1 file in this directory. However, the parent directory does have a large number of items (+123,000 files and dirs) and we are performing operations to move these files into 2 levels of subdirs. We are seeing very slow response times (around 8 seconds) in apache and also when trying to ls on this dir. Before we started the migrations to move files on the large parent dir into 2 sub levels,...
2017 Nov 29
0
ls performance on directories with small number of items
...directory entry. That's a lot of tiny network round trips with fops that don't even fill a standard frame thus each frame has a high percentage of overhead for tcp. Add to that the replica check to ensure you're not getting stale data and you have another round trip for each file. Your 123k directory entries require several frames of getdirent and over 492k frames for the individual fstat calls. That's roughly 16us per frame. Can you eliminate the fstat calls? If you only get the directory listing that should be significantly better. To prove this, do "echo *". You wil...
2017 Nov 27
0
ls performance on directories with small number of items
...gt; I have a situation where an apache web server is trying to locate the IndexDocument for a directory on a gluster volume. This URL is being hit roughly 20 times per second. There is only 1 file in this directory. However, the parent directory does have a large number of items (+123,000 files and dirs) and we are performing operations to move these files into 2 levels of subdirs. > > We are seeing very slow response times (around 8 seconds) in apache and also when trying to ls on this dir. Before we started the migrations to move files on the large parent dir into 2 s...
2009 Apr 22
4
Problem with "apply"
Hi R users, I am trying to assign ages to age classes for a large data set (123,000 records), and using a for-loop was too slow, so I wrote a function and used apply. However, the function does not properly assign the first two classes (the rest are fine). It appears that when age is one digit, it does not get assigned properly. I tried to provide a small-scale work-up (a...
2017 Nov 27
1
ls performance on directories with small number of items
...I have a situation where an apache web server is >trying to locate the IndexDocument for a directory on a gluster volume. >This URL is being hit roughly 20 times per second. There is only 1 >file in this directory. However, the parent directory does have a >large number of items (+123,000 files and dirs) and we are performing >operations to move these files into 2 levels of subdirs. >> >> We are seeing very slow response times (around 8 seconds) in apache >and also when trying to ls on this dir. Before we started the >migrations to move files on the large...
2016 Jun 30
0
[CENTOS ]IPTABLES - How Secure & Best Practice
...eries per day, it makes sense to order your rules to accept the DNS queries first, followed by http traffic, and to accept the smtp traffic last. This ordering would cause 111,000 packets to be evaluated by the first rule, 11,000 by the second rule and 1,000 by the third rule giving a total of 123,000 times a packet was inspected by a rule. If we reversed the order we would see 111,000 for our first rule, 110,000 for our second rule and 100,000 for our third rule, giving a total of 321,000 examinations which is 2.6 times more than our first example. Don't forget it's only the ini...
2005 Nov 20
2
ZFS & small files
...: 0 0 60 1008956 293008 46 103 0 0 0 0 0 10 0 0 0 388 78533 693 5 57 38 2 0 60 1007580 291456 0 1 0 0 0 0 0 38 0 0 0 431 121582 1011 7 93 0 0 0 60 1006408 290284 0 0 0 0 0 0 0 42 0 0 0 416 122132 1014 7 93 0 0 0 60 1004684 288560 0 0 0 0 0 0 0 30 0 0 0 404 123167 978 7 93 0 0 0 60 1002192 286072 0 0 0 0 0 0 0 28 0 0 0 404 123590 927 7 93 0 0 0 60 998072 281952 0 0 0 0 0 0 0 11 0 0 0 385 123647 875 7 93 0 0 0 60 990592 274468 0 0 0 0 0 0 0 27 0 0 0 401 122342 908 7 93 0 0 0 60 982244 266120 0 0 0 0 0 0 0 30...
2016 Jun 30
2
[CENTOS ]IPTABLES - How Secure & Best Practice
On Wed, Jun 29, 2016 at 1:49 PM, Gordon Messmer <gordon.messmer at gmail.com> wrote: > > By putting these rules first, before the "ESTABLISHED,RELATED" rule, you're > applying additional processing (CPU time) to the vast majority of your > packets for no reason. The "E,R" rule should be first. It won't match the > invalid packets you're trying