Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<beans xmlns="http://www.springframework.org/schema/beans"
3
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
4
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
5

    
6
	<bean id="configurationEnumerator" class="eu.dnetlib.data.hadoop.config.ConfigurationEnumerator" />
7

    
8
	<bean id="DM" class="eu.dnetlib.data.hadoop.config.ConfigurationFactory"
9
	      p:defaults="${services.data.hadoop.dm.properties}" />
10

    
11
	<bean id="GARR" class="eu.dnetlib.data.hadoop.config.ConfigurationFactory"
12
		  p:defaults="${services.data.hadoop.garr.properties}" />
13

    
14
	<bean id="IIS" class="eu.dnetlib.data.hadoop.config.ConfigurationFactory"
15
	      p:defaults="${services.data.hadoop.iis.properties}" />
16

    
17
	<bean id="sequenceFileWriterFactory"
18
	      class="eu.dnetlib.data.hadoop.hdfs.SequenceFileWriterFactory"
19
	      scope="prototype" p:keyClass="${services.data.hadoop.hdfs.seqfilewriterfactory.keyclass}"
20
	      p:valueClass="${services.data.hadoop.hdfs.seqfilewriterfactory.valueclass}"
21
	      p:compressionType="${services.data.hadoop.hdfs.seqfilewriterfactory.compressiontype}"
22
	      p:blockSize="${services.data.hadoop.hdfs.seqfilewriterfactory.blocksize}"
23
	      p:replication="${services.data.hadoop.hdfs.seqfilewriterfactory.replication}"/>
24

    
25
</beans>
(2-2/7)