diff options
author | Amar Tumballi <amar@gluster.com> | 2010-09-02 07:27:18 +0000 |
---|---|---|
committer | Vijay Bellur <vijay@dev.gluster.com> | 2010-09-02 06:31:56 -0700 |
commit | 06ef40a683393ee086a74fb56a6e168b550fd716 (patch) | |
tree | 1c8afc58feaf144e68fa49885185b6e8652b1277 /xlators/mgmt | |
parent | fed472201fdf17ef57ea9b823b9215a0b3f558ec (diff) |
mgmt/glusterd: fix rebalance with new option use-readdirp
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 1508 (add-brick works but files are not distributed to newly added server)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1508
Diffstat (limited to 'xlators/mgmt')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-handler.c | 59 |
1 files changed, 40 insertions, 19 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-handler.c b/xlators/mgmt/glusterd/src/glusterd-handler.c index 601546ba6..9829c1be9 100644 --- a/xlators/mgmt/glusterd/src/glusterd-handler.c +++ b/xlators/mgmt/glusterd/src/glusterd-handler.c @@ -636,12 +636,12 @@ glusterd_check_and_rebalance (glusterd_volinfo_t *volinfo, char *dir) if (!defrag) goto out; + + /* Fix files at this level */ fd = opendir (dir); if (!fd) goto out; - - do { - entry = readdir (fd); + while ((entry = readdir (fd))) { if (!entry) break; @@ -655,13 +655,10 @@ glusterd_check_and_rebalance (glusterd_volinfo_t *volinfo, char *dir) continue; if (S_ISDIR (stbuf.st_mode)) { - //getfattr -n trusted.distribute.fix.layout "$path" ; + /* Fix the layout of the directory */ getxattr (full_path, "trusted.distribute.fix.layout", &value, 128); - - /* add some delay */ - usleep (500); - ret = glusterd_check_and_rebalance (volinfo, full_path); + continue; } if (S_ISREG (stbuf.st_mode) && ((stbuf.st_mode & 01000) == 01000)) { /* TODO: run the defrag */ @@ -708,23 +705,46 @@ glusterd_check_and_rebalance (glusterd_volinfo_t *volinfo, char *dir) } UNLOCK (&defrag->lock); } + } else { + LOCK (&defrag->lock); + { + if (S_ISREG (stbuf.st_mode)) + defrag->num_files_lookedup += 1; + } + UNLOCK (&defrag->lock); } - ret = 0; - LOCK (&defrag->lock); - { - if (S_ISREG (stbuf.st_mode)) - defrag->num_files_lookedup += 1; - if (volinfo->defrag_status == GF_DEFRAG_STATUS_STOPED) - ret = 1; + if (volinfo->defrag_status == GF_DEFRAG_STATUS_STOPED) { + closedir (fd); + goto out; } - UNLOCK (&defrag->lock); - if (ret) + } + closedir (fd); + + /* Iterate over directories */ + fd = opendir (dir); + if (!fd) + goto out; + while ((entry = readdir (fd))) { + if (!entry) break; - /* Write the full 'glusterfs-defrag' here */ + if (!strcmp (entry->d_name, ".") || !strcmp (entry->d_name, "..")) + continue; + + snprintf (full_path, 1024, "%s/%s", dir, entry->d_name); + + ret = stat (full_path, &stbuf); + if (ret == -1) + continue; - } while (1); + if (S_ISDIR (stbuf.st_mode)) { + /* iterate in subdirectories */ + ret = glusterd_check_and_rebalance (volinfo, full_path); + if (ret) + break; + } + } closedir (fd); @@ -918,6 +938,7 @@ glusterd_handle_defrag_volume (rpcsvc_request_t *req) snprintf (cmd_str, 4096, "%s/sbin/glusterfs -s localhost " "--volfile-id %s --volume-name %s-quick-read " "--xlator-option *dht.unhashed-sticky-bit=yes " + "--xlator-option *dht.use-readdirp=yes " "--xlator-option *dht.lookup-unhashed=yes %s", GFS_PREFIX, cli_req.volname, cli_req.volname, defrag->mount); |