use of com.alibaba.graphscope.common.client.HostsChannelFetcher in project GraphScope by alibaba.
the class GraphServiceMain method main.
public static void main(String[] args) throws Exception {
Configs configs = new Configs("conf/ir.compiler.properties", FileLoadType.RELATIVE_PATH);
IrMetaFetcher irMetaFetcher = new ExperimentalMetaFetcher(configs);
RpcChannelFetcher fetcher = new HostsChannelFetcher(configs);
IrGremlinServer server = new IrGremlinServer();
server.start(configs, irMetaFetcher, fetcher, new IrMetaQueryCallback(irMetaFetcher), TestGraphFactory.EXPERIMENTAL);
}
Aggregations