EsImportCommand.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace app\common\command;
  3. use app\common\model\Mobile;
  4. use app\service\EsMobileService;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\Output;
  8. class EsImportCommand extends Command{
  9. protected function configure()
  10. {
  11. $this->setName('es:import')->setDescription('test');
  12. }
  13. protected function execute(Input $input, Output $output)
  14. {
  15. $count=es()->count([
  16. 'index'=>'mobiles',
  17. 'body'=>[
  18. 'query'=>[
  19. 'term'=>[
  20. 'type'=>['value'=>1]
  21. ]
  22. ]
  23. ]
  24. ]);
  25. // return $count->offsetGet('count');
  26. if($count->offsetGet('count') < 100000){
  27. $count=0;
  28. Mobile::where('type',1)->chunk(10000,function ($mobiles)use (&$count){
  29. EsMobileService::addMobiles($mobiles);
  30. $count+=count($mobiles);
  31. $this->output->info("count:{$count}");
  32. });
  33. }
  34. }
  35. }