Re: Running drill in background in embedded mode

2022-07-21 Thread Prabhakar Bhosale
Hi James, Thanks for your reply, in my case I don't have a cluster. It is just one machine and hence launching the drill in embedded mode. Probably this will be the same in the production environment as the client feels maintaining the cluster will be an additional effort. So trying to see if every

Re: Running drill in background in embedded mode

2022-07-18 Thread James Turton
Well if we're playing with hacks... :-) nohup drill-embedded -f <(sleep infinity) > /dev/null That needs a shell smart enough to do process substitution and avoids what I guess was busy wait loop in sqlline's input reader that you ran into. Back to being boring and responsible: are you sure y

Re: Running drill in background in embedded mode

2022-07-18 Thread Prabhakar Bhosale
Hi Luoc, When I run the drill in embedded mode as foreground process, the %CPU does not go beyond 1%. for java process. Please let me know if you need any additional information. thx Regards Prabhakar On Tue, Jul 19, 2022 at 6:57 AM luoc wrote: > Hi, > > What is the cost of the CPU if you are

Re: Running drill in background in embedded mode

2022-07-18 Thread luoc
Hi, What is the cost of the CPU if you are running in a front process? > On Jul 18, 2022, at 14:51, Prabhakar Bhosale wrote: > > Hi Team, > I am trying to run drill in embedded mode as background process with below > command > nohup sh drill-embedded >/dev/null 2>&1 & > > My observation is th

Running drill in background in embedded mode

2022-07-17 Thread Prabhakar Bhosale
Hi Team, I am trying to run drill in embedded mode as background process with below command nohup sh drill-embedded >/dev/null 2>&1 & My observation is that it takes too much CPU. After starting drill by above command the output of top command against java process shows %CPU anything between 150 t

Running drill in background in embedded mode

2022-07-13 Thread Prabhakar Bhosale
Hi Team, I am trying to run drill in embedded mode as background process with below command nohup sh drill-embedded >/dev/null 2>&1 & My observation is that it takes too much CPU. After starting drill by above command the output of top command against java process shows %CPU anything between 150 t