-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enhance: Add schema update time verification for insert and upsert to use cache #39096
base: master
Are you sure you want to change the base?
Conversation
@JsDove E2e jenkins job failed, comment |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #39096 +/- ##
===========================================
+ Coverage 69.48% 81.01% +11.53%
===========================================
Files 300 1408 +1108
Lines 26905 198624 +171719
===========================================
+ Hits 18694 160909 +142215
- Misses 8211 32056 +23845
- Partials 0 5659 +5659
|
e9ddceb
to
3185bf6
Compare
580fb0c
to
f69e405
Compare
@JsDove go-sdk check failed, comment |
59713cc
to
61d41bc
Compare
@JsDove E2e jenkins job failed, comment |
@JsDove cpp-unit-test check failed, comment |
rerun cpp-unit-test |
/run-cpu-e2e |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
/approve
@JsDove E2e jenkins job failed, comment |
/run-cpu-e2e |
New changes are detected. LGTM label has been removed. |
@JsDove go-sdk check failed, comment |
@JsDove E2e jenkins job failed, comment |
internal/proxy/task_insert.go
Outdated
if it.schemaTimestamp != 0 { | ||
if it.schemaTimestamp != colInfo.updateTimestamp { | ||
err := merr.WrapErrCollectionSchemaMisMatch(collectionName) | ||
log.Ctx(ctx).Warn("collection schema mismatch", zap.String("collectionName", collectionName), zap.Error(err)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't need a warn log here.
An info should be good because this error is as expected
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: JsDove, liliu-z, xiaofan-luan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
… the cache Signed-off-by: Xianhui.Lin <[email protected]> fix unitest Signed-off-by: Xianhui.Lin <[email protected]> improve Signed-off-by: Xianhui.Lin <[email protected]> improve Signed-off-by: Xianhui.Lin <[email protected]> fix code Signed-off-by: Xianhui.Lin <[email protected]> fix test Signed-off-by: Xianhui.Lin <[email protected]> fix go test Signed-off-by: Xianhui.Lin <[email protected]> add go unitest Signed-off-by: Xianhui.Lin <[email protected]> fix unitest error Signed-off-by: Xianhui.Lin <[email protected]> fix ut Signed-off-by: Xianhui.Lin <[email protected]> improve Signed-off-by: Xianhui.Lin <[email protected]> createcollection use creats Signed-off-by: Xianhui.Lin <[email protected]> save to etcd Signed-off-by: Xianhui.Lin <[email protected]> fix e2e test error Signed-off-by: Xianhui.Lin <[email protected]> modify log level Signed-off-by: Xianhui.Lin <[email protected]>
@JsDove E2e jenkins job failed, comment |
/run-cpu-e2e |
@JsDove E2e jenkins job failed, comment |
/run-cpu-e2e |
…rt to use cache (#39382) enhance: Add schema update time verification for insert and upsert to use cache issue: #39093 Related to pr: #39096 --------- Signed-off-by: Xianhui.Lin <[email protected]>
…rt to use cache (#39405) enhance: Add schema update time verification for insert and upsert to use cache issue: #39093 Related to pr: #39096 Signed-off-by: Xianhui.Lin <[email protected]>
enhance: Add schema update time verification for insert and upsert to use cache
issue: #39093