Пример #1
0
 public DryadLINQApp(DrGraph graph)
 {
     m_graph                    = graph;
     m_clusterAffinity          = true;
     m_maxAggregateInputs       = 150;
     m_maxAggregateFilterInputs = 32;
     m_aggregateThreshold       = 1024 * 1024 * 1024; // 1GB
     m_startTime                = graph.GetCluster().GetCurrentTimeStamp();
     m_identityMapFile          = null;
     m_optionMap                = new SortedDictionary <string, OptionDescription>();
     AddOptionsToMap(s_dryadLinqOptionArray);
 }
Пример #2
0
 public DryadLINQApp(DrGraph graph)
 {
     m_graph = graph;
     m_clusterAffinity = true;
     m_maxAggregateInputs = 150;
     m_maxAggregateFilterInputs = 32;
     m_aggregateThreshold = 1024*1024*1024;  // 1GB
     m_startTime = graph.GetCluster().GetCurrentTimeStamp();            
     m_identityMapFile = null;    
     m_optionMap = new SortedDictionary<string,OptionDescription>();
     AddOptionsToMap(s_dryadLinqOptionArray);
 }
Пример #3
0
 public DrUniverse GetUniverse()
 {
     return(m_graph.GetCluster().GetUniverse());
 }