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

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

References #304: Implement HDFS external file support

Changes to build script to make it compatible with the new extension system in BASE 3.

  • 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.0-dev</version>
10    <min-base-version>3.0.0</min-base-version>
11    <copyright>BASE development team</copyright>
12    <email>basedb-users@lists.sourceforge.net</email>
13    <url>http://baseplugins.thep.lu.se/wiki/net.sf.basedb.hdfs</url>
14  </about>
15  <extension
16    id="net.sf.basedb.hdfs.connection-manager"
17    extends="net.sf.basedb.core.uri.connection-manager"
18    >
19    <index>10</index>
20    <about>
21      <name>HDFS connection manager</name>
22      <description>
23        Provides support for direct connection to a Hadoop Distributed
24        File System (HDFS). The 'host:port' part of the URI should point to
25        the namenode of the Hadoop cluster (default port is 9000). The remainder
26        of the URI is the path of the file on the file system. There is currently
27        no support for user authentication.
28      </description>
29    </about>
30    <action-factory>
31      <factory-class>net.sf.basedb.hdfs.HdfsConnectionManagerActionFactory</factory-class>
32    </action-factory>
33  </extension>
34</extensions>
Note: See TracBrowser for help on using the repository browser.