Package org.apache.storm.sql.redis
Class RedisDataSourcesProvider
- java.lang.Object
-
- org.apache.storm.sql.redis.RedisDataSourcesProvider
-
- All Implemented Interfaces:
DataSourcesProvider
public class RedisDataSourcesProvider extends Object implements DataSourcesProvider
Create a Redis sink based on the URI and properties. The URI has the format of redis://:[password]@[host]:[port]/[dbIdx]. Only host is mandatory and others can be set to default. The properties are in JSON format which specifies the config of the Redis data type and etc. Please note that when "use.redis.cluster" is "true", cluster discovery is only done from given URI.
-
-
Constructor Summary
Constructors Constructor Description RedisDataSourcesProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ISqlStreamsDataSource
constructStreams(URI uri, String inputFormatClass, String outputFormatClass, Properties props, List<FieldInfo> fields)
Construct a new data source for streams mode.String
scheme()
Get the scheme of the data source.
-
-
-
Method Detail
-
scheme
public String scheme()
Description copied from interface:DataSourcesProvider
Get the scheme of the data source.- Specified by:
scheme
in interfaceDataSourcesProvider
- Returns:
- the scheme of the data source
-
constructStreams
public ISqlStreamsDataSource constructStreams(URI uri, String inputFormatClass, String outputFormatClass, Properties props, List<FieldInfo> fields)
Description copied from interface:DataSourcesProvider
Construct a new data source for streams mode.- Specified by:
constructStreams
in interfaceDataSourcesProvider
- Parameters:
uri
- The URI that specifies the data source. The format of the URI is fully customizable.inputFormatClass
- the name of the class that deserializes data. It is null when unspecified.outputFormatClass
- the name of the class that serializes data. It is null when unspecified.fields
- The name of the fields and the schema of the table.
-
-