Member since
07-05-2018
13
Posts
1
Kudos Received
0
Solutions
03-13-2020
09:04 AM
Be careful with setting ParallelGCThreads to 8 as it will decrease threads if the system has more processing power. => https://docs.oracle.com/javase/8/docs/technotes/guides/vm/gctuning/parallel.html On a machine with N hardware threads where N is greater than 8, the parallel collector uses a fixed fraction of N as the number of garbage collector threads. The fraction is approximately 5/8 for large values of N. At values of N below 8, the number used is N. On selected platforms, the fraction drops to 5/16. The specific number of garbage collector threads can be adjusted with a command-line option (which is described later). On a host with one processor, the parallel collector will likely not perform as well as the serial collector because of the overhead required for parallel execution (for example, synchronization). However, when running applications with medium-sized to large-sized heaps, it generally outperforms the serial collector by a modest amount on machines with two processors, and usually performs significantly better than the serial collector when more than two processors are available.
... View more
06-17-2019
01:54 PM
Actually, doesn't putting multiple servers behind an load balancer *NOT* work right now due to this bug? https://issues.apache.org/jira/browse/LIVY-541
... View more
08-09-2018
05:08 AM
@Michael Graml it is not possible, if coordinator is killed, workflows will be killed.
... View more
07-11-2018
12:30 PM
@Michael Graml By default all service users belong to public group. Service users are the users these services run as like hdfs, yarn, hive, hbase, ranger and so on. Hope that helps answer your question. *** If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer.
... View more