You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@flink.apache.org by 太平洋 <49...@qq.com> on 2021/04/09 02:07:36 UTC

回复: 回复: period batch job lead to OutOfMemoryError: Metaspace problem

I have tried&nbsp; to add 'classloader.parent-first-patterns.additional: "ru.yandex.clickhouse" ' to flink-config, but problem still exist.
Is there lightweight way to put clickhouse JDBC driver on Flink lib/ folder?
&nbsp;


------------------&nbsp;原始邮件&nbsp;------------------
发件人:                                                                                                                        "Maciek Próchniak"                                                                                    <mpr@touk.pl&gt;;
发送时间:&nbsp;2021年4月9日(星期五) 凌晨3:24
收件人:&nbsp;"太平洋"<495635097@qq.com&gt;;"Arvid Heise"<arvid@apache.org&gt;;"Yangze Guo"<karmagyz@gmail.com&gt;;
抄送:&nbsp;"user"<user@flink.apache.org&gt;;"guowei.mgw"<guowei.mgw@gmail.com&gt;;"renqschn"<renqschn@gmail.com&gt;;
主题:&nbsp;Re: 回复: period batch job lead to OutOfMemoryError: Metaspace problem



                   
Hi,
     
Did you put the clickhouse JDBC driver on Flink main classpath       (in lib folder) and not in user-jar - as described here: https://ci.apache.org/projects/flink/flink-docs-release-1.12/ops/debugging/debugging_classloading.html#unloading-of-dynamically-loaded-classes-in-user-code?
     
When we encountered Metaspace leaks recently, in quite a few       cases it turned out that the problem was the JDBC driver in user       classloder which was registered by DriverManager and caused       classloader leak.
     

     
     
