Re:【Doris】使用merge写入数据报错 column(__DORIS_DELETE_SIGN__) value is null while columns is not nullable.

2021-11-18 Thread 温天柱
Thanks a lot! It works! At 2021-11-19 14:23:22, "陈明雨" wrote: >Your delete condition is a little bit complicated: >ods_name_test='\''aa'\'' AND ods_address_test='\''ff'\'' AND >ods_age_test='\''12'\'' AND ods_message_test='\''cc'\'' AND >ods_id_test='\''1'\''' > > >But maybe some of colu

Re:【Doris】使用merge写入数据报错 column(__DORIS_DELETE_SIGN__) value is null while columns is not nullable.

2021-11-18 Thread 陈明雨
Your delete condition is a little bit complicated: ods_name_test='\''aa'\'' AND ods_address_test='\''ff'\'' AND ods_age_test='\''12'\'' AND ods_message_test='\''cc'\'' AND ods_id_test='\''1'\''' But maybe some of column data in delete condition is null? so that `null="aa"` will return null, so

Re:Re: 【Doris】使用merge写入数据报错 column(__DORIS_DELETE_SIGN__) value is null while columns is not nullable.

2021-11-18 Thread 温天柱
谢谢老师的回复。 我还是不理解,我在配置http request的时候,是明确写出了delete条件,所以在merge的情况下,delete条件是不为null的,这种情况下还是写入失败了,同样的报错。 不知道老师能否提供更详细一些的建议呢? 在 2021-11-19 13:22:18,"寒江雪" 写道: >ods_name_test 有可能是null, 因此导致 delete 条件整体为null,所以报错,需要保证delete 条件不为null > >温天柱 于2021年11月19日周五 上午11:40写道: > >> 一、场景描述 >> 使用版本:apache doris

Re: [VOTE] Release Apache Doris 0.15.0-incubating-rc04

2021-11-18 Thread ling miao
+ 1 binding Ling Miao 寒江雪 于2021年11月19日周五 下午1:18写道: > +1 binding > > 陈明雨 于2021年11月16日周二 下午7:10写道: > > > Hi all, > > > > > > > > > > Please review and vote on Apache Doris 0.15.0-incubating-rc04 release. > > > > > > > > > > The release candidate has been tagged in GitHub as 0.15.0-rc04[1] > > >

Re: 【Doris】使用merge写入数据报错 column(__DORIS_DELETE_SIGN__) value is null while columns is not nullable.

2021-11-18 Thread 寒江雪
ods_name_test 有可能是null, 因此导致 delete 条件整体为null,所以报错,需要保证delete 条件不为null 温天柱 于2021年11月19日周五 上午11:40写道: > 一、场景描述 > 使用版本:apache doris 0.14.x > 写入模式:stream-load > 场景: > 在通过http的方式,stream-load向doris写入数据,采用*merge-type*实现*update*的功能。 > (字段顺序为ods_id_test, ods_name_test, ods_messgae_test, ods_age_test, >

Re: [DISCUSS] Where to put the blog resources?

2021-11-18 Thread ling miao
Putting the document in another code base is indeed a solution, but this requires us to ensure the **collaborative compilation** of the document library and the code base when compiling. Because the current Doris system is a built-in help document, and it also needs to be synchronized to the websit

Re: [VOTE] Release Apache Doris 0.15.0-incubating-rc04

2021-11-18 Thread 寒江雪
+1 binding 陈明雨 于2021年11月16日周二 下午7:10写道: > Hi all, > > > > > Please review and vote on Apache Doris 0.15.0-incubating-rc04 release. > > > > > The release candidate has been tagged in GitHub as 0.15.0-rc04[1] > > > > > Release Notes are here[2] > > > > > Thanks to everyone who has contributed to t

Re: [DISCUSS] Where to put the blog resources?

2021-11-18 Thread Gabriel Lee
I think it will be a serious problem soon. Could we maintain the doris-website project separately? It means we should update documents or upload a blog post in doris-website instead of doris. This will keep doris project in a reasonable size but increase maintenance cost. On Fri, 19 Nov 2021 at 10

Re:[DISCUSS] Where to put the blog resources?

2021-11-18 Thread 陈明雨
Yes, I have discussed with @hf200012 yesterday about this issue. There are 3 ways we can do: 1. Move the entire `docs/` dir to the other code repo[1] This can solve the problem of the main repo being too large. But the trouble is that when we update other functional documents, we need to

【Doris】使用merge写入数据报错 column(__DORIS_DELETE_SIGN__) value is null while columns is not nullable.

2021-11-18 Thread 温天柱
一、场景描述 使用版本:apache doris 0.14.x 写入模式:stream-load 场景: 在通过http的方式,stream-load向doris写入数据,采用merge-type实现update的功能。 (字段顺序为ods_id_test, ods_name_test, ods_messgae_test, ods_age_test, ods_address_test) update之前的数据为 1,aa,cc,12,ff 预期之后的数据为 1,aa,cc,12,(null) 以下为http请求内容(已屏蔽敏感信息): curl --location --request

[DISCUSS] Where to put the blog resources?

2021-11-18 Thread ling miao
First of all, I am looking forward to the blog feature very much. But when I was reviewing blog posts, I found that general blog posts will carry a lot of resources, such as pictures. In the future, we will definitely add a lot of blog posts. Will this lead to a larger and larger code base? If the