summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--INFO4
-rw-r--r--community-scripts/parallel_read/pllread.sh5
2 files changed, 8 insertions, 1 deletions
diff --git a/INFO b/INFO
index a5530f1..350a26d 100644
--- a/INFO
+++ b/INFO
@@ -15,6 +15,8 @@ community-scripts/rename/atomic ---> Bug 1034 - rename() is not atomic
community-scripts/locks/locky.sh --->Configuration on the command line and (serious) locking problems
community-scripts/locks/lock.php ---> Bug 1017 - Locking deadlock when upgrading lock
===============================================
+community-scripts/parallel_read --> Bug 3011 (ticket #3815) Parallel read
+===============================================
c_pgms/locking ---> programs (both for file as well as directory) for doing open, lock (fcntl and flock), write, close on an fd multiple times to check for a leak in some memory type of the glusterfs process. (bug number 3025)
@@ -30,4 +32,4 @@ c_pgms/trucate ---> programs which truncates a file based on both path as well a
legacy/performance ---> legacy scripts (not currently in use) for getting performance statistics
============================================================================================================================================
python_pgms/cloud-on-fly ---> cloud seed programs which is used for testing glusterfs of versions < 3.1.x
-============================================================================================================================================ \ No newline at end of file
+============================================================================================================================================
diff --git a/community-scripts/parallel_read/pllread.sh b/community-scripts/parallel_read/pllread.sh
new file mode 100644
index 0000000..02c8d36
--- /dev/null
+++ b/community-scripts/parallel_read/pllread.sh
@@ -0,0 +1,5 @@
+URL="Enter the complete url here";
+for i in {1..1000};
+do
+echo $URL
+done | xargs -L1 -P50 wget -O /dev/null