sort very large file

LC_ALL=C sort -u --buffer-size=2G --temporary-directory=/root/Desktop/tmp --output=joined_sorted.txt joined.txt 
uniq joined_sorted.txt joined_sorted_uniqed.txt
split bigFileName -l 按行分割
wc -l joined.txt 
split -l 10000000 joined.txt joined_split_
for f in joined_split_*; do
  sort -u "$f" > "$f"_sorted
done
sort -u -m joined_split_*_sorted > final.out

( ! ) Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 169
Call Stack
#TimeMemoryFunctionLocation
10.0009412456{main}( ).../index.php:0
20.10394262360Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.10394262360Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.423111453224Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.424411477504Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.425811532832Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.426211560232require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.438911959864K2ControllerItem->execute( ).../k2.php:64
90.438911959864K2ControllerItem->display( ).../BaseController.php:710
100.455212610568K2ControllerItem->display( ).../item.php:78
110.455212610568K2ControllerItem->display( ).../controller.php:19
120.461912981608Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.463913001976K2ViewItem->display( ).../ViewController.php:102
140.602315797184K2ViewItem->display( ).../view.html.php:742
150.602315797184K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.607415970120include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701

( ! ) Notice: Only variables should be assigned by reference in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 478
Call Stack
#TimeMemoryFunctionLocation
10.0009412456{main}( ).../index.php:0
20.10394262360Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.10394262360Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.423111453224Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.424411477504Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.425811532832Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.426211560232require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.438911959864K2ControllerItem->execute( ).../k2.php:64
90.438911959864K2ControllerItem->display( ).../BaseController.php:710
100.455212610568K2ControllerItem->display( ).../item.php:78
110.455212610568K2ControllerItem->display( ).../controller.php:19
120.461912981608Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.463913001976K2ViewItem->display( ).../ViewController.php:102
140.602315797184K2ViewItem->display( ).../view.html.php:742
150.602315797184K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.607415970120include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
back to top