maciek
     
     

     

     
     On 08.04.2021 11:42, 太平洋 wrote:
     
                            My application program looks like this. Does this structure           has some problem?
         
         
         public class StreamingJob {
         	public static void           main(String[] args) throws Exception {
         		int i = 0;
         		while (i < 100) {
         				try {
         					StreamExecutionEnvironment           env = StreamExecutionEnvironment.getExecutionEnvironment();
         					env.setRuntimeMode(RuntimeExecutionMode.BATCH);
         					env.setParallelism(Parallelism);
         
         
         					EnvironmentSettings           bsSettings =           EnvironmentSettings.newInstance().useBlinkPlanner()
         							.inStreamingMode().build();
         					StreamTableEnvironment           bsTableEnv = StreamTableEnvironment.create(env, bsSettings);
         
         
         					bsTableEnv.executeSql("CREATE           TEMPORARY TABLE xxxx");
         					Table t =           bsTableEnv.sqlQuery(query);
         
         
         					DataStream<DataPoint&gt;           points = bsTableEnv.toAppendStream(t, DataPoint.class);
         
         
         					DataStream<StatisPoint&gt;           weightPoints = points.map();
         
         
         					DataStream<PredictPoint&gt;           predictPoints = weightPoints.keyBy()
         							.reduce().map();
         
         
         					// side output
         					final           OutputTag<PredictPoint&gt; outPutPredict = new           OutputTag<PredictPoint&gt;("predict") {
         					};
         
         
         					SingleOutputStreamOperator<PredictPoint&gt;           mainDataStream = predictPoints
         							.process();
         
         
         					DataStream<PredictPoint&gt;           exStream = mainDataStream.getSideOutput(outPutPredict);
         
         
         &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //write data to           clickhouse
         					String           insertIntoCKSql = "xxx";
         					mainDataStream.addSink(JdbcSink.sink(insertIntoCKSql,           new CkSinkBuilder(),
         							new           JdbcExecutionOptions.Builder().withBatchSize(CkBatchSize).build(),
         							new JdbcConnectionOptions.JdbcConnectionOptionsBuilder().withDriverName(CkDriverName)
         									.withUrl(CkUrl).withUsername(CkUser).withPassword(CkPassword).build()));
         
         
         					// write data to           kafka
         					FlinkKafkaProducer<String&gt;           producer = new FlinkKafkaProducer<&gt;();&nbsp;
         					exStream.map().addSink(producer);
         
         
         					env.execute("Prediction           Program");
         				} catch (Exception           e) {
         					e.printStackTrace();
         				}
         			 i++;
         			           Thread.sleep(window * 1000);
         		}		
         	}
         }
       
       
       
                
         
         
         
         ------------------&nbsp;原始邮件&nbsp;------------------
                    发件人: "Arvid Heise" <arvid@apache.org&gt;;
           发送时间:&nbsp;2021年4月8日(星期四) 下午2:33
           收件人:&nbsp;"Yangze Guo"<karmagyz@gmail.com&gt;;
           抄送:&nbsp;"太平洋"<495635097@qq.com&gt;;"user"<user@flink.apache.org&gt;;"guowei.mgw"<guowei.mgw@gmail.com&gt;;"renqschn"<renqschn@gmail.com&gt;;
           主题:&nbsp;Re: period batch job lead to OutOfMemoryError:             Metaspace problem
         
         
         
                    Hi,
           
           
           ChildFirstClassLoader are created (more or less) by             application jar and seeing so many looks like a classloader             leak to me. I'd expect you to see a new             ChildFirstClassLoader popping up with each new job             submission.
           
           
           Can you check who is referencing the             ChildFirstClassLoader transitively? Usually, it's some             thread that is lingering around because some third party             library is leaking threads etc.
           
           
           OneInputStreamTask is legit and just indicates that you             have a job running with 4 slots on that TM. It should not             hold any dedicated metaspace memory.
           
         
         
                    On Thu, Apr 8, 2021 at 4:52             AM Yangze Guo <karmagyz@gmail.com&gt; wrote:
           
           I went through the JM             &amp; TM logs but could not find any valuable clue.
             The exception is actually thrown by             kafka-producer-network-thread.
             Maybe @Qingsheng could also take a look?
             
             
             Best,
             Yangze Guo
             
             On Thu, Apr 8, 2021 at 10:39 AM 太平洋 <495635097@qq.com&gt; wrote:
             &gt;
             &gt; I have configured to 512M, but problem still exist. Now             the memory size is still 256M.
             &gt; Attachments are TM and JM logs.
             &gt;
             &gt; Look forward to your reply.
             &gt;
             &gt; ------------------ 原始邮件 ------------------
             &gt; 发件人: "Yangze Guo" <karmagyz@gmail.com&gt;;
             &gt; 发送时间: 2021年4月6日(星期二) 晚上6:35
             &gt; 收件人: "太平洋"<495635097@qq.com&gt;;
             &gt; 抄送: "user"<user@flink.apache.org&gt;;"guowei.mgw"<guowei.mgw@gmail.com&gt;;
             &gt; 主题: Re: period batch job lead to OutOfMemoryError:             Metaspace problem
             &gt;
             &gt; &gt; I have tried this method, but the problem still             exist.
             &gt; How much memory do you configure for it?
             &gt;
             &gt; &gt; is 21 instances of             "org.apache.flink.util.ChildFirstClassLoader" normal
             &gt; Not quite sure about it. AFAIK, each job will have a             classloader.
             &gt; Multiple tasks of the same job in the same TM will             share the same
             &gt; classloader. The classloader will be removed if there             is no more task
             &gt; running on the TM. Classloader without reference will             be finally
             &gt; cleanup by GC. Could you share JM and TM logs for             further analysis?
             &gt; I'll also involve @Guowei Ma in this thread.
             &gt;
             &gt;
             &gt; Best,
             &gt; Yangze Guo
             &gt;
             &gt; On Tue, Apr 6, 2021 at 6:05 PM 太平洋 <495635097@qq.com&gt; wrote:
             &gt; &gt;
             &gt; &gt; I have tried this method, but the problem still             exist.
             &gt; &gt; by heap dump analysis, is 21 instances of             "org.apache.flink.util.ChildFirstClassLoader" normal?
             &gt; &gt;
             &gt; &gt;
             &gt; &gt; ------------------ 原始邮件 ------------------
             &gt; &gt; 发件人: "Yangze Guo" <karmagyz@gmail.com&gt;;
             &gt; &gt; 发送时间: 2021年4月6日(星期二) 下午4:32
             &gt; &gt; 收件人: "太平洋"<495635097@qq.com&gt;;
             &gt; &gt; 抄送: "user"<user@flink.apache.org&gt;;
             &gt; &gt; 主题: Re: period batch job lead to OutOfMemoryError:             Metaspace problem
             &gt; &gt;
             &gt; &gt; I think you can try to increase the JVM metaspace             option for
             &gt; &gt; TaskManagers through             taskmanager.memory.jvm-metaspace.size. [1]
             &gt; &gt;
             &gt; &gt; [1] https://ci.apache.org/projects/flink/flink-docs-master/docs/deployment/memory/mem_trouble/#outofmemoryerror-metaspace
             &gt; &gt;
             &gt; &gt; Best,
             &gt; &gt; Yangze Guo
             &gt; &gt;
             &gt; &gt; Best,
             &gt; &gt; Yangze Guo
             &gt; &gt;
             &gt; &gt;
             &gt; &gt; On Tue, Apr 6, 2021 at 4:22 PM 太平洋 <495635097@qq.com&gt; wrote:
             &gt; &gt; &gt;
             &gt; &gt; &gt; batch job:
             &gt; &gt; &gt; read data from s3 by sql,then by some             operators and write data to clickhouse and kafka.
             &gt; &gt; &gt; after some times, task-manager quit with             OutOfMemoryError: Metaspace.
             &gt; &gt; &gt;
             &gt; &gt; &gt; env:
             &gt; &gt; &gt; flink version:1.12.2
             &gt; &gt; &gt; task-manager slot count: 5
             &gt; &gt; &gt; deployment: standalone kubernetes session 模式
             &gt; &gt; &gt; dependencies:
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;<dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;             &nbsp;<groupId&gt;org.apache.flink</groupId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;             &nbsp;<artifactId&gt;flink-connector-kafka_2.11</artifactId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;             &nbsp;<version&gt;${flink.version}</version&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;</dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;<dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;             &nbsp;<groupId&gt;com.google.code.gson</groupId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;             &nbsp;<artifactId&gt;gson</artifactId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp;<version&gt;2.8.5</version&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;</dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;<dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;             &nbsp;<groupId&gt;org.apache.flink</groupId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;             &nbsp;<artifactId&gt;flink-connector-jdbc_2.11</artifactId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;             &nbsp;<version&gt;${flink.version}</version&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;</dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;<dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;             &nbsp;<groupId&gt;ru.yandex.clickhouse</groupId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;             &nbsp;<artifactId&gt;clickhouse-jdbc</artifactId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp;<version&gt;0.3.0</version&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;</dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;<dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;             &nbsp;<groupId&gt;org.apache.flink</groupId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp;             &nbsp;<artifactId&gt;flink-parquet_2.11</artifactId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp;             &nbsp;<version&gt;${flink.version}</version&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;</dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;<dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;             <groupId&gt;org.apache.flink</groupId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;             <artifactId&gt;flink-json</artifactId&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;             <version&gt;${flink.version}</version&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp; &nbsp;</dependency&gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt; heap dump1:
             &gt; &gt; &gt;
             &gt; &gt; &gt; Leak Suspects
             &gt; &gt; &gt;
             &gt; &gt; &gt; System Overview
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; Leaks
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; Overview
             &gt; &gt; &gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp;Problem Suspect 1
             &gt; &gt; &gt;
             &gt; &gt; &gt; 21 instances of             "org.apache.flink.util.ChildFirstClassLoader", loaded by             "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy             29,656,880 (41.16%) bytes.
             &gt; &gt; &gt;
             &gt; &gt; &gt; Biggest instances:
             &gt; &gt; &gt;
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73ca2a1e8 - 1,474,760 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73d2af820 - 1,474,168 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73cdcaa10 - 1,474,160 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73cf6aab0 - 1,474,160 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73d1111d8 - 1,474,160 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73d2bb108 - 1,474,128 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73de202e0 - 1,474,120 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73dadc778 - 1,474,112 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73d5f70e8 - 1,474,064 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73d93aa38 - 1,474,064 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73e179638 - 1,474,064 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73dc80418 - 1,474,056 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73dfcda60 - 1,474,056 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73e4bcd38 - 1,474,056 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73d6006e8 - 1,474,032 (2.05%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73c7d2ad8 - 1,461,944 (2.03%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73ca1bb98 - 1,460,752 (2.03%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73bf203f0 - 1,460,744 (2.03%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73e3284a8 - 1,445,232 (2.01%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73e65de00 - 1,445,232 (2.01%) bytes.
             &gt; &gt; &gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt; Keywords
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader
             &gt; &gt; &gt; sun.misc.Launcher$AppClassLoader @             0x73b2d42e0
             &gt; &gt; &gt; Details »
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp;Problem Suspect 2
             &gt; &gt; &gt;
             &gt; &gt; &gt; 34,407 instances of             "org.apache.flink.core.memory.HybridMemorySegment", loaded             by "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy             7,707,168 (10.70%) bytes.
             &gt; &gt; &gt;
             &gt; &gt; &gt; Keywords
             &gt; &gt; &gt;             org.apache.flink.core.memory.HybridMemorySegment
             &gt; &gt; &gt; sun.misc.Launcher$AppClassLoader @             0x73b2d42e0
             &gt; &gt; &gt;
             &gt; &gt; &gt; Details »
             &gt; &gt; &gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt; heap dump2:
             &gt; &gt; &gt;
             &gt; &gt; &gt; Leak Suspects
             &gt; &gt; &gt;
             &gt; &gt; &gt; System Overview
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; Leaks
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; Overview
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp;Problem Suspect 1
             &gt; &gt; &gt;
             &gt; &gt; &gt; 21 instances of             "org.apache.flink.util.ChildFirstClassLoader", loaded by             "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy             26,061,408 (30.68%) bytes.
             &gt; &gt; &gt;
             &gt; &gt; &gt; Biggest instances:
             &gt; &gt; &gt;
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73e9e9930 - 1,474,224 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73edce0b8 - 1,474,224 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73f1ad7d0 - 1,474,168 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73f3e5118 - 1,474,168 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73f5d3fe0 - 1,474,168 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73ebd8d28 - 1,474,160 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73efc00c0 - 1,474,160 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73e2251a8 - 1,474,136 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73cc24af0 - 1,474,064 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73cdca3e0 - 1,474,064 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73cf6f860 - 1,474,064 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73d114768 - 1,474,064 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73ca6f878 - 1,474,056 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73d2b7640 - 1,474,056 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73d2c1d80 - 1,474,040 (1.74%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73c7e2868 - 1,469,720 (1.73%) bytes.
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader @             0x73bf34a98 - 1,460,808 (1.72%) bytes.
             &gt; &gt; &gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt; Keywords
             &gt; &gt; &gt; org.apache.flink.util.ChildFirstClassLoader
             &gt; &gt; &gt; sun.misc.Launcher$AppClassLoader @             0x73b2d42e0
             &gt; &gt; &gt; Details »
             &gt; &gt; &gt;
             &gt; &gt; &gt;&nbsp; &nbsp;Problem Suspect 2
             &gt; &gt; &gt;
             &gt; &gt; &gt; 4 instances of             "org.apache.flink.streaming.runtime.tasks.OneInputStreamTask",             loaded by "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0"             occupy 11,644,200 (13.71%) bytes.
             &gt; &gt; &gt;
             &gt; &gt; &gt; Biggest instances:
             &gt; &gt; &gt;
             &gt; &gt; &gt;             org.apache.flink.streaming.runtime.tasks.OneInputStreamTask             @ 0x73e2d0cb0 - 4,364,536 (5.14%) bytes.
             &gt; &gt; &gt;             org.apache.flink.streaming.runtime.tasks.OneInputStreamTask             @ 0x73d62fb88 - 3,643,576 (4.29%) bytes.
             &gt; &gt; &gt;             org.apache.flink.streaming.runtime.tasks.OneInputStreamTask             @ 0x73dae0270 - 3,635,952 (4.28%) bytes.
             &gt; &gt; &gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt;
             &gt; &gt; &gt; Keywords
             &gt; &gt; &gt; sun.misc.Launcher$AppClassLoader @             0x73b2d42e0
             &gt; &gt; &gt;             org.apache.flink.streaming.runtime.tasks.OneInputStreamTask
             &gt; &gt; &gt; Details »
             &gt; &gt; &gt;
             &gt; &gt; &gt;

Re: 回复: period batch job lead to OutOfMemoryError: Metaspace problem

Posted by Arvid Heise <ar...@apache.org>.
Afaik the main issue is that the JDBC drivers are leaking as they usually
assume only one classloader. If you are aware of it, you can bundle it in
your jar. However, you are right - it doesn't help with OP, so it was
probably not a good idea.

On Fri, Apr 9, 2021 at 11:45 AM Maciek Próchniak <mp...@touk.pl> wrote:

> Hi Arvid,
>
> "You can still bundle it into your jar if you prefer it." - is it really
> the case with JDBC drivers? I think that if the driver is not on Flink main
> classpath (that is, in the lib folder) there is no way the class would be
> loaded by main classloader - regardless of parent/child classloader setting?
>
> Those settings will help if the driver is both on Flink classpath and in
> user jar - I noticed now the documentation is slightly misleading
> suggesting otherwise, isn't it?
>
>
> thanks,
>
> maciek
>
>
> On 09.04.2021 11:25, Arvid Heise wrote:
>
> Hi,
>
> What do you mean by light-weight way? Just to clarify: you copy the jar
> once in the lib folder and restart the cluster once (and put it into the
> lib/ for future clusters). Not sure how it would be more light-weight.
>
> You can still bundle it into your jar if you prefer it. It just tends to
> be big but if it's easier for you to not touch the cluster, then just put
> everything into your jar.
>
> On Fri, Apr 9, 2021 at 4:08 AM 太平洋 <49...@qq.com> wrote:
>
>> I have tried  to add 'classloader.parent-first-patterns.additional:
>> "ru.yandex.clickhouse" ' to flink-config, but problem still exist.
>> Is there lightweight way to put clickhouse JDBC driver on Flink lib/
>> folder?
>>
>>
>> ------------------ 原始邮件 ------------------
>> *发件人:* "Maciek Próchniak" <mp...@touk.pl>;
>> *发送时间:* 2021年4月9日(星期五) 凌晨3:24
>> *收件人:* "太平洋"<49...@qq.com>;"Arvid Heise"<ar...@apache.org>;"Yangze
>> Guo"<ka...@gmail.com>;
>> *抄送:* "user"<us...@flink.apache.org>;"guowei.mgw"<guowei.mgw@gmail.com
>> >;"renqschn"<re...@gmail.com>;
>> *主题:* Re: 回复: period batch job lead to OutOfMemoryError: Metaspace
>> problem
>>
>> Hi,
>>
>> Did you put the clickhouse JDBC driver on Flink main classpath (in lib
>> folder) and not in user-jar - as described here:
>> https://ci.apache.org/projects/flink/flink-docs-release-1.12/ops/debugging/debugging_classloading.html#unloading-of-dynamically-loaded-classes-in-user-code
>> ?
>>
>> When we encountered Metaspace leaks recently, in quite a few cases it
>> turned out that the problem was the JDBC driver in user classloder which
>> was registered by DriverManager and caused classloader leak.
>>
>>
>> maciek
>>
>>
>> On 08.04.2021 11:42, 太平洋 wrote:
>>
>> My application program looks like this. Does this structure has some
>> problem?
>>
>> public class StreamingJob {
>> public static void main(String[] args) throws Exception {
>> int i = 0;
>> while (i < 100) {
>> try {
>> StreamExecutionEnvironment env =
>> StreamExecutionEnvironment.getExecutionEnvironment();
>> env.setRuntimeMode(RuntimeExecutionMode.BATCH);
>> env.setParallelism(Parallelism);
>>
>> EnvironmentSettings bsSettings =
>> EnvironmentSettings.newInstance().useBlinkPlanner()
>> .inStreamingMode().build();
>> StreamTableEnvironment bsTableEnv = StreamTableEnvironment.create(env,
>> bsSettings);
>>
>> bsTableEnv.executeSql("CREATE TEMPORARY TABLE xxxx");
>> Table t = bsTableEnv.sqlQuery(query);
>>
>> DataStream<DataPoint> points = bsTableEnv.toAppendStream(t,
>> DataPoint.class);
>>
>> DataStream<StatisPoint> weightPoints = points.map();
>>
>> DataStream<PredictPoint> predictPoints = weightPoints.keyBy()
>> .reduce().map();
>>
>> // side output
>> final OutputTag<PredictPoint> outPutPredict = new
>> OutputTag<PredictPoint>("predict") {
>> };
>>
>> SingleOutputStreamOperator<PredictPoint> mainDataStream = predictPoints
>> .process();
>>
>> DataStream<PredictPoint> exStream =
>> mainDataStream.getSideOutput(outPutPredict);
>>
>>                                         //write data to clickhouse
>> String insertIntoCKSql = "xxx";
>> mainDataStream.addSink(JdbcSink.sink(insertIntoCKSql, new CkSinkBuilder(),
>> new JdbcExecutionOptions.Builder().withBatchSize(CkBatchSize).build(),
>> new
>> JdbcConnectionOptions.JdbcConnectionOptionsBuilder().withDriverName(CkDriverName)
>> .withUrl(CkUrl).withUsername(CkUser).withPassword(CkPassword).build()));
>>
>> // write data to kafka
>> FlinkKafkaProducer<String> producer = new FlinkKafkaProducer<>();
>> exStream.map().addSink(producer);
>>
>> env.execute("Prediction Program");
>> } catch (Exception e) {
>> e.printStackTrace();
>> }
>> i++;
>> Thread.sleep(window * 1000);
>> }
>> }
>> }
>>
>>
>>
>> ------------------ 原始邮件 ------------------
>> *发件人:* "Arvid Heise" <ar...@apache.org> <ar...@apache.org>;
>> *发送时间:* 2021年4月8日(星期四) 下午2:33
>> *收件人:* "Yangze Guo"<ka...@gmail.com> <ka...@gmail.com>;
>> *抄送:* "太平洋"<49...@qq.com> <49...@qq.com>;"user"
>> <us...@flink.apache.org> <us...@flink.apache.org>;"guowei.mgw"
>> <gu...@gmail.com> <gu...@gmail.com>;"renqschn"
>> <re...@gmail.com> <re...@gmail.com>;
>> *主题:* Re: period batch job lead to OutOfMemoryError: Metaspace problem
>>
>> Hi,
>>
>> ChildFirstClassLoader are created (more or less) by application jar and
>> seeing so many looks like a classloader leak to me. I'd expect you to see a
>> new ChildFirstClassLoader popping up with each new job submission.
>>
>> Can you check who is referencing the ChildFirstClassLoader transitively?
>> Usually, it's some thread that is lingering around because some third party
>> library is leaking threads etc.
>>
>> OneInputStreamTask is legit and just indicates that you have a job
>> running with 4 slots on that TM. It should not hold any dedicated metaspace
>> memory.
>>
>> On Thu, Apr 8, 2021 at 4:52 AM Yangze Guo <ka...@gmail.com> wrote:
>>
>>> I went through the JM & TM logs but could not find any valuable clue.
>>> The exception is actually thrown by kafka-producer-network-thread.
>>> Maybe @Qingsheng could also take a look?
>>>
>>>
>>> Best,
>>> Yangze Guo
>>>
>>> On Thu, Apr 8, 2021 at 10:39 AM 太平洋 <49...@qq.com> wrote:
>>> >
>>> > I have configured to 512M, but problem still exist. Now the memory
>>> size is still 256M.
>>> > Attachments are TM and JM logs.
>>> >
>>> > Look forward to your reply.
>>> >
>>> > ------------------ 原始邮件 ------------------
>>> > 发件人: "Yangze Guo" <ka...@gmail.com>;
>>> > 发送时间: 2021年4月6日(星期二) 晚上6:35
>>> > 收件人: "太平洋"<49...@qq.com>;
>>> > 抄送: "user"<us...@gmail.com>;
>>> > 主题: Re: period batch job lead to OutOfMemoryError: Metaspace problem
>>> >
>>> > > I have tried this method, but the problem still exist.
>>> > How much memory do you configure for it?
>>> >
>>> > > is 21 instances of "org.apache.flink.util.ChildFirstClassLoader"
>>> normal
>>> > Not quite sure about it. AFAIK, each job will have a classloader.
>>> > Multiple tasks of the same job in the same TM will share the same
>>> > classloader. The classloader will be removed if there is no more task
>>> > running on the TM. Classloader without reference will be finally
>>> > cleanup by GC. Could you share JM and TM logs for further analysis?
>>> > I'll also involve @Guowei Ma in this thread.
>>> >
>>> >
>>> > Best,
>>> > Yangze Guo
>>> >
>>> > On Tue, Apr 6, 2021 at 6:05 PM 太平洋 <49...@qq.com> wrote:
>>> > >
>>> > > I have tried this method, but the problem still exist.
>>> > > by heap dump analysis, is 21 instances of
>>> "org.apache.flink.util.ChildFirstClassLoader" normal?
>>> > >
>>> > >
>>> > > ------------------ 原始邮件 ------------------
>>> > > 发件人: "Yangze Guo" <ka...@gmail.com>;
>>> > > 发送时间: 2021年4月6日(星期二) 下午4:32
>>> > > 收件人: "太平洋"<49...@qq.com>;
>>> > > 抄送: "user"<us...@flink.apache.org>;
>>> > > 主题: Re: period batch job lead to OutOfMemoryError: Metaspace problem
>>> > >
>>> > > I think you can try to increase the JVM metaspace option for
>>> > > TaskManagers through taskmanager.memory.jvm-metaspace.size. [1]
>>> > >
>>> > > [1]
>>> https://ci.apache.org/projects/flink/flink-docs-master/docs/deployment/memory/mem_trouble/#outofmemoryerror-metaspace
>>> > >
>>> > > Best,
>>> > > Yangze Guo
>>> > >
>>> > > Best,
>>> > > Yangze Guo
>>> > >
>>> > >
>>> > > On Tue, Apr 6, 2021 at 4:22 PM 太平洋 <49...@qq.com> wrote:
>>> > > >
>>> > > > batch job:
>>> > > > read data from s3 by sql,then by some operators and write data to
>>> clickhouse and kafka.
>>> > > > after some times, task-manager quit with OutOfMemoryError:
>>> Metaspace.
>>> > > >
>>> > > > env:
>>> > > > flink version:1.12.2
>>> > > > task-manager slot count: 5
>>> > > > deployment: standalone kubernetes session 模式
>>> > > > dependencies:
>>> > > >
>>> > > >     <dependency>
>>> > > >
>>> > > >       <groupId>org.apache.flink</groupId>
>>> > > >
>>> > > >       <artifactId>flink-connector-kafka_2.11</artifactId>
>>> > > >
>>> > > >       <version>${flink.version}</version>
>>> > > >
>>> > > >     </dependency>
>>> > > >
>>> > > >     <dependency>
>>> > > >
>>> > > >       <groupId>com.google.code.gson</groupId>
>>> > > >
>>> > > >       <artifactId>gson</artifactId>
>>> > > >
>>> > > >       <version>2.8.5</version>
>>> > > >
>>> > > >     </dependency>
>>> > > >
>>> > > >     <dependency>
>>> > > >
>>> > > >       <groupId>org.apache.flink</groupId>
>>> > > >
>>> > > >       <artifactId>flink-connector-jdbc_2.11</artifactId>
>>> > > >
>>> > > >       <version>${flink.version}</version>
>>> > > >
>>> > > >     </dependency>
>>> > > >
>>> > > >     <dependency>
>>> > > >
>>> > > >       <groupId>ru.yandex.clickhouse</groupId>
>>> > > >
>>> > > >       <artifactId>clickhouse-jdbc</artifactId>
>>> > > >
>>> > > >       <version>0.3.0</version>
>>> > > >
>>> > > >     </dependency>
>>> > > >
>>> > > >     <dependency>
>>> > > >
>>> > > >       <groupId>org.apache.flink</groupId>
>>> > > >
>>> > > >         <artifactId>flink-parquet_2.11</artifactId>
>>> > > >
>>> > > >         <version>${flink.version}</version>
>>> > > >
>>> > > >     </dependency>
>>> > > >
>>> > > >     <dependency>
>>> > > >
>>> > > >          <groupId>org.apache.flink</groupId>
>>> > > >
>>> > > >          <artifactId>flink-json</artifactId>
>>> > > >
>>> > > >          <version>${flink.version}</version>
>>> > > >
>>> > > >     </dependency>
>>> > > >
>>> > > >
>>> > > > heap dump1:
>>> > > >
>>> > > > Leak Suspects
>>> > > >
>>> > > > System Overview
>>> > > >
>>> > > >  Leaks
>>> > > >
>>> > > >  Overview
>>> > > >
>>> > > >
>>> > > >   Problem Suspect 1
>>> > > >
>>> > > > 21 instances of "org.apache.flink.util.ChildFirstClassLoader",
>>> loaded by "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy
>>> 29,656,880 (41.16%) bytes.
>>> > > >
>>> > > > Biggest instances:
>>> > > >
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73ca2a1e8 -
>>> 1,474,760 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d2af820 -
>>> 1,474,168 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73cdcaa10 -
>>> 1,474,160 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73cf6aab0 -
>>> 1,474,160 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d1111d8 -
>>> 1,474,160 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d2bb108 -
>>> 1,474,128 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73de202e0 -
>>> 1,474,120 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73dadc778 -
>>> 1,474,112 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d5f70e8 -
>>> 1,474,064 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d93aa38 -
>>> 1,474,064 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e179638 -
>>> 1,474,064 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73dc80418 -
>>> 1,474,056 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73dfcda60 -
>>> 1,474,056 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e4bcd38 -
>>> 1,474,056 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d6006e8 -
>>> 1,474,032 (2.05%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73c7d2ad8 -
>>> 1,461,944 (2.03%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73ca1bb98 -
>>> 1,460,752 (2.03%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73bf203f0 -
>>> 1,460,744 (2.03%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e3284a8 -
>>> 1,445,232 (2.01%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e65de00 -
>>> 1,445,232 (2.01%) bytes.
>>> > > >
>>> > > >
>>> > > >
>>> > > > Keywords
>>> > > > org.apache.flink.util.ChildFirstClassLoader
>>> > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>>> > > > Details »
>>> > > >
>>> > > >   Problem Suspect 2
>>> > > >
>>> > > > 34,407 instances of
>>> "org.apache.flink.core.memory.HybridMemorySegment", loaded by
>>> "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy 7,707,168 (10.70%)
>>> bytes.
>>> > > >
>>> > > > Keywords
>>> > > > org.apache.flink.core.memory.HybridMemorySegment
>>> > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>>> > > >
>>> > > > Details »
>>> > > >
>>> > > >
>>> > > >
>>> > > > heap dump2:
>>> > > >
>>> > > > Leak Suspects
>>> > > >
>>> > > > System Overview
>>> > > >
>>> > > >  Leaks
>>> > > >
>>> > > >  Overview
>>> > > >
>>> > > >   Problem Suspect 1
>>> > > >
>>> > > > 21 instances of "org.apache.flink.util.ChildFirstClassLoader",
>>> loaded by "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy
>>> 26,061,408 (30.68%) bytes.
>>> > > >
>>> > > > Biggest instances:
>>> > > >
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e9e9930 -
>>> 1,474,224 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73edce0b8 -
>>> 1,474,224 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73f1ad7d0 -
>>> 1,474,168 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73f3e5118 -
>>> 1,474,168 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73f5d3fe0 -
>>> 1,474,168 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73ebd8d28 -
>>> 1,474,160 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73efc00c0 -
>>> 1,474,160 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e2251a8 -
>>> 1,474,136 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73cc24af0 -
>>> 1,474,064 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73cdca3e0 -
>>> 1,474,064 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73cf6f860 -
>>> 1,474,064 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d114768 -
>>> 1,474,064 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73ca6f878 -
>>> 1,474,056 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d2b7640 -
>>> 1,474,056 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d2c1d80 -
>>> 1,474,040 (1.74%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73c7e2868 -
>>> 1,469,720 (1.73%) bytes.
>>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73bf34a98 -
>>> 1,460,808 (1.72%) bytes.
>>> > > >
>>> > > >
>>> > > >
>>> > > > Keywords
>>> > > > org.apache.flink.util.ChildFirstClassLoader
>>> > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>>> > > > Details »
>>> > > >
>>> > > >   Problem Suspect 2
>>> > > >
>>> > > > 4 instances of
>>> "org.apache.flink.streaming.runtime.tasks.OneInputStreamTask", loaded by
>>> "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy 11,644,200 (13.71%)
>>> bytes.
>>> > > >
>>> > > > Biggest instances:
>>> > > >
>>> > > > org.apache.flink.streaming.runtime.tasks.OneInputStreamTask @
>>> 0x73e2d0cb0 - 4,364,536 (5.14%) bytes.
>>> > > > org.apache.flink.streaming.runtime.tasks.OneInputStreamTask @
>>> 0x73d62fb88 - 3,643,576 (4.29%) bytes.
>>> > > > org.apache.flink.streaming.runtime.tasks.OneInputStreamTask @
>>> 0x73dae0270 - 3,635,952 (4.28%) bytes.
>>> > > >
>>> > > >
>>> > > >
>>> > > > Keywords
>>> > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>>> > > > org.apache.flink.streaming.runtime.tasks.OneInputStreamTask
>>> > > > Details »
>>> > > >
>>> > > >
>>>
>>

Re: 回复: period batch job lead to OutOfMemoryError: Metaspace problem

Posted by Maciek Próchniak <mp...@touk.pl>.
Hi Arvid,

"You can still bundle it into your jar if you prefer it." - is it really 
the case with JDBC drivers? I think that if the driver is not on Flink 
main classpath (that is, in the lib folder) there is no way the class 
would be loaded by main classloader - regardless of parent/child 
classloader setting?

Those settings will help if the driver is both on Flink classpath and in 
user jar - I noticed now the documentation is slightly misleading 
suggesting otherwise, isn't it?


thanks,

maciek


On 09.04.2021 11:25, Arvid Heise wrote:
> Hi,
>
> What do you mean by light-weight way? Just to clarify: you copy the 
> jar once in the lib folder and restart the cluster once (and put it 
> into the lib/ for future clusters). Not sure how it would be more 
> light-weight.
>
> You can still bundle it into your jar if you prefer it. It just tends 
> to be big but if it's easier for you to not touch the cluster, then 
> just put everything into your jar.
>
> On Fri, Apr 9, 2021 at 4:08 AM 太平洋 <495635097@qq.com 
> <ma...@qq.com>> wrote:
>
>     I have tried  to add
>     'classloader.parent-first-patterns.additional:
>     "ru.yandex.clickhouse" ' to flink-config, but problem still exist.
>     Is there lightweight way to put clickhouse JDBC driver on Flink
>     lib/ folder?
>
>     ------------------ 原始邮件 ------------------
>     *发件人:* "Maciek Próchniak" <mpr@touk.pl <ma...@touk.pl>>;
>     *发送时间:* 2021年4月9日(星期五) 凌晨3:24
>     *收件人:* "太平洋"<495635097@qq.com <ma...@qq.com>>;"Arvid
>     Heise"<arvid@apache.org <ma...@apache.org>>;"Yangze
>     Guo"<karmagyz@gmail.com <ma...@gmail.com>>;
>     *抄送:* "user"<user@flink.apache.org
>     <ma...@flink.apache.org>>;"guowei.mgw"<guowei.mgw@gmail.com
>     <ma...@gmail.com>>;"renqschn"<renqschn@gmail.com
>     <ma...@gmail.com>>;
>     *主题:* Re: 回复: period batch job lead to OutOfMemoryError:
>     Metaspace problem
>
>     Hi,
>
>     Did you put the clickhouse JDBC driver on Flink main classpath (in
>     lib folder) and not in user-jar - as described here:
>     https://ci.apache.org/projects/flink/flink-docs-release-1.12/ops/debugging/debugging_classloading.html#unloading-of-dynamically-loaded-classes-in-user-code
>     <https://ci.apache.org/projects/flink/flink-docs-release-1.12/ops/debugging/debugging_classloading.html#unloading-of-dynamically-loaded-classes-in-user-code>?
>
>     When we encountered Metaspace leaks recently, in quite a few cases
>     it turned out that the problem was the JDBC driver in user
>     classloder which was registered by DriverManager and caused
>     classloader leak.
>
>
>     maciek
>
>
>     On 08.04.2021 11:42, 太平洋 wrote:
>>     My application program looks like this. Does this structure has
>>     some problem?
>>
>>     public class StreamingJob {
>>     public static void main(String[] args) throws Exception {
>>     int i = 0;
>>     while (i < 100) {
>>     try {
>>     StreamExecutionEnvironment env =
>>     StreamExecutionEnvironment.getExecutionEnvironment();
>>     env.setRuntimeMode(RuntimeExecutionMode.BATCH);
>>     env.setParallelism(Parallelism);
>>
>>     EnvironmentSettings bsSettings =
>>     EnvironmentSettings.newInstance().useBlinkPlanner()
>>     .inStreamingMode().build();
>>     StreamTableEnvironment bsTableEnv =
>>     StreamTableEnvironment.create(env, bsSettings);
>>
>>     bsTableEnv.executeSql("CREATE TEMPORARY TABLE xxxx");
>>     Table t = bsTableEnv.sqlQuery(query);
>>
>>     DataStream<DataPoint> points = bsTableEnv.toAppendStream(t,
>>     DataPoint.class);
>>
>>     DataStream<StatisPoint> weightPoints = points.map();
>>
>>     DataStream<PredictPoint> predictPoints = weightPoints.keyBy()
>>     .reduce().map();
>>
>>     // side output
>>     final OutputTag<PredictPoint> outPutPredict = new
>>     OutputTag<PredictPoint>("predict") {
>>     };
>>
>>     SingleOutputStreamOperator<PredictPoint> mainDataStream =
>>     predictPoints
>>     .process();
>>
>>     DataStream<PredictPoint> exStream =
>>     mainDataStream.getSideOutput(outPutPredict);
>>
>>                                             //write data to clickhouse
>>     String insertIntoCKSql = "xxx";
>>     mainDataStream.addSink(JdbcSink.sink(insertIntoCKSql, new
>>     CkSinkBuilder(),
>>     new
>>     JdbcExecutionOptions.Builder().withBatchSize(CkBatchSize).build(),
>>     new
>>     JdbcConnectionOptions.JdbcConnectionOptionsBuilder().withDriverName(CkDriverName)
>>     .withUrl(CkUrl).withUsername(CkUser).withPassword(CkPassword).build()));
>>
>>     // write data to kafka
>>     FlinkKafkaProducer<String> producer = new FlinkKafkaProducer<>();
>>     exStream.map().addSink(producer);
>>
>>     env.execute("Prediction Program");
>>     } catch (Exception e) {
>>     e.printStackTrace();
>>     }
>>     i++;
>>     Thread.sleep(window * 1000);
>>     }
>>     }
>>     }
>>
>>
>>
>>     ------------------ 原始邮件 ------------------
>>     *发件人:* "Arvid Heise" <ar...@apache.org> <ma...@apache.org>;
>>     *发送时间:* 2021年4月8日(星期四) 下午2:33
>>     *收件人:* "Yangze Guo"<ka...@gmail.com>
>>     <ma...@gmail.com>;
>>     *抄送:* "太平洋"<49...@qq.com>
>>     <ma...@flink.apache.org>
>>     <ma...@gmail.com>
>>     <ma...@gmail.com>
>>     <ma...@gmail.com>;
>>     *主题:* Re: period batch job lead to OutOfMemoryError: Metaspace
>>     problem
>>
>>     Hi,
>>
>>     ChildFirstClassLoader are created (more or less) by application
>>     jar and seeing so many looks like a classloader leak to me. I'd
>>     expect you to see a new ChildFirstClassLoader popping up with
>>     each new job submission.
>>
>>     Can you check who is referencing the ChildFirstClassLoader
>>     transitively? Usually, it's some thread that is lingering around
>>     because some third party library is leaking threads etc.
>>
>>     OneInputStreamTask is legit and just indicates that you have a
>>     job running with 4 slots on that TM. It should not hold any
>>     dedicated metaspace memory.
>>
>>     On Thu, Apr 8, 2021 at 4:52 AM Yangze Guo <karmagyz@gmail.com
>>     <ma...@gmail.com>> wrote:
>>
>>         I went through the JM & TM logs but could not find any
>>         valuable clue.
>>         The exception is actually thrown by
>>         kafka-producer-network-thread.
>>         Maybe @Qingsheng could also take a look?
>>
>>
>>         Best,
>>         Yangze Guo
>>
>>         On Thu, Apr 8, 2021 at 10:39 AM 太平洋 <495635097@qq.com
>>         <ma...@qq.com>> wrote:
>>         >
>>         > I have configured to 512M, but problem still exist. Now the
>>         memory size is still 256M.
>>         > Attachments are TM and JM logs.
>>         >
>>         > Look forward to your reply.
>>         >
>>         > ------------------ 原始邮件 ------------------
>>         > 发件人: "Yangze Guo" <karmagyz@gmail.com
>>         <ma...@gmail.com>>;
>>         > 发送时间: 2021年4月6日(星期二) 晚上6:35
>>         > 收件人: "太平洋"<495635097@qq.com <ma...@qq.com>>;
>>         > 抄送: "user"<user@flink.apache.org
>>         <ma...@flink.apache.org>>;"guowei.mgw"<guowei.mgw@gmail.com
>>         <ma...@gmail.com>>;
>>         > 主题: Re: period batch job lead to OutOfMemoryError:
>>         Metaspace problem
>>         >
>>         > > I have tried this method, but the problem still exist.
>>         > How much memory do you configure for it?
>>         >
>>         > > is 21 instances of
>>         "org.apache.flink.util.ChildFirstClassLoader" normal
>>         > Not quite sure about it. AFAIK, each job will have a
>>         classloader.
>>         > Multiple tasks of the same job in the same TM will share
>>         the same
>>         > classloader. The classloader will be removed if there is no
>>         more task
>>         > running on the TM. Classloader without reference will be
>>         finally
>>         > cleanup by GC. Could you share JM and TM logs for further
>>         analysis?
>>         > I'll also involve @Guowei Ma in this thread.
>>         >
>>         >
>>         > Best,
>>         > Yangze Guo
>>         >
>>         > On Tue, Apr 6, 2021 at 6:05 PM 太平洋 <495635097@qq.com
>>         <ma...@qq.com>> wrote:
>>         > >
>>         > > I have tried this method, but the problem still exist.
>>         > > by heap dump analysis, is 21 instances of
>>         "org.apache.flink.util.ChildFirstClassLoader" normal?
>>         > >
>>         > >
>>         > > ------------------ 原始邮件 ------------------
>>         > > 发件人: "Yangze Guo" <karmagyz@gmail.com
>>         <ma...@gmail.com>>;
>>         > > 发送时间: 2021年4月6日(星期二) 下午4:32
>>         > > 收件人: "太平洋"<495635097@qq.com <ma...@qq.com>>;
>>         > > 抄送: "user"<user@flink.apache.org
>>         <ma...@flink.apache.org>>;
>>         > > 主题: Re: period batch job lead to OutOfMemoryError:
>>         Metaspace problem
>>         > >
>>         > > I think you can try to increase the JVM metaspace option for
>>         > > TaskManagers through
>>         taskmanager.memory.jvm-metaspace.size. [1]
>>         > >
>>         > > [1]
>>         https://ci.apache.org/projects/flink/flink-docs-master/docs/deployment/memory/mem_trouble/#outofmemoryerror-metaspace
>>         <https://ci.apache.org/projects/flink/flink-docs-master/docs/deployment/memory/mem_trouble/#outofmemoryerror-metaspace>
>>         > >
>>         > > Best,
>>         > > Yangze Guo
>>         > >
>>         > > Best,
>>         > > Yangze Guo
>>         > >
>>         > >
>>         > > On Tue, Apr 6, 2021 at 4:22 PM 太平洋 <495635097@qq.com
>>         <ma...@qq.com>> wrote:
>>         > > >
>>         > > > batch job:
>>         > > > read data from s3 by sql,then by some operators and
>>         write data to clickhouse and kafka.
>>         > > > after some times, task-manager quit with
>>         OutOfMemoryError: Metaspace.
>>         > > >
>>         > > > env:
>>         > > > flink version:1.12.2
>>         > > > task-manager slot count: 5
>>         > > > deployment: standalone kubernetes session 模式
>>         > > > dependencies:
>>         > > >
>>         > > >     <dependency>
>>         > > >
>>         > > >  <groupId>org.apache.flink</groupId>
>>         > > >
>>         > > >  <artifactId>flink-connector-kafka_2.11</artifactId>
>>         > > >
>>         > > >  <version>${flink.version}</version>
>>         > > >
>>         > > >     </dependency>
>>         > > >
>>         > > >     <dependency>
>>         > > >
>>         > > >  <groupId>com.google.code.gson</groupId>
>>         > > >
>>         > > >  <artifactId>gson</artifactId>
>>         > > >
>>         > > >  <version>2.8.5</version>
>>         > > >
>>         > > >     </dependency>
>>         > > >
>>         > > >     <dependency>
>>         > > >
>>         > > >  <groupId>org.apache.flink</groupId>
>>         > > >
>>         > > >  <artifactId>flink-connector-jdbc_2.11</artifactId>
>>         > > >
>>         > > >  <version>${flink.version}</version>
>>         > > >
>>         > > >     </dependency>
>>         > > >
>>         > > >     <dependency>
>>         > > >
>>         > > >  <groupId>ru.yandex.clickhouse</groupId>
>>         > > >
>>         > > >  <artifactId>clickhouse-jdbc</artifactId>
>>         > > >
>>         > > >  <version>0.3.0</version>
>>         > > >
>>         > > >     </dependency>
>>         > > >
>>         > > >     <dependency>
>>         > > >
>>         > > >  <groupId>org.apache.flink</groupId>
>>         > > >
>>         > > >  <artifactId>flink-parquet_2.11</artifactId>
>>         > > >
>>         > > >  <version>${flink.version}</version>
>>         > > >
>>         > > >     </dependency>
>>         > > >
>>         > > >     <dependency>
>>         > > >
>>         > > > <groupId>org.apache.flink</groupId>
>>         > > >
>>         > > > <artifactId>flink-json</artifactId>
>>         > > >
>>         > > > <version>${flink.version}</version>
>>         > > >
>>         > > >     </dependency>
>>         > > >
>>         > > >
>>         > > > heap dump1:
>>         > > >
>>         > > > Leak Suspects
>>         > > >
>>         > > > System Overview
>>         > > >
>>         > > >  Leaks
>>         > > >
>>         > > >  Overview
>>         > > >
>>         > > >
>>         > > >   Problem Suspect 1
>>         > > >
>>         > > > 21 instances of
>>         "org.apache.flink.util.ChildFirstClassLoader", loaded by
>>         "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy
>>         29,656,880 (41.16%) bytes.
>>         > > >
>>         > > > Biggest instances:
>>         > > >
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73ca2a1e8 - 1,474,760 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73d2af820 - 1,474,168 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73cdcaa10 - 1,474,160 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73cf6aab0 - 1,474,160 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73d1111d8 - 1,474,160 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73d2bb108 - 1,474,128 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73de202e0 - 1,474,120 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73dadc778 - 1,474,112 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73d5f70e8 - 1,474,064 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73d93aa38 - 1,474,064 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73e179638 - 1,474,064 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73dc80418 - 1,474,056 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73dfcda60 - 1,474,056 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73e4bcd38 - 1,474,056 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73d6006e8 - 1,474,032 (2.05%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73c7d2ad8 - 1,461,944 (2.03%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73ca1bb98 - 1,460,752 (2.03%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73bf203f0 - 1,460,744 (2.03%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73e3284a8 - 1,445,232 (2.01%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73e65de00 - 1,445,232 (2.01%) bytes.
>>         > > >
>>         > > >
>>         > > >
>>         > > > Keywords
>>         > > > org.apache.flink.util.ChildFirstClassLoader
>>         > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>>         > > > Details »
>>         > > >
>>         > > >   Problem Suspect 2
>>         > > >
>>         > > > 34,407 instances of
>>         "org.apache.flink.core.memory.HybridMemorySegment", loaded by
>>         "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy
>>         7,707,168 (10.70%) bytes.
>>         > > >
>>         > > > Keywords
>>         > > > org.apache.flink.core.memory.HybridMemorySegment
>>         > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>>         > > >
>>         > > > Details »
>>         > > >
>>         > > >
>>         > > >
>>         > > > heap dump2:
>>         > > >
>>         > > > Leak Suspects
>>         > > >
>>         > > > System Overview
>>         > > >
>>         > > >  Leaks
>>         > > >
>>         > > >  Overview
>>         > > >
>>         > > >   Problem Suspect 1
>>         > > >
>>         > > > 21 instances of
>>         "org.apache.flink.util.ChildFirstClassLoader", loaded by
>>         "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy
>>         26,061,408 (30.68%) bytes.
>>         > > >
>>         > > > Biggest instances:
>>         > > >
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73e9e9930 - 1,474,224 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73edce0b8 - 1,474,224 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73f1ad7d0 - 1,474,168 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73f3e5118 - 1,474,168 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73f5d3fe0 - 1,474,168 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73ebd8d28 - 1,474,160 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73efc00c0 - 1,474,160 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73e2251a8 - 1,474,136 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73cc24af0 - 1,474,064 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73cdca3e0 - 1,474,064 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73cf6f860 - 1,474,064 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73d114768 - 1,474,064 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73ca6f878 - 1,474,056 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73d2b7640 - 1,474,056 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73d2c1d80 - 1,474,040 (1.74%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73c7e2868 - 1,469,720 (1.73%) bytes.
>>         > > > org.apache.flink.util.ChildFirstClassLoader @
>>         0x73bf34a98 - 1,460,808 (1.72%) bytes.
>>         > > >
>>         > > >
>>         > > >
>>         > > > Keywords
>>         > > > org.apache.flink.util.ChildFirstClassLoader
>>         > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>>         > > > Details »
>>         > > >
>>         > > >   Problem Suspect 2
>>         > > >
>>         > > > 4 instances of
>>         "org.apache.flink.streaming.runtime.tasks.OneInputStreamTask",
>>         loaded by "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0"
>>         occupy 11,644,200 (13.71%) bytes.
>>         > > >
>>         > > > Biggest instances:
>>         > > >
>>         > > >
>>         org.apache.flink.streaming.runtime.tasks.OneInputStreamTask @
>>         0x73e2d0cb0 - 4,364,536 (5.14%) bytes.
>>         > > >
>>         org.apache.flink.streaming.runtime.tasks.OneInputStreamTask @
>>         0x73d62fb88 - 3,643,576 (4.29%) bytes.
>>         > > >
>>         org.apache.flink.streaming.runtime.tasks.OneInputStreamTask @
>>         0x73dae0270 - 3,635,952 (4.28%) bytes.
>>         > > >
>>         > > >
>>         > > >
>>         > > > Keywords
>>         > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>>         > > > org.apache.flink.streaming.runtime.tasks.OneInputStreamTask
>>         > > > Details »
>>         > > >
>>         > > >
>>

Re: 回复: period batch job lead to OutOfMemoryError: Metaspace problem

Posted by Arvid Heise <ar...@apache.org>.
Hi,

What do you mean by light-weight way? Just to clarify: you copy the jar
once in the lib folder and restart the cluster once (and put it into the
lib/ for future clusters). Not sure how it would be more light-weight.

You can still bundle it into your jar if you prefer it. It just tends to be
big but if it's easier for you to not touch the cluster, then just put
everything into your jar.

On Fri, Apr 9, 2021 at 4:08 AM 太平洋 <49...@qq.com> wrote:

> I have tried  to add 'classloader.parent-first-patterns.additional:
> "ru.yandex.clickhouse" ' to flink-config, but problem still exist.
> Is there lightweight way to put clickhouse JDBC driver on Flink lib/
> folder?
>
>
> ------------------ 原始邮件 ------------------
> *发件人:* "Maciek Próchniak" <mp...@touk.pl>;
> *发送时间:* 2021年4月9日(星期五) 凌晨3:24
> *收件人:* "太平洋"<49...@qq.com>;"Arvid Heise"<ar...@apache.org>;"Yangze
> Guo"<ka...@gmail.com>;
> *抄送:* "user"<us...@flink.apache.org>;"guowei.mgw"<guowei.mgw@gmail.com
> >;"renqschn"<re...@gmail.com>;
> *主题:* Re: 回复: period batch job lead to OutOfMemoryError: Metaspace problem
>
> Hi,
>
> Did you put the clickhouse JDBC driver on Flink main classpath (in lib
> folder) and not in user-jar - as described here:
> https://ci.apache.org/projects/flink/flink-docs-release-1.12/ops/debugging/debugging_classloading.html#unloading-of-dynamically-loaded-classes-in-user-code
> ?
>
> When we encountered Metaspace leaks recently, in quite a few cases it
> turned out that the problem was the JDBC driver in user classloder which
> was registered by DriverManager and caused classloader leak.
>
>
> maciek
>
>
> On 08.04.2021 11:42, 太平洋 wrote:
>
> My application program looks like this. Does this structure has some
> problem?
>
> public class StreamingJob {
> public static void main(String[] args) throws Exception {
> int i = 0;
> while (i < 100) {
> try {
> StreamExecutionEnvironment env =
> StreamExecutionEnvironment.getExecutionEnvironment();
> env.setRuntimeMode(RuntimeExecutionMode.BATCH);
> env.setParallelism(Parallelism);
>
> EnvironmentSettings bsSettings =
> EnvironmentSettings.newInstance().useBlinkPlanner()
> .inStreamingMode().build();
> StreamTableEnvironment bsTableEnv = StreamTableEnvironment.create(env,
> bsSettings);
>
> bsTableEnv.executeSql("CREATE TEMPORARY TABLE xxxx");
> Table t = bsTableEnv.sqlQuery(query);
>
> DataStream<DataPoint> points = bsTableEnv.toAppendStream(t,
> DataPoint.class);
>
> DataStream<StatisPoint> weightPoints = points.map();
>
> DataStream<PredictPoint> predictPoints = weightPoints.keyBy()
> .reduce().map();
>
> // side output
> final OutputTag<PredictPoint> outPutPredict = new
> OutputTag<PredictPoint>("predict") {
> };
>
> SingleOutputStreamOperator<PredictPoint> mainDataStream = predictPoints
> .process();
>
> DataStream<PredictPoint> exStream =
> mainDataStream.getSideOutput(outPutPredict);
>
>                                         //write data to clickhouse
> String insertIntoCKSql = "xxx";
> mainDataStream.addSink(JdbcSink.sink(insertIntoCKSql, new CkSinkBuilder(),
> new JdbcExecutionOptions.Builder().withBatchSize(CkBatchSize).build(),
> new
> JdbcConnectionOptions.JdbcConnectionOptionsBuilder().withDriverName(CkDriverName)
> .withUrl(CkUrl).withUsername(CkUser).withPassword(CkPassword).build()));
>
> // write data to kafka
> FlinkKafkaProducer<String> producer = new FlinkKafkaProducer<>();
> exStream.map().addSink(producer);
>
> env.execute("Prediction Program");
> } catch (Exception e) {
> e.printStackTrace();
> }
> i++;
> Thread.sleep(window * 1000);
> }
> }
> }
>
>
>
> ------------------ 原始邮件 ------------------
> *发件人:* "Arvid Heise" <ar...@apache.org> <ar...@apache.org>;
> *发送时间:* 2021年4月8日(星期四) 下午2:33
> *收件人:* "Yangze Guo"<ka...@gmail.com> <ka...@gmail.com>;
> *抄送:* "太平洋"<49...@qq.com> <49...@qq.com>;"user"
> <us...@flink.apache.org> <us...@flink.apache.org>;"guowei.mgw"
> <gu...@gmail.com> <gu...@gmail.com>;"renqschn"
> <re...@gmail.com> <re...@gmail.com>;
> *主题:* Re: period batch job lead to OutOfMemoryError: Metaspace problem
>
> Hi,
>
> ChildFirstClassLoader are created (more or less) by application jar and
> seeing so many looks like a classloader leak to me. I'd expect you to see a
> new ChildFirstClassLoader popping up with each new job submission.
>
> Can you check who is referencing the ChildFirstClassLoader transitively?
> Usually, it's some thread that is lingering around because some third party
> library is leaking threads etc.
>
> OneInputStreamTask is legit and just indicates that you have a job running
> with 4 slots on that TM. It should not hold any dedicated metaspace memory.
>
> On Thu, Apr 8, 2021 at 4:52 AM Yangze Guo <ka...@gmail.com> wrote:
>
>> I went through the JM & TM logs but could not find any valuable clue.
>> The exception is actually thrown by kafka-producer-network-thread.
>> Maybe @Qingsheng could also take a look?
>>
>>
>> Best,
>> Yangze Guo
>>
>> On Thu, Apr 8, 2021 at 10:39 AM 太平洋 <49...@qq.com> wrote:
>> >
>> > I have configured to 512M, but problem still exist. Now the memory size
>> is still 256M.
>> > Attachments are TM and JM logs.
>> >
>> > Look forward to your reply.
>> >
>> > ------------------ 原始邮件 ------------------
>> > 发件人: "Yangze Guo" <ka...@gmail.com>;
>> > 发送时间: 2021年4月6日(星期二) 晚上6:35
>> > 收件人: "太平洋"<49...@qq.com>;
>> > 抄送: "user"<us...@gmail.com>;
>> > 主题: Re: period batch job lead to OutOfMemoryError: Metaspace problem
>> >
>> > > I have tried this method, but the problem still exist.
>> > How much memory do you configure for it?
>> >
>> > > is 21 instances of "org.apache.flink.util.ChildFirstClassLoader"
>> normal
>> > Not quite sure about it. AFAIK, each job will have a classloader.
>> > Multiple tasks of the same job in the same TM will share the same
>> > classloader. The classloader will be removed if there is no more task
>> > running on the TM. Classloader without reference will be finally
>> > cleanup by GC. Could you share JM and TM logs for further analysis?
>> > I'll also involve @Guowei Ma in this thread.
>> >
>> >
>> > Best,
>> > Yangze Guo
>> >
>> > On Tue, Apr 6, 2021 at 6:05 PM 太平洋 <49...@qq.com> wrote:
>> > >
>> > > I have tried this method, but the problem still exist.
>> > > by heap dump analysis, is 21 instances of
>> "org.apache.flink.util.ChildFirstClassLoader" normal?
>> > >
>> > >
>> > > ------------------ 原始邮件 ------------------
>> > > 发件人: "Yangze Guo" <ka...@gmail.com>;
>> > > 发送时间: 2021年4月6日(星期二) 下午4:32
>> > > 收件人: "太平洋"<49...@qq.com>;
>> > > 抄送: "user"<us...@flink.apache.org>;
>> > > 主题: Re: period batch job lead to OutOfMemoryError: Metaspace problem
>> > >
>> > > I think you can try to increase the JVM metaspace option for
>> > > TaskManagers through taskmanager.memory.jvm-metaspace.size. [1]
>> > >
>> > > [1]
>> https://ci.apache.org/projects/flink/flink-docs-master/docs/deployment/memory/mem_trouble/#outofmemoryerror-metaspace
>> > >
>> > > Best,
>> > > Yangze Guo
>> > >
>> > > Best,
>> > > Yangze Guo
>> > >
>> > >
>> > > On Tue, Apr 6, 2021 at 4:22 PM 太平洋 <49...@qq.com> wrote:
>> > > >
>> > > > batch job:
>> > > > read data from s3 by sql,then by some operators and write data to
>> clickhouse and kafka.
>> > > > after some times, task-manager quit with OutOfMemoryError:
>> Metaspace.
>> > > >
>> > > > env:
>> > > > flink version:1.12.2
>> > > > task-manager slot count: 5
>> > > > deployment: standalone kubernetes session 模式
>> > > > dependencies:
>> > > >
>> > > >     <dependency>
>> > > >
>> > > >       <groupId>org.apache.flink</groupId>
>> > > >
>> > > >       <artifactId>flink-connector-kafka_2.11</artifactId>
>> > > >
>> > > >       <version>${flink.version}</version>
>> > > >
>> > > >     </dependency>
>> > > >
>> > > >     <dependency>
>> > > >
>> > > >       <groupId>com.google.code.gson</groupId>
>> > > >
>> > > >       <artifactId>gson</artifactId>
>> > > >
>> > > >       <version>2.8.5</version>
>> > > >
>> > > >     </dependency>
>> > > >
>> > > >     <dependency>
>> > > >
>> > > >       <groupId>org.apache.flink</groupId>
>> > > >
>> > > >       <artifactId>flink-connector-jdbc_2.11</artifactId>
>> > > >
>> > > >       <version>${flink.version}</version>
>> > > >
>> > > >     </dependency>
>> > > >
>> > > >     <dependency>
>> > > >
>> > > >       <groupId>ru.yandex.clickhouse</groupId>
>> > > >
>> > > >       <artifactId>clickhouse-jdbc</artifactId>
>> > > >
>> > > >       <version>0.3.0</version>
>> > > >
>> > > >     </dependency>
>> > > >
>> > > >     <dependency>
>> > > >
>> > > >       <groupId>org.apache.flink</groupId>
>> > > >
>> > > >         <artifactId>flink-parquet_2.11</artifactId>
>> > > >
>> > > >         <version>${flink.version}</version>
>> > > >
>> > > >     </dependency>
>> > > >
>> > > >     <dependency>
>> > > >
>> > > >          <groupId>org.apache.flink</groupId>
>> > > >
>> > > >          <artifactId>flink-json</artifactId>
>> > > >
>> > > >          <version>${flink.version}</version>
>> > > >
>> > > >     </dependency>
>> > > >
>> > > >
>> > > > heap dump1:
>> > > >
>> > > > Leak Suspects
>> > > >
>> > > > System Overview
>> > > >
>> > > >  Leaks
>> > > >
>> > > >  Overview
>> > > >
>> > > >
>> > > >   Problem Suspect 1
>> > > >
>> > > > 21 instances of "org.apache.flink.util.ChildFirstClassLoader",
>> loaded by "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy
>> 29,656,880 (41.16%) bytes.
>> > > >
>> > > > Biggest instances:
>> > > >
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73ca2a1e8 -
>> 1,474,760 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d2af820 -
>> 1,474,168 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73cdcaa10 -
>> 1,474,160 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73cf6aab0 -
>> 1,474,160 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d1111d8 -
>> 1,474,160 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d2bb108 -
>> 1,474,128 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73de202e0 -
>> 1,474,120 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73dadc778 -
>> 1,474,112 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d5f70e8 -
>> 1,474,064 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d93aa38 -
>> 1,474,064 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e179638 -
>> 1,474,064 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73dc80418 -
>> 1,474,056 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73dfcda60 -
>> 1,474,056 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e4bcd38 -
>> 1,474,056 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d6006e8 -
>> 1,474,032 (2.05%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73c7d2ad8 -
>> 1,461,944 (2.03%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73ca1bb98 -
>> 1,460,752 (2.03%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73bf203f0 -
>> 1,460,744 (2.03%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e3284a8 -
>> 1,445,232 (2.01%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e65de00 -
>> 1,445,232 (2.01%) bytes.
>> > > >
>> > > >
>> > > >
>> > > > Keywords
>> > > > org.apache.flink.util.ChildFirstClassLoader
>> > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>> > > > Details »
>> > > >
>> > > >   Problem Suspect 2
>> > > >
>> > > > 34,407 instances of
>> "org.apache.flink.core.memory.HybridMemorySegment", loaded by
>> "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy 7,707,168 (10.70%)
>> bytes.
>> > > >
>> > > > Keywords
>> > > > org.apache.flink.core.memory.HybridMemorySegment
>> > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>> > > >
>> > > > Details »
>> > > >
>> > > >
>> > > >
>> > > > heap dump2:
>> > > >
>> > > > Leak Suspects
>> > > >
>> > > > System Overview
>> > > >
>> > > >  Leaks
>> > > >
>> > > >  Overview
>> > > >
>> > > >   Problem Suspect 1
>> > > >
>> > > > 21 instances of "org.apache.flink.util.ChildFirstClassLoader",
>> loaded by "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy
>> 26,061,408 (30.68%) bytes.
>> > > >
>> > > > Biggest instances:
>> > > >
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e9e9930 -
>> 1,474,224 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73edce0b8 -
>> 1,474,224 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73f1ad7d0 -
>> 1,474,168 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73f3e5118 -
>> 1,474,168 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73f5d3fe0 -
>> 1,474,168 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73ebd8d28 -
>> 1,474,160 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73efc00c0 -
>> 1,474,160 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73e2251a8 -
>> 1,474,136 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73cc24af0 -
>> 1,474,064 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73cdca3e0 -
>> 1,474,064 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73cf6f860 -
>> 1,474,064 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d114768 -
>> 1,474,064 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73ca6f878 -
>> 1,474,056 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d2b7640 -
>> 1,474,056 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73d2c1d80 -
>> 1,474,040 (1.74%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73c7e2868 -
>> 1,469,720 (1.73%) bytes.
>> > > > org.apache.flink.util.ChildFirstClassLoader @ 0x73bf34a98 -
>> 1,460,808 (1.72%) bytes.
>> > > >
>> > > >
>> > > >
>> > > > Keywords
>> > > > org.apache.flink.util.ChildFirstClassLoader
>> > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>> > > > Details »
>> > > >
>> > > >   Problem Suspect 2
>> > > >
>> > > > 4 instances of
>> "org.apache.flink.streaming.runtime.tasks.OneInputStreamTask", loaded by
>> "sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0" occupy 11,644,200 (13.71%)
>> bytes.
>> > > >
>> > > > Biggest instances:
>> > > >
>> > > > org.apache.flink.streaming.runtime.tasks.OneInputStreamTask @
>> 0x73e2d0cb0 - 4,364,536 (5.14%) bytes.
>> > > > org.apache.flink.streaming.runtime.tasks.OneInputStreamTask @
>> 0x73d62fb88 - 3,643,576 (4.29%) bytes.
>> > > > org.apache.flink.streaming.runtime.tasks.OneInputStreamTask @
>> 0x73dae0270 - 3,635,952 (4.28%) bytes.
>> > > >
>> > > >
>> > > >
>> > > > Keywords
>> > > > sun.misc.Launcher$AppClassLoader @ 0x73b2d42e0
>> > > > org.apache.flink.streaming.runtime.tasks.OneInputStreamTask
>> > > > Details »
>> > > >
>> > > >
>>
>