source: extensions/net.sf.basedb.hdfs/trunk/META-INF/extensions.xml @ 1330

Last change on this file since 1330 was 1330, checked in by Nicklas Nordborg, 12 years ago

Initial checkin of HDFS extension.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Id
File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<extensions xmlns="http://base.thep.lu.se/extensions.xsd">
3  <about>
4    <name>HDFS support package</name>
5    <description>
6      A package that enabled support for external files
7      on HDFS file system.
8    </description>
9    <version>1.0pre</version>
10    <copyright>BASE development team</copyright>
11    <email>basedb-users@lists.sourceforge.net</email>
12    <url>http://baseplugins.thep.lu.se/wiki/net.sf.basedb.hdfs</url>
13  </about>
14  <extension
15    id="net.sf.basedb.hdfs.connection-manager"
16    extends="net.sf.basedb.core.uri.connection-manager"
17    >
18    <index>10</index>
19    <about>
20      <name>HDFS connection manager</name>
21      <description>
22        Provides support for direct connection to a Hadoop Distributed
23        File System (HDFS). The 'host:port' part of the URI should point to
24        the namenode of the Hadoop cluster (default port is 9000). The remainder
25        of the URI is the path of the file on the file system. There is currently
26        no support for user authentication.
27      </description>
28    </about>
29    <action-factory>
30      <factory-class>net.sf.basedb.hdfs.HdfsConnectionManagerActionFactory</factory-class>
31    </action-factory>
32  </extension>
33</extensions>
Note: See TracBrowser for help on using the repository browser.