[
https://issues.apache.org/jira/browse/TINKERPOP3-320?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Marko A. Rodriguez updated TINKERPOP3-320:
------------------------------------------
Description:
This is another trivial "bulker" that is vendor agnostic. For any {{Graph}}
that provides a {{GraphComputer}}, {{BulkDumpingMapReduce}} is executed as such:
{code}
g.compute().mapReduce(BulkDumpingMapReduce.build().output('dir/').writer(GraphSONWriter.class).create()).submit()
{code}
The implementation is:
{code}
public BulkDumpingMapReduce implements MapReduce {
public void map(vertex, emitter) {
StringBufferThingy vertexString = new StringBufferThingy()
graphSONWriter.write(vertex,stringBufferStreamThingy);
emitter.emit(vertexString.toString());
}
}
{code}
NOTES:
* MapReduce generates a key/value pair result set. Thus,
{{MapReduce.generateResult()}} would need to clip off the key and write the
value to the output location.
was:
This is another trivial "bulker" that is vendor agnostic. For any {{Graph}}
that provides a {{GraphComputer}}, {{BulkDumpingMapReduce}} is executed as such:
{code:groovy}
g.compute().mapReduce(BulkDumpingMapReduce.build().output('dir/').writer(GraphSONWriter.class).create()).submit()
{code}
The implementation is:
{code:java}
public BulkDumpingMapReduce implements MapReduce {
public void map(vertex, emitter) {
StringBufferThingy vertexString = new StringBufferThingy()
graphSONWriter.write(vertex,stringBufferStreamThingy);
emitter.emit(vertexString.toString());
}
}
{code}
NOTES:
* MapReduce generates a key/value pair result set. Thus,
{{MapReduce.generateResult()}} would need to clip off the key and write the
value to the output location.
> BulkDumpingMapReduce (proposal)
> -------------------------------
>
> Key: TINKERPOP3-320
> URL: https://issues.apache.org/jira/browse/TINKERPOP3-320
> Project: TinkerPop 3
> Issue Type: Improvement
> Components: process, structure
> Affects Versions: 3.0.0-incubating
> Reporter: Marko A. Rodriguez
> Assignee: Marko A. Rodriguez
>
> This is another trivial "bulker" that is vendor agnostic. For any {{Graph}}
> that provides a {{GraphComputer}}, {{BulkDumpingMapReduce}} is executed as
> such:
> {code}
> g.compute().mapReduce(BulkDumpingMapReduce.build().output('dir/').writer(GraphSONWriter.class).create()).submit()
> {code}
> The implementation is:
> {code}
> public BulkDumpingMapReduce implements MapReduce {
> public void map(vertex, emitter) {
> StringBufferThingy vertexString = new StringBufferThingy()
> graphSONWriter.write(vertex,stringBufferStreamThingy);
> emitter.emit(vertexString.toString());
> }
> }
> {code}
> NOTES:
> * MapReduce generates a key/value pair result set. Thus,
> {{MapReduce.generateResult()}} would need to clip off the key and write the
> value to the output location.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)