summaryrefslogtreecommitdiffstats
path: root/glusterfs-hadoop/0.20.2/src/main/java/org/apache/hadoop/fs/glusterfs/GlusterFileSystem.java
blob: b0501cced27432a35555c50e02575fa804375717 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
/**
 *
 * Copyright (c) 2011 Gluster, Inc. <http://www.gluster.com>
 * This file is part of GlusterFS.
 *
 * Licensed under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied. See the License for the specific language governing
 * permissions and limitations under the License.
 *
 */

/**
 * Implements the Hadoop FileSystem Interface to allow applications to store
 * files on GlusterFS and run Map/Reduce jobs on the data.
 */

package org.apache.hadoop.fs.glusterfs;

import java.io.*;
import java.net.*;

import java.util.regex.*;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FSDataInputStream;
import org.apache.hadoop.fs.FSDataOutputStream;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.FileStatus;
import org.apache.hadoop.fs.FileUtil;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.fs.BlockLocation;
import org.apache.hadoop.fs.permission.FsPermission;
import org.apache.hadoop.util.Progressable;

import java.util.TreeMap;

/*
 * This package provides interface for hadoop jobs (incl. Map/Reduce)
 * to access files in GlusterFS backed file system via FUSE mount
 */
public class GlusterFileSystem extends FileSystem {

        private FileSystem glusterFs    = null;
        private URI        uri          = null;
        private Path       workingDir   = null;
        private String     glusterMount = null;
        private boolean    mounted      = false;

        /* for quick IO */
        private boolean quickSlaveIO = false;

        /* extended attribute class */
        private GlusterFSXattr xattr = null;

        /* hostname of this machine */
        private static String hostname;

        public GlusterFileSystem () {

        }

        public URI getUri () {
                return uri;
        }

        public boolean FUSEMount (String volname, String server, String mount)
                throws IOException, InterruptedException  {
                boolean        ret      = true;
                int            retVal   = 0;
                Process        p        = null;
                String         s        = null;
                String         mountCmd = null;

                mountCmd = "mount -t glusterfs " + server + ":" + "/" + volname + " " + mount;

                try {
                        p = Runtime.getRuntime().exec(mountCmd);

                        retVal = p.waitFor();
                        if (retVal != 0)
                                ret = false;

                } catch (IOException e) {
                        System.out.println ("Problem mounting FUSE mount on: " + mount);
                        e.printStackTrace();
                        System.exit(-1);
                }

                return ret;
        }

        public void initialize (URI uri, Configuration conf) throws IOException {
                boolean ret             = false;
                String  volName         = null;
                String  remoteGFSServer = null;
                String  needQuickRead   = null;

                if (this.mounted)
                        return;

                System.out.println("Initializing GlusterFS");

                try {
                        volName = conf.get("fs.glusterfs.volname", "");
                        glusterMount = conf.get("fs.glusterfs.mount", "");
                        remoteGFSServer = conf.get("fs.glusterfs.server", "");
                        needQuickRead = conf.get("quick.slave.io", "");

                        /*
                         * bail out if we do not have enough information to do a FUSE
                         * mount
                         */
                        if ( (volName.length() == 0) || (remoteGFSServer.length() == 0) ||
                             (glusterMount.length() == 0) )
                                System.exit (-1);

                        ret = FUSEMount(volName, remoteGFSServer, glusterMount);
                        if (!ret) {
                                System.out.println("Failed to initialize GlusterFS");
                                System.exit(-1);
                        }

                        if ((needQuickRead.length() != 0)
                            && (needQuickRead.equalsIgnoreCase("yes")
                                || needQuickRead.equalsIgnoreCase("on")
                                || needQuickRead.equals("1")))
                                this.quickSlaveIO = true;

                        this.mounted = true;
                        this.glusterFs = FileSystem.getLocal(conf);
                        this.workingDir = new Path(glusterMount);
                        this.uri = URI.create(uri.getScheme() + "://" + uri.getAuthority());

                        this.xattr = new GlusterFSXattr();

                        InetAddress addr = InetAddress.getLocalHost();
                        this.hostname = addr.getHostName();

                        setConf(conf);

                } catch (Exception e) {
                        e.printStackTrace();
                        System.out.println("Unable to initialize GlusterFS");
                        System.exit(-1);
                }
        }

        @Deprecated
        public String getName () {
                return getUri().toString();
        }

        public Path getWorkingDirectory () {
                return this.workingDir;
        }

        public Path getHomeDirectory () {
                return this.workingDir;
        }

        public Path makeAbsolute (Path path) {
                String pth = path.toUri().getPath();
                if (pth.startsWith(workingDir.toUri().getPath())) {
                        return path;
                }

                return new Path(workingDir + "/" + pth);
        }

