-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Tasks Get API; add async reindexing
This commit adds to PR #550 and changes a few things. First, the Reindex.Start method is renamed to DoAsync to reflect that Do starts the request. Reindex.DoAsync starts reindexing in the background and returns a task id, which can be watched via the Task Get API, which was also added in #550. Furthermore, it adds some tests and missing fields in the response types, and fixes a typo or two in the JSON structs. See #550
- Loading branch information
Showing
6 changed files
with
69 additions
and
30 deletions.
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
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
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,43 @@ | ||
// Copyright 2012-present Oliver Eilhard. All rights reserved. | ||
// Use of this source code is governed by a MIT-license. | ||
// See http://olivere.mit-license.org/license.txt for details. | ||
|
||
package elastic | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestTasksGetTaskBuildURL(t *testing.T) { | ||
client := setupTestClient(t) | ||
|
||
// Get specific task | ||
got, _, err := client.TasksGetTask().TaskId("123").buildURL() | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
want := "/_tasks/123" | ||
if got != want { | ||
t.Errorf("want %q; got %q", want, got) | ||
} | ||
} | ||
|
||
/* | ||
func TestTasksGetTask(t *testing.T) { | ||
client := setupTestClientAndCreateIndexAndAddDocs(t) | ||
esversion, err := client.ElasticsearchVersion(DefaultURL) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
if esversion < "2.3.0" { | ||
t.Skipf("Elasticsearch %v does not support Tasks Management API yet", esversion) | ||
} | ||
res, err := client.TasksGetTask().TaskId("123").Do(context.TODO()) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
if res == nil { | ||
t.Fatal("response is nil") | ||
} | ||
} | ||
*/ |
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