Definition at line 39 of file FileSystem.h. References Impala::CmdOptions::GetBool(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetString(), Impala::Util::ChannelPool::Instance(), mData, mDataChannel, mDataServer, mDataString, and mOverride. 00040 { 00041 CmdOptions& options = CmdOptions::GetInstance(); 00042 mDataString = data; 00043 mData = StringList(mDataString, ';'); 00044 mDataServer = dataServer; 00045 mDataChannel = 0; 00046 if (!mDataServer.empty()) 00047 { 00048 ILOG_DEBUG_HEADNODE("Retrieving channel to server " << mDataServer); 00049 String passFile = options.GetString("passwordFile"); 00050 mDataChannel = Util::ChannelPool::Instance().Get(mDataServer, 00051 passFile); 00052 } 00053 mOverride = options.GetBool("override"); 00054 #ifdef WIN32 00055 // printf("%d\n", _getmaxstdio()); // normally 512 00056 _setmaxstdio(2048); // set it to the absolute maximum 00057 #endif 00058 }
Here is the call graph for this function: ![]()
|