        public void setWorkingDirectory (Path dir) {
                this.workingDir = makeAbsolute(dir);
        }

        public boolean exists (Path path) throws IOException {
                Path absolute = makeAbsolute(path);
                File f = new File(absolute.toUri().getPath());

                return f.exists();
        }

        public boolean mkdirs (Path path, FsPermission permission
                               ) throws IOException {
                boolean created  = false;
                Path    absolute = makeAbsolute(path);
                File    f        = new File(absolute.toUri().getPath());

                if (f.exists()) {
                        System.out.println("Directory " + f.getPath() + " already exist");
                        return true;
                }

                return f.mkdirs();
        }

        @Deprecated
        public boolean isDirectory (Path path) throws IOException {
                Path absolute = makeAbsolute(path);
                File f = new File(absolute.toUri().getPath());

                return f.isDirectory();
        }

        public boolean isFile (Path path) throws IOException {
                return !isDirectory(path);
        }

        public Path[] listPaths (Path path) throws IOException {
                Path   absolute   = makeAbsolute(path);
                File   f          = new File (absolute.toUri().getPath());
                String relPath    = path.toUri().getPath();
                String[] fileList = null;
                Path[] filePath   = null;
                int    fileCnt    = 0;

                fileList = f.list();

                filePath = new Path[fileList.length];

                for (; fileCnt < fileList.length; fileCnt++) {
                        filePath[fileCnt] = new Path(relPath + "/" + fileList[fileCnt]);
                }

                return filePath;
        }

        public FileStatus[] listStatus (Path path) throws IOException {
                int    fileCnt          = 0;
                Path   absolute         = makeAbsolute(path);
                String relpath          = path.toUri().getPath();
                String[] strFileList    = null;
                FileStatus[] fileStatus = null;
                File   f                = new File(absolute.toUri().getPath());

                if (!f.exists()) {
                        return null;
                }

                if (f.isFile())
                        return new FileStatus[] {
                                getFileStatus(path)
                        };

                if (relpath.charAt(relpath.length() - 1) != '/')
                        relpath += "/";

                strFileList = f.list();

                fileStatus = new FileStatus[strFileList.length];

                for (; fileCnt < strFileList.length; fileCnt++) {
                        fileStatus[fileCnt] = getFileStatusFromFileString(relpath + strFileList[fileCnt]);
                }

                return fileStatus;
        }

        public FileStatus getFileStatusFromFileString (String path)
                throws IOException {
                Path nPath = new Path(path);
                return getFileStatus(nPath);
        }

        public FileStatus getFileStatus (Path path) throws IOException {
                Path absolute = makeAbsolute(path);
                File f = new File(absolute.toUri().getPath());

                if (!f.exists ())
                        throw new FileNotFoundException("File " + f.getPath() + " does not exist.");

                if (f.isDirectory ())
                        return new FileStatus(0, true, 1, 0, f.lastModified(), path.makeQualified(this));
                else
                        return new FileStatus(f.length(), false, 0, getDefaultBlockSize(),
                                              f.lastModified(), path.makeQualified(this));

        }

        /*
         * creates a new file in glusterfs namespace. internally the file
         * descriptor is an instance of OutputStream class.
         */
        public FSDataOutputStream create (Path path, FsPermission permission,
                                          boolean overwrite, int bufferSize,
                                          short replication, long blockSize,
                                          Progressable progress)
        throws IOException {
                Path               absolute          = makeAbsolute(path);
                Path               parent            = null;
                File               f                 = null;
                File               fParent           = null;
                FSDataOutputStream glusterFileStream = null;

                f = new File(absolute.toUri().getPath());

                if (f.exists ()) {
                        if (overwrite)
                                f.delete ();
                        else
                                throw new IOException(f.getPath() + " already exist");
                }

                parent = path.getParent();
                fParent = new File ((makeAbsolute(parent)).toUri().getPath());
                if ((parent != null) && (fParent != null) && (!fParent.exists()))
                        if (!fParent.mkdirs())
                                throw new IOException("cannot create parent directory: " + fParent.getPath());

                glusterFileStream = new FSDataOutputStream(new GlusterFUSEOutputStream
                                                           (f.getPath(), false));

                return glusterFileStream;
        }

