Re: why does MetadataCleanupJob set, NEW_RESOURCE_THREADSHOLD_MS=12h limit ?

2018-10-30 Thread you Zhuang
Hi Shaofeng, when I discard an error build job, the web page does not refresh, I think which can make an improvement. > On Oct 31, 2018, at 9:24 AM, ShaoFeng Shi wrote: > > Okay, thanks for the message, will update the document. > > Alberto Ramón mailto:a.ramonporto...@gmail.com>> >

Re: why does MetadataCleanupJob set, NEW_RESOURCE_THREADSHOLD_MS=12h limit ?

2018-10-30 Thread you Zhuang
You mean job resources , I mean dict, snapshot resources. > On Oct 31, 2018, at 1:09 AM, Alberto Ramón wrote: > > I think this is done (but unodcumented) > Kylin 2602 v2.1, add job > threshold > > > I used it, and works fine > > On Tue, 30

Re: Kylin comprehensive debug documentation

2018-10-30 Thread you Zhuang
Much appreciation to JiaTao, bower install failed before , when I open the proxy , all downloads succeed. Now everything goes well. > On Oct 31, 2018, at 9:46 AM, JiaTao Tao wrote: > > bower --allow-root install >

Re: Kylin comprehensive debug documentation

2018-10-30 Thread you Zhuang
Yeah, I have done above steps, but I think that’s not enough, the final step ‘bower install ‘ just installs some js modules. > On Oct 31, 2018, at 9:46 AM, JiaTao Tao wrote: > > bower --allow-root install >

Re: Kylin comprehensive debug documentation

2018-10-30 Thread JiaTao Tao
Did you do these mentioned in the doc? Launch Kylin Web Server locally Copy server/src/main/webapp/WEB-INF to webapp/app/WEB-INF cp -r server/src/main/webapp/WEB-INF webapp/app/WEB-INF Download JS for Kylin web GUI. npm is part of Node.js, please search about how to install it on your OS. cd

Re: why does MetadataCleanupJob set, NEW_RESOURCE_THREADSHOLD_MS=12h limit ?

2018-10-30 Thread ShaoFeng Shi
Okay, thanks for the message, will update the document. Alberto Ramón 于2018年10月31日周三 上午1:12写道: > I think this is done (but unodcumented) > > Kylin 2602 v2.1, add > job threshold > > I used it, and works fine > > On Tue, 30 Oct 2018 at 11:54,

Re: Kylin comprehensive debug documentation

2018-10-30 Thread you Zhuang
Hi JiaTao, I operate according to http://kylin.apache.org/development/dev_env.html , but css and js becomes 404. Such as http://localhost:7070/kylin/components/bootstrap/dist/css/bootstrap.min.css

Re: why does MetadataCleanupJob set, NEW_RESOURCE_THREADSHOLD_MS=12h limit ?

2018-10-30 Thread ShaoFeng Shi
That is just for safe I think. We can make it configurable so that user can customize it. you Zhuang 于2018年10月30日周二 下午5:06写道: > When I want to cleanup a repeatable error cube ,and then rebuild , dict > error always occurs in build dict step, then I cleanup again and again ,the > dict > >

why does MetadataCleanupJob set, NEW_RESOURCE_THREADSHOLD_MS=12h limit ?

2018-10-30 Thread you Zhuang
When I want to cleanup a repeatable error cube ,and then rebuild , dict error always occurs in build dict step, then I cleanup again and again ,the dict Metadata is never be removed from meta table. I dive into source code , discover that MetadataCleanupJob only cleanup resources 12h before

Re: Kylin comprehensive debug documentation

2018-10-30 Thread you Zhuang
I think your description is no difference with I debug with remote server and one by one debugging mr job > On Oct 30, 2018, at 2:56 PM, JiaTao Tao wrote: > > You cannot debug MR job directly in DebugTomcat. In fact, it might be better > adding more logs for tracing, in my opinion. > > If

Re: Kylin comprehensive debug documentation

2018-10-30 Thread George Ni
Besides, you can write test cases for kylin's MR jobs with mrunit to debug, see org.apache.kylin.engine.mr.steps.NDCuboidMapperTest for reference. Best regards, Chun’en Ni(George) - 原始邮件 - 发件人: JiaTao Tao 收件人: user@kylin.apache.org 已发送邮件: Tue, 30 Oct 2018 14:56:54 +0800 (CST) 主题: Re:

Re: Kylin comprehensive debug documentation

2018-10-30 Thread JiaTao Tao
You cannot debug MR job directly in DebugTomcat. In fact, it might be better adding more logs for tracing, in my opinion. If you do need to debug MR job directly, you may need to change your core-site.xml, mapred-site.xml and etc. to run MR job locally, It is theoretically possible, you can give

Re: Kylin comprehensive debug documentation

2018-10-30 Thread you Zhuang
And also debug map reduce job ? > On Oct 30, 2018, at 12:51 PM, JiaTao Tao wrote: > > You may need this: http://kylin.apache.org/development/dev_env.html > . > Using debug mode to launch org.apache.kylin.rest.DebugTomcat, then you can > debug