-
Notifications
You must be signed in to change notification settings - Fork 7
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
chore: --experimental-use-server-side-upsert document #983
Merged
+55
−10
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
2450531
fix option name
chihiro-adachi 4b3c502
add use-server-side-upsert doc
chihiro-adachi b99c233
fix metadata
chihiro-adachi 30bbcef
prettier --write
chihiro-adachi 1f17d68
The wording has been corrected.
chihiro-adachi 55afaff
update record import guide
chihiro-adachi 441c97f
Update website/blog/2025-01-16-cli-kintone-v1-13-0.md
chihiro-adachi 855f943
add a default on schedule
chihiro-adachi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
slug: cli-kintone-v1-13-0 | ||
title: cli-kintone v1.13.0 | ||
authors: [chihiro-adachi, extensions-platform-team] | ||
tags: [release] | ||
--- | ||
|
||
We are happy to announce the release of **cli-kintone v1.13.0** 🎉 | ||
|
||
## What's new? | ||
|
||
### The `--experimental-use-server-side-upsert` option is now available with the record import command (Experimental) | ||
|
||
We have implemented the `--experimental-use-server-side-upsert` option, which executes the record import command using [the upsert option of the bulk record update API](https://cybozu.dev/ja/kintone/docs/rest-api/records/update-records/) | ||
|
||
Previously, cli-kintone has been running with its own upsert mode, but by using `--experimental-use-server-side-upsert`, there is a possibility that the performance of the record import command will improve. | ||
|
||
Specify as follows. | ||
|
||
``` | ||
$ cli-kintone record import --base-url http://localhost --app xxx \ | ||
--api-token xxx \ | ||
--file-path import.csv \ | ||
--update-key レコード番号 \ | ||
--experimental-use-server-side-upsert | ||
``` | ||
|
||
We plan to enable this option by default once we have confirmed its stability. | ||
|
||
## Miscellaneous | ||
|
||
See the [changelog](https://github.com/kintone/cli-kintone/blob/main/CHANGELOG.md#1130-2025-01-16) for an exhaustive list of changes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
安定性が確認できたらデフォルトオンにする予定というのも書いておいて良さそうです。
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.
@tasshi-me
ありがとうございますー
一文追加しました。
855f943