Skip to content

Increase UI reactiveness on folders manual upserts #11496

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

Merged
merged 24 commits into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
3ba3e28
allow forcing the refresh when indexing/deleting an ES document
aubin-tchoi Mar 20, 2025
e3657eb
pass the force_refresh parameter in core_api.ts
aubin-tchoi Mar 20, 2025
772fcc5
refactor: add an interface CoreAPIUpsertTablePayload
aubin-tchoi Mar 20, 2025
bb6506f
refactor: add an interface CoreAPIUpsertDataSourceFolderPayload
aubin-tchoi Mar 20, 2025
8a932d5
force a refresh on document creation
aubin-tchoi Mar 20, 2025
e28f062
force a refresh on table creation
aubin-tchoi Mar 20, 2025
e4c0efd
add missing force_refresh parameters
aubin-tchoi Mar 20, 2025
d83bb58
flip
aubin-tchoi Mar 20, 2025
9289101
flip again (oops)
aubin-tchoi Mar 20, 2025
bdd4951
add force refresh to the endpoints
aubin-tchoi Mar 20, 2025
13f2e51
rename force_refresh into force_search_index_refresh
aubin-tchoi Mar 20, 2025
c64d3e3
Revert "rename force_refresh into force_search_index_refresh"
aubin-tchoi Mar 20, 2025
cc28e14
Revert "add force refresh to the endpoints"
aubin-tchoi Mar 20, 2025
30f71ce
Revert "flip again (oops)"
aubin-tchoi Mar 20, 2025
2f54450
Revert "flip"
aubin-tchoi Mar 20, 2025
0a3e1cd
Revert "add missing force_refresh parameters"
aubin-tchoi Mar 20, 2025
fc9d6bb
Revert "force a refresh on table creation"
aubin-tchoi Mar 20, 2025
f4f5ba3
Revert "force a refresh on document creation"
aubin-tchoi Mar 20, 2025
0f08471
Revert "refactor: add an interface CoreAPIUpsertDataSourceFolderPayload"
aubin-tchoi Mar 20, 2025
bec635b
Revert "refactor: add an interface CoreAPIUpsertTablePayload"
aubin-tchoi Mar 20, 2025
fa06517
Revert "pass the force_refresh parameter in core_api.ts"
aubin-tchoi Mar 20, 2025
ebbedbe
Revert "allow forcing the refresh when indexing/deleting an ES document"
aubin-tchoi Mar 20, 2025
72e0aa5
reduce the refresh_interval from 30 s to 5 s in the ES index settings
aubin-tchoi Mar 20, 2025
3376fc7
add request body file
aubin-tchoi Mar 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"number_of_shards": 2,
"number_of_replicas": 1,
"refresh_interval": "30s",
"refresh_interval": "5s",
"analysis": {
"analyzer": {
"icu_analyzer": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"number_of_shards": 1,
"number_of_replicas": 0,
"refresh_interval": "30s",
"refresh_interval": "5s",
"analysis": {
"analyzer": {
"icu_analyzer": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"number_of_shards": 2,
"number_of_replicas": 1,
"refresh_interval": "30s",
"refresh_interval": "5s",
"analysis": {
"analyzer": {
"icu_analyzer": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
PUT core.data_sources_nodes_4/_settings
{
"index" : {
"refresh_interval" : "5s"
}
}
Loading