You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For optimal MapReduce performance, a sequence file should be generated and there are several parameters that must be tuned. This process could be automated:
Start with some default set of values for parameters like
Attempt to generate sequence file with g.(). Determine size of biggest vertex in memory during this process. If a vertex doesn't fit in memory (so g.() fails), increase memory automatically and retry until it does. If it fails for other reasons, iteratively change above parameters until it succeeds. Restart regionservers automatically as needed.
Once sequence file is generated, determine optimal parameters based on the graph and based on the available memory and number of processors. Generate a parameter file for future analyses.
The idea is to have a possibly long but automated process that will eventually converge on reasonably well optimized parameters.
The text was updated successfully, but these errors were encountered:
For optimal MapReduce performance, a sequence file should be generated and there are several parameters that must be tuned. This process could be automated:
mapred.map.child.java.opts
mapred.reduce.child.java.opts
mapred.map.tasks
mapred.reduce.tasks
etc
Attempt to generate sequence file with g.(). Determine size of biggest vertex in memory during this process. If a vertex doesn't fit in memory (so g.() fails), increase memory automatically and retry until it does. If it fails for other reasons, iteratively change above parameters until it succeeds. Restart regionservers automatically as needed.
Once sequence file is generated, determine optimal parameters based on the graph and based on the available memory and number of processors. Generate a parameter file for future analyses.
The idea is to have a possibly long but automated process that will eventually converge on reasonably well optimized parameters.
The text was updated successfully, but these errors were encountered: