-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathSimpleRowDataSource.java
More file actions
144 lines (115 loc) · 4.81 KB
/
SimpleRowDataSource.java
File metadata and controls
144 lines (115 loc) · 4.81 KB
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
package datasources;
import datasources.utils.DBClientWrapper;
import datasources.utils.DBTableReader;
import org.apache.log4j.Logger;
import edb.common.UnknownTableException;
import org.apache.spark.sql.Row;
import org.apache.spark.sql.sources.v2.DataSourceOptions;
import org.apache.spark.sql.sources.v2.DataSourceV2;
import org.apache.spark.sql.sources.v2.ReadSupport;
import org.apache.spark.sql.sources.v2.reader.DataReader;
import org.apache.spark.sql.sources.v2.reader.DataReaderFactory;
import org.apache.spark.sql.sources.v2.reader.DataSourceReader;
import org.apache.spark.sql.types.StructType;
import java.io.IOException;
import java.util.List;
/**
* An extremely simple DataSource that supports sequential reads (i.e.: on just one executor)
* from the ExampleDB. It only supports reads from a single, pre-defined table with a
* pre-defined schema. This DataSource is probably about a simple as one that reads from a
* remote database can get.
*/
public class SimpleRowDataSource implements DataSourceV2, ReadSupport {
static Logger log = Logger.getLogger(SimpleRowDataSource.class.getName());
/**
* Spark calls this to create the reader. Notice how it pulls the host and port
* on which ExampleDB is listening from the supplied options.
* @param options
* @return
*/
@Override
public DataSourceReader createReader(DataSourceOptions options) {
String host = options.get("host").orElse("localhost");
int port = options.getInt("port", -1);
return new Reader(host, port);
}
/**
* This is how Spark discovers the source table's schema (fixed in this case) and how it
* obtains the reader factories to be used by the executors to create readers. In this
* case only one reader factory is created, supporting just one executor, so the
* resulting Dataset will have only a single partition -- that's why this DataSource
* only provides sequential reads.
*/
static class Reader implements DataSourceReader {
static Logger log = Logger.getLogger(Reader.class.getName());
public Reader(String host, int port) {
_host = host;
_port = port;
}
private final StructType schema = new StructType().add("i", "bigint").add("j", "bigint");
private String _host;
private int _port;
@Override
public StructType readSchema() {
return schema;
}
@Override
public List<DataReaderFactory<Row>> createDataReaderFactories() {
log.info("creating a single factory");
return java.util.Arrays.asList(new SimpleDataReaderFactory(_host, _port));
}
}
/**
* This is used by a single executor to read from ExampleDB. Notice how in
* this case it reads from only a single table and reads all of the data since
* it knows that only one instance will exist at a time -- again because this DataSource
* only supports sequential data access. Also note that when DBClientWrapper's
* getTableReader() method is called it reads ALL the data in the table eagerly.
*/
static class TaskDataReader implements DataReader<Row> {
static Logger log = Logger.getLogger(TaskDataReader.class.getName());
public TaskDataReader(String host, int port) throws UnknownTableException {
log.info("Task reading from [" + host + ":" + port + "]" );
_db = new DBClientWrapper(host, port);
_db.connect();
_reader = _db.getTableReader(tableName, new String[]{"i", "j"});
}
private DBClientWrapper _db;
private DBTableReader _reader;
private final static String tableName = "theTable";
@Override
public boolean next() {
return _reader.next();
}
@Override
public Row get() {
return _reader.get();
}
@Override
public void close() throws IOException {
_db.disconnect();
}
}
/**
* Note that this has to be serializable. Each instance is sent to an executor,
* which uses it to create a reader for its own use.
*/
static class SimpleDataReaderFactory implements DataReaderFactory<Row> {
static Logger log = Logger.getLogger(SimpleDataReaderFactory.class.getName());
public SimpleDataReaderFactory(String host, int port) {
_host = host;
_port = port;
}
private String _host;
private int _port;
@Override
public DataReader<Row> createDataReader() {
log.info("Factory creating reader for [" + _host + ":" + _port + "]" );
try {
return new TaskDataReader(_host, _port);
} catch (UnknownTableException ute) {
throw new RuntimeException(ute);
}
}
}
}