        /*
         * open the file in read mode (internally the file descriptor is an
         * instance of InputStream class).
         *
         * if quick read mode is set then read the file by by-passing FUSE
         * if we are on same slave where the file exist
         */
        public FSDataInputStream open (Path path) throws IOException {
                Path              absolute          = makeAbsolute(path);
                File              f                 = new File(absolute.toUri().getPath());
                FSDataInputStream glusterFileStream = null;
                TreeMap<Integer, GlusterFSBrickClass> hnts = null;

                if (!f.exists())
                        throw new IOException("File " + f.getPath() + " does not exist.");

                if (quickSlaveIO)
                        hnts = xattr.quickIOPossible(f.getPath(), 0, f.length());

                glusterFileStream = new FSDataInputStream(new GlusterFUSEInputStream(f, hnts, hostname));
                return glusterFileStream;
        }

        public FSDataInputStream open (Path path, int bufferSize) throws IOException {
                return open(path);
        }

        public FSDataOutputStream append (Path f, int bufferSize, Progressable progress)
                throws IOException {
                throw new IOException ("append not supported (as yet).");
        }

        public boolean rename (Path src, Path dst) throws IOException {
                Path absoluteSrc = makeAbsolute(src);
                Path absoluteDst = makeAbsolute(dst);

                File fSrc = new File(absoluteSrc.toUri().getPath());
                File fDst = new File(absoluteDst.toUri().getPath());

                if (fDst.isDirectory()) {
                        fDst = null;
                        String newPath = absoluteDst.toUri().getPath() + "/" + fSrc.getName();
                        fDst = new File(newPath);
                }
                return fSrc.renameTo(fDst);
        }

        @Deprecated
        public boolean delete (Path path) throws IOException {
                return delete(path, true);
        }

        public boolean delete (Path path, boolean recursive) throws IOException {
                Path absolute = makeAbsolute(path);
                File f = new File(absolute.toUri().getPath());

                if (f.isFile())
                        return f.delete();

                FileStatus[] dirEntries = listStatus(absolute);
                if ((!recursive) && (dirEntries != null) && (dirEntries.length != 0))
                        throw new IOException ("Directory " + path.toString() + " is not empty");

                if (dirEntries != null)
                        for (int i = 0; i < dirEntries.length; i++)
                                delete(new Path(absolute, dirEntries[i].getPath()), recursive);

                return f.delete();
        }

        @Deprecated
        public long getLength (Path path) throws IOException {
                Path absolute = makeAbsolute(path);
                File f = new File(absolute.toUri().getPath());

                if (!f.exists())
                        throw new IOException(f.getPath() + " does not exist.");

                return f.length();
        }

        @Deprecated
        public short getReplication (Path path) throws IOException {
                Path absolute = makeAbsolute(path);
                File f = new File(absolute.toUri().getPath());

                if (!f.exists())
                        throw new IOException(f.getPath() + " does not exist.");

                return xattr.getReplication(f.getPath());
        }

        public short getDefaultReplication (Path path) throws IOException {
                return getReplication(path);
        }

        public boolean setReplication (Path path, short replication)
                throws IOException {
                return true;
        }

        public long getBlockSize (Path path) throws IOException {
                long blkSz;
                Path absolute = makeAbsolute(path);
                File f = new File(absolute.toUri().getPath());

                blkSz = xattr.getBlockSize(f.getPath());
                if (blkSz == 0)
                        blkSz = getLength(path);

                return blkSz;
        }

        public long getDefaultBlockSize () {
                return 1 << 26; /* default's from hdfs, kfs */
        }

        @Deprecated
        public void lock (Path path, boolean shared) throws IOException {
        }

        @Deprecated
        public void release (Path path) throws IOException {
        }

        public BlockLocation[] getFileBlockLocations (FileStatus file, long start, long len)
                throws IOException {

                Path absolute          = makeAbsolute(file.getPath());
                File f                 = new File(absolute.toUri().getPath());
                BlockLocation[] result = null;

                if (file == null)
                        return null;

                result = xattr.getPathInfo(f.getPath(), start, len);
                if (result == null) {
                        System.out.println("Problem getting destination host for file "
                                           + f.getPath());
                        return null;
                }

                return result;
        }

        // getFileBlockLocations (FileStatus, long, long) is called by hadoop
        public BlockLocation[] getFileBlockLocations (Path p, long start, long len)
                throws IOException {
                return null;
        }

        public void copyFromLocalFile (boolean delSrc, Path src, Path dst)
                throws IOException {
                FileUtil.copy(glusterFs, src, this, dst, delSrc, getConf());
        }

        public void copyToLocalFile (boolean delSrc, Path src, Path dst)
                throws IOException {
                FileUtil.copy(this, src, glusterFs, dst, delSrc, getConf());
        }

        public Path startLocalOutput (Path fsOutputFile, Path tmpLocalFile)
                throws IOException {
                return tmpLocalFile;
        }

        public void completeLocalOutput (Path fsOutputFile, Path tmpLocalFile)
                throws IOException {
                moveFromLocalFile(tmpLocalFile, fsOutputFile);
        